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 | } |
Dan Gohman | 5e5558b | 2009-04-23 22:50:03 +0000 | [diff] [blame] | 138 | // Interpret void as zero return values. |
| 139 | if (Ty == Type::VoidTy) |
| 140 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 141 | // Base case: we can get an MVT for this LLVM IR type. |
| 142 | ValueVTs.push_back(TLI.getValueType(Ty)); |
| 143 | if (Offsets) |
| 144 | Offsets->push_back(StartingOffset); |
| 145 | } |
| 146 | |
Dan Gohman | 2a7c671 | 2008-09-03 23:18:39 +0000 | [diff] [blame] | 147 | namespace llvm { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 148 | /// RegsForValue - This struct represents the registers (physical or virtual) |
| 149 | /// that a particular set of values is assigned, and the type information about |
| 150 | /// the value. The most common situation is to represent one value at a time, |
| 151 | /// but struct or array values are handled element-wise as multiple values. |
| 152 | /// The splitting of aggregates is performed recursively, so that we never |
| 153 | /// have aggregate-typed registers. The values at this point do not necessarily |
| 154 | /// have legal types, so each value may require one or more registers of some |
| 155 | /// legal type. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 156 | /// |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 157 | struct VISIBILITY_HIDDEN RegsForValue { |
| 158 | /// TLI - The TargetLowering object. |
| 159 | /// |
| 160 | const TargetLowering *TLI; |
| 161 | |
| 162 | /// ValueVTs - The value types of the values, which may not be legal, and |
| 163 | /// may need be promoted or synthesized from one or more registers. |
| 164 | /// |
| 165 | SmallVector<MVT, 4> ValueVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 166 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 167 | /// RegVTs - The value types of the registers. This is the same size as |
| 168 | /// ValueVTs and it records, for each value, what the type of the assigned |
| 169 | /// register or registers are. (Individual values are never synthesized |
| 170 | /// from more than one type of register.) |
| 171 | /// |
| 172 | /// With virtual registers, the contents of RegVTs is redundant with TLI's |
| 173 | /// getRegisterType member function, however when with physical registers |
| 174 | /// it is necessary to have a separate record of the types. |
| 175 | /// |
| 176 | SmallVector<MVT, 4> RegVTs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 177 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 178 | /// Regs - This list holds the registers assigned to the values. |
| 179 | /// Each legal or promoted value requires one register, and each |
| 180 | /// expanded value requires multiple registers. |
| 181 | /// |
| 182 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 183 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 184 | RegsForValue() : TLI(0) {} |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 185 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 186 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 187 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 188 | MVT regvt, MVT valuevt) |
| 189 | : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {} |
| 190 | RegsForValue(const TargetLowering &tli, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 191 | const SmallVector<unsigned, 4> ®s, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 192 | const SmallVector<MVT, 4> ®vts, |
| 193 | const SmallVector<MVT, 4> &valuevts) |
| 194 | : TLI(&tli), ValueVTs(valuevts), RegVTs(regvts), Regs(regs) {} |
| 195 | RegsForValue(const TargetLowering &tli, |
| 196 | unsigned Reg, const Type *Ty) : TLI(&tli) { |
| 197 | ComputeValueVTs(tli, Ty, ValueVTs); |
| 198 | |
| 199 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 200 | MVT ValueVT = ValueVTs[Value]; |
| 201 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 202 | MVT RegisterVT = TLI->getRegisterType(ValueVT); |
| 203 | for (unsigned i = 0; i != NumRegs; ++i) |
| 204 | Regs.push_back(Reg + i); |
| 205 | RegVTs.push_back(RegisterVT); |
| 206 | Reg += NumRegs; |
| 207 | } |
| 208 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 209 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 210 | /// append - Add the specified values to this one. |
| 211 | void append(const RegsForValue &RHS) { |
| 212 | TLI = RHS.TLI; |
| 213 | ValueVTs.append(RHS.ValueVTs.begin(), RHS.ValueVTs.end()); |
| 214 | RegVTs.append(RHS.RegVTs.begin(), RHS.RegVTs.end()); |
| 215 | Regs.append(RHS.Regs.begin(), RHS.Regs.end()); |
| 216 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 217 | |
| 218 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 219 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 220 | /// this value and returns the result as a ValueVTs value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 221 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 222 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 223 | SDValue getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 224 | SDValue &Chain, SDValue *Flag) const; |
| 225 | |
| 226 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 227 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 228 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 229 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 230 | void getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 231 | SDValue &Chain, SDValue *Flag) const; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 232 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 233 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 234 | /// operand list. This adds the code marker, matching input operand index |
| 235 | /// (if applicable), and includes the number of values added into it. |
| 236 | void AddInlineAsmOperands(unsigned Code, |
| 237 | bool HasMatching, unsigned MatchingIdx, |
| 238 | SelectionDAG &DAG, std::vector<SDValue> &Ops) const; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 239 | }; |
| 240 | } |
| 241 | |
| 242 | /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 243 | /// PHI nodes or outside of the basic block that defines it, or used by a |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 244 | /// switch or atomic instruction, which may expand to multiple basic blocks. |
| 245 | static bool isUsedOutsideOfDefiningBlock(Instruction *I) { |
| 246 | if (isa<PHINode>(I)) return true; |
| 247 | BasicBlock *BB = I->getParent(); |
| 248 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI) |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 249 | if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 250 | return true; |
| 251 | return false; |
| 252 | } |
| 253 | |
| 254 | /// isOnlyUsedInEntryBlock - If the specified argument is only used in the |
| 255 | /// entry block, return true. This includes arguments used by switches, since |
| 256 | /// the switch may expand into multiple basic blocks. |
| 257 | static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) { |
| 258 | // With FastISel active, we may be splitting blocks, so force creation |
| 259 | // of virtual registers for all non-dead arguments. |
Dan Gohman | 33134c4 | 2008-09-25 17:05:24 +0000 | [diff] [blame] | 260 | // Don't force virtual registers for byval arguments though, because |
| 261 | // fast-isel can't handle those in all cases. |
| 262 | if (EnableFastISel && !A->hasByValAttr()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 263 | return A->use_empty(); |
| 264 | |
| 265 | BasicBlock *Entry = A->getParent()->begin(); |
| 266 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) |
| 267 | if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI)) |
| 268 | return false; // Use not in entry block. |
| 269 | return true; |
| 270 | } |
| 271 | |
| 272 | FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli) |
| 273 | : TLI(tli) { |
| 274 | } |
| 275 | |
| 276 | void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf, |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 277 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 278 | bool EnableFastISel) { |
| 279 | Fn = &fn; |
| 280 | MF = &mf; |
| 281 | RegInfo = &MF->getRegInfo(); |
| 282 | |
| 283 | // Create a vreg for each argument register that is not dead and is used |
| 284 | // outside of the entry block for the function. |
| 285 | for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end(); |
| 286 | AI != E; ++AI) |
| 287 | if (!isOnlyUsedInEntryBlock(AI, EnableFastISel)) |
| 288 | InitializeRegForValue(AI); |
| 289 | |
| 290 | // Initialize the mapping of values to registers. This is only set up for |
| 291 | // instruction values that are used outside of the block that defines |
| 292 | // them. |
| 293 | Function::iterator BB = Fn->begin(), EB = Fn->end(); |
| 294 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 295 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 296 | if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { |
| 297 | const Type *Ty = AI->getAllocatedType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 298 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 299 | unsigned Align = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 300 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 301 | AI->getAlignment()); |
| 302 | |
| 303 | TySize *= CUI->getZExtValue(); // Get total allocated size. |
| 304 | if (TySize == 0) TySize = 1; // Don't create zero-sized stack objects. |
| 305 | StaticAllocaMap[AI] = |
| 306 | MF->getFrameInfo()->CreateStackObject(TySize, Align); |
| 307 | } |
| 308 | |
| 309 | for (; BB != EB; ++BB) |
| 310 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 311 | if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) |
| 312 | if (!isa<AllocaInst>(I) || |
| 313 | !StaticAllocaMap.count(cast<AllocaInst>(I))) |
| 314 | InitializeRegForValue(I); |
| 315 | |
| 316 | // Create an initial MachineBasicBlock for each LLVM BasicBlock in F. This |
| 317 | // also creates the initial PHI MachineInstrs, though none of the input |
| 318 | // operands are populated. |
| 319 | for (BB = Fn->begin(), EB = Fn->end(); BB != EB; ++BB) { |
| 320 | MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB); |
| 321 | MBBMap[BB] = MBB; |
| 322 | MF->push_back(MBB); |
| 323 | |
| 324 | // Create Machine PHI nodes for LLVM PHI nodes, lowering them as |
| 325 | // appropriate. |
| 326 | PHINode *PN; |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 327 | DebugLoc DL; |
| 328 | for (BasicBlock::iterator |
| 329 | I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 330 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 331 | if (Function *F = CI->getCalledFunction()) { |
| 332 | switch (F->getIntrinsicID()) { |
| 333 | default: break; |
| 334 | case Intrinsic::dbg_stoppoint: { |
| 335 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 336 | DbgStopPointInst *SPI = cast<DbgStopPointInst>(I); |
| 337 | |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 338 | if (DW && DW->ValidDebugInfo(SPI->getContext(), false)) { |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 339 | DICompileUnit CU(cast<GlobalVariable>(SPI->getContext())); |
Bill Wendling | 0582ae9 | 2009-03-13 04:39:26 +0000 | [diff] [blame] | 340 | std::string Dir, FN; |
| 341 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir), |
| 342 | CU.getFilename(FN)); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 343 | unsigned idx = MF->getOrCreateDebugLocID(SrcFile, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 344 | SPI->getLine(), |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 345 | SPI->getColumn()); |
| 346 | DL = DebugLoc::get(idx); |
| 347 | } |
| 348 | |
| 349 | break; |
| 350 | } |
| 351 | case Intrinsic::dbg_func_start: { |
| 352 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 353 | if (DW) { |
| 354 | DbgFuncStartInst *FSI = cast<DbgFuncStartInst>(I); |
| 355 | Value *SP = FSI->getSubprogram(); |
| 356 | |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 357 | if (DW->ValidDebugInfo(SP, false)) { |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 358 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 359 | DICompileUnit CU(Subprogram.getCompileUnit()); |
Bill Wendling | 0582ae9 | 2009-03-13 04:39:26 +0000 | [diff] [blame] | 360 | std::string Dir, FN; |
| 361 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir), |
| 362 | CU.getFilename(FN)); |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 363 | unsigned Line = Subprogram.getLineNumber(); |
| 364 | DL = DebugLoc::get(MF->getOrCreateDebugLocID(SrcFile, Line, 0)); |
| 365 | } |
| 366 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 367 | |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 368 | break; |
| 369 | } |
| 370 | } |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | PN = dyn_cast<PHINode>(I); |
| 375 | if (!PN || PN->use_empty()) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 376 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 377 | unsigned PHIReg = ValueMap[PN]; |
| 378 | assert(PHIReg && "PHI node does not have an assigned virtual register!"); |
| 379 | |
| 380 | SmallVector<MVT, 4> ValueVTs; |
| 381 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 382 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 383 | MVT VT = ValueVTs[vti]; |
| 384 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
Dan Gohman | 6448d91 | 2008-09-04 15:39:15 +0000 | [diff] [blame] | 385 | const TargetInstrInfo *TII = MF->getTarget().getInstrInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 386 | for (unsigned i = 0; i != NumRegisters; ++i) |
Bill Wendling | 6a8a0d7 | 2009-02-03 02:20:52 +0000 | [diff] [blame] | 387 | BuildMI(MBB, DL, TII->get(TargetInstrInfo::PHI), PHIReg + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 388 | PHIReg += NumRegisters; |
| 389 | } |
| 390 | } |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | unsigned FunctionLoweringInfo::MakeReg(MVT VT) { |
| 395 | return RegInfo->createVirtualRegister(TLI.getRegClassFor(VT)); |
| 396 | } |
| 397 | |
| 398 | /// CreateRegForValue - Allocate the appropriate number of virtual registers of |
| 399 | /// the correctly promoted or expanded types. Assign these registers |
| 400 | /// consecutive vreg numbers and return the first assigned number. |
| 401 | /// |
| 402 | /// In the case that the given value has struct or array type, this function |
| 403 | /// will assign registers for each member or element. |
| 404 | /// |
| 405 | unsigned FunctionLoweringInfo::CreateRegForValue(const Value *V) { |
| 406 | SmallVector<MVT, 4> ValueVTs; |
| 407 | ComputeValueVTs(TLI, V->getType(), ValueVTs); |
| 408 | |
| 409 | unsigned FirstReg = 0; |
| 410 | for (unsigned Value = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 411 | MVT ValueVT = ValueVTs[Value]; |
| 412 | MVT RegisterVT = TLI.getRegisterType(ValueVT); |
| 413 | |
| 414 | unsigned NumRegs = TLI.getNumRegisters(ValueVT); |
| 415 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 416 | unsigned R = MakeReg(RegisterVT); |
| 417 | if (!FirstReg) FirstReg = R; |
| 418 | } |
| 419 | } |
| 420 | return FirstReg; |
| 421 | } |
| 422 | |
| 423 | /// getCopyFromParts - Create a value that contains the specified legal parts |
| 424 | /// combined into the value they represent. If the parts combine to a type |
| 425 | /// larger then ValueVT then AssertOp can be used to specify whether the extra |
| 426 | /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT |
| 427 | /// (ISD::AssertSext). |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 428 | static SDValue getCopyFromParts(SelectionDAG &DAG, DebugLoc dl, |
| 429 | const SDValue *Parts, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 430 | unsigned NumParts, MVT PartVT, MVT ValueVT, |
| 431 | ISD::NodeType AssertOp = ISD::DELETED_NODE) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 432 | assert(NumParts > 0 && "No parts to assemble!"); |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 433 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 434 | SDValue Val = Parts[0]; |
| 435 | |
| 436 | if (NumParts > 1) { |
| 437 | // Assemble the value from multiple parts. |
| 438 | if (!ValueVT.isVector()) { |
| 439 | unsigned PartBits = PartVT.getSizeInBits(); |
| 440 | unsigned ValueBits = ValueVT.getSizeInBits(); |
| 441 | |
| 442 | // Assemble the power of 2 part. |
| 443 | unsigned RoundParts = NumParts & (NumParts - 1) ? |
| 444 | 1 << Log2_32(NumParts) : NumParts; |
| 445 | unsigned RoundBits = PartBits * RoundParts; |
| 446 | MVT RoundVT = RoundBits == ValueBits ? |
| 447 | ValueVT : MVT::getIntegerVT(RoundBits); |
| 448 | SDValue Lo, Hi; |
| 449 | |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 450 | MVT HalfVT = ValueVT.isInteger() ? |
| 451 | MVT::getIntegerVT(RoundBits/2) : |
| 452 | MVT::getFloatingPointVT(RoundBits/2); |
| 453 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 454 | if (RoundParts > 2) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 455 | Lo = getCopyFromParts(DAG, dl, Parts, RoundParts/2, PartVT, HalfVT); |
| 456 | Hi = getCopyFromParts(DAG, dl, Parts+RoundParts/2, RoundParts/2, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 457 | PartVT, HalfVT); |
| 458 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 459 | Lo = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[0]); |
| 460 | Hi = DAG.getNode(ISD::BIT_CONVERT, dl, HalfVT, Parts[1]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 461 | } |
| 462 | if (TLI.isBigEndian()) |
| 463 | std::swap(Lo, Hi); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 464 | Val = DAG.getNode(ISD::BUILD_PAIR, dl, RoundVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 465 | |
| 466 | if (RoundParts < NumParts) { |
| 467 | // Assemble the trailing non-power-of-2 part. |
| 468 | unsigned OddParts = NumParts - RoundParts; |
| 469 | MVT OddVT = MVT::getIntegerVT(OddParts * PartBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 470 | Hi = getCopyFromParts(DAG, dl, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 471 | Parts+RoundParts, OddParts, PartVT, OddVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 472 | |
| 473 | // Combine the round and odd parts. |
| 474 | Lo = Val; |
| 475 | if (TLI.isBigEndian()) |
| 476 | std::swap(Lo, Hi); |
| 477 | MVT TotalVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 478 | Hi = DAG.getNode(ISD::ANY_EXTEND, dl, TotalVT, Hi); |
| 479 | Hi = DAG.getNode(ISD::SHL, dl, TotalVT, Hi, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 480 | DAG.getConstant(Lo.getValueType().getSizeInBits(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 481 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 482 | Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, TotalVT, Lo); |
| 483 | Val = DAG.getNode(ISD::OR, dl, TotalVT, Lo, Hi); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 484 | } |
| 485 | } else { |
| 486 | // Handle a multi-element vector. |
| 487 | MVT IntermediateVT, RegisterVT; |
| 488 | unsigned NumIntermediates; |
| 489 | unsigned NumRegs = |
| 490 | TLI.getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 491 | RegisterVT); |
| 492 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 493 | NumParts = NumRegs; // Silence a compiler warning. |
| 494 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 495 | assert(RegisterVT == Parts[0].getValueType() && |
| 496 | "Part type doesn't match part!"); |
| 497 | |
| 498 | // Assemble the parts into intermediate operands. |
| 499 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 500 | if (NumIntermediates == NumParts) { |
| 501 | // If the register was not expanded, truncate or copy the value, |
| 502 | // as appropriate. |
| 503 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 504 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i], 1, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 505 | PartVT, IntermediateVT); |
| 506 | } else if (NumParts > 0) { |
| 507 | // If the intermediate type was expanded, build the intermediate operands |
| 508 | // from the parts. |
| 509 | assert(NumParts % NumIntermediates == 0 && |
| 510 | "Must expand into a divisible number of parts!"); |
| 511 | unsigned Factor = NumParts / NumIntermediates; |
| 512 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 513 | Ops[i] = getCopyFromParts(DAG, dl, &Parts[i * Factor], Factor, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 514 | PartVT, IntermediateVT); |
| 515 | } |
| 516 | |
| 517 | // Build a vector with BUILD_VECTOR or CONCAT_VECTORS from the intermediate |
| 518 | // operands. |
| 519 | Val = DAG.getNode(IntermediateVT.isVector() ? |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 520 | ISD::CONCAT_VECTORS : ISD::BUILD_VECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 521 | ValueVT, &Ops[0], NumIntermediates); |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | // There is now one part, held in Val. Correct it to match ValueVT. |
| 526 | PartVT = Val.getValueType(); |
| 527 | |
| 528 | if (PartVT == ValueVT) |
| 529 | return Val; |
| 530 | |
| 531 | if (PartVT.isVector()) { |
| 532 | assert(ValueVT.isVector() && "Unknown vector conversion!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 533 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | if (ValueVT.isVector()) { |
| 537 | assert(ValueVT.getVectorElementType() == PartVT && |
| 538 | ValueVT.getVectorNumElements() == 1 && |
| 539 | "Only trivial scalar-to-vector conversions should get here!"); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 540 | return DAG.getNode(ISD::BUILD_VECTOR, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | if (PartVT.isInteger() && |
| 544 | ValueVT.isInteger()) { |
| 545 | if (ValueVT.bitsLT(PartVT)) { |
| 546 | // For a truncate, see if we have any information to |
| 547 | // indicate whether the truncated bits will always be |
| 548 | // zero or sign-extension. |
| 549 | if (AssertOp != ISD::DELETED_NODE) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 550 | Val = DAG.getNode(AssertOp, dl, PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 551 | DAG.getValueType(ValueVT)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 552 | return DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 553 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 554 | return DAG.getNode(ISD::ANY_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 555 | } |
| 556 | } |
| 557 | |
| 558 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 559 | if (ValueVT.bitsLT(Val.getValueType())) |
| 560 | // FP_ROUND's are always exact here. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 561 | return DAG.getNode(ISD::FP_ROUND, dl, ValueVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 562 | DAG.getIntPtrConstant(1)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 563 | return DAG.getNode(ISD::FP_EXTEND, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | if (PartVT.getSizeInBits() == ValueVT.getSizeInBits()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 567 | return DAG.getNode(ISD::BIT_CONVERT, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 568 | |
| 569 | assert(0 && "Unknown mismatch!"); |
| 570 | return SDValue(); |
| 571 | } |
| 572 | |
| 573 | /// getCopyToParts - Create a series of nodes that contain the specified value |
| 574 | /// split into legal parts. If the parts contain more bits than Val, then, for |
| 575 | /// 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] | 576 | static void getCopyToParts(SelectionDAG &DAG, DebugLoc dl, SDValue Val, |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 577 | SDValue *Parts, unsigned NumParts, MVT PartVT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 578 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND) { |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 579 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 580 | MVT PtrVT = TLI.getPointerTy(); |
| 581 | MVT ValueVT = Val.getValueType(); |
| 582 | unsigned PartBits = PartVT.getSizeInBits(); |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 583 | unsigned OrigNumParts = NumParts; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 584 | assert(TLI.isTypeLegal(PartVT) && "Copying to an illegal type!"); |
| 585 | |
| 586 | if (!NumParts) |
| 587 | return; |
| 588 | |
| 589 | if (!ValueVT.isVector()) { |
| 590 | if (PartVT == ValueVT) { |
| 591 | assert(NumParts == 1 && "No-op copy with multiple parts!"); |
| 592 | Parts[0] = Val; |
| 593 | return; |
| 594 | } |
| 595 | |
| 596 | if (NumParts * PartBits > ValueVT.getSizeInBits()) { |
| 597 | // If the parts cover more bits than the value has, promote the value. |
| 598 | if (PartVT.isFloatingPoint() && ValueVT.isFloatingPoint()) { |
| 599 | assert(NumParts == 1 && "Do not know what to promote to!"); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 600 | Val = DAG.getNode(ISD::FP_EXTEND, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 601 | } else if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 602 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 603 | Val = DAG.getNode(ExtendKind, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 604 | } else { |
| 605 | assert(0 && "Unknown mismatch!"); |
| 606 | } |
| 607 | } else if (PartBits == ValueVT.getSizeInBits()) { |
| 608 | // Different types of the same size. |
| 609 | assert(NumParts == 1 && PartVT != ValueVT); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 610 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 611 | } else if (NumParts * PartBits < ValueVT.getSizeInBits()) { |
| 612 | // If the parts cover less bits than value has, truncate the value. |
| 613 | if (PartVT.isInteger() && ValueVT.isInteger()) { |
| 614 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 615 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 616 | } else { |
| 617 | assert(0 && "Unknown mismatch!"); |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | // The value may have changed - recompute ValueVT. |
| 622 | ValueVT = Val.getValueType(); |
| 623 | assert(NumParts * PartBits == ValueVT.getSizeInBits() && |
| 624 | "Failed to tile the value with PartVT!"); |
| 625 | |
| 626 | if (NumParts == 1) { |
| 627 | assert(PartVT == ValueVT && "Type conversion failed!"); |
| 628 | Parts[0] = Val; |
| 629 | return; |
| 630 | } |
| 631 | |
| 632 | // Expand the value into multiple parts. |
| 633 | if (NumParts & (NumParts - 1)) { |
| 634 | // The number of parts is not a power of 2. Split off and copy the tail. |
| 635 | assert(PartVT.isInteger() && ValueVT.isInteger() && |
| 636 | "Do not know what to expand to!"); |
| 637 | unsigned RoundParts = 1 << Log2_32(NumParts); |
| 638 | unsigned RoundBits = RoundParts * PartBits; |
| 639 | unsigned OddParts = NumParts - RoundParts; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 640 | SDValue OddVal = DAG.getNode(ISD::SRL, dl, ValueVT, Val, |
Duncan Sands | 0b3aa26 | 2009-01-28 14:42:54 +0000 | [diff] [blame] | 641 | DAG.getConstant(RoundBits, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 642 | TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 643 | getCopyToParts(DAG, dl, OddVal, Parts + RoundParts, OddParts, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 644 | if (TLI.isBigEndian()) |
| 645 | // The odd parts were reversed by getCopyToParts - unreverse them. |
| 646 | std::reverse(Parts + RoundParts, Parts + NumParts); |
| 647 | NumParts = RoundParts; |
| 648 | ValueVT = MVT::getIntegerVT(NumParts * PartBits); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 649 | Val = DAG.getNode(ISD::TRUNCATE, dl, ValueVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 650 | } |
| 651 | |
| 652 | // The number of parts is a power of 2. Repeatedly bisect the value using |
| 653 | // EXTRACT_ELEMENT. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 654 | Parts[0] = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 655 | MVT::getIntegerVT(ValueVT.getSizeInBits()), |
| 656 | Val); |
| 657 | for (unsigned StepSize = NumParts; StepSize > 1; StepSize /= 2) { |
| 658 | for (unsigned i = 0; i < NumParts; i += StepSize) { |
| 659 | unsigned ThisBits = StepSize * PartBits / 2; |
| 660 | MVT ThisVT = MVT::getIntegerVT (ThisBits); |
| 661 | SDValue &Part0 = Parts[i]; |
| 662 | SDValue &Part1 = Parts[i+StepSize/2]; |
| 663 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 664 | Part1 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 665 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 666 | DAG.getConstant(1, PtrVT)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 667 | Part0 = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 668 | ThisVT, Part0, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 669 | DAG.getConstant(0, PtrVT)); |
| 670 | |
| 671 | if (ThisBits == PartBits && ThisVT != PartVT) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 672 | Part0 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 673 | PartVT, Part0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 674 | Part1 = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 675 | PartVT, Part1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 676 | } |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | if (TLI.isBigEndian()) |
Dale Johannesen | 8a36f50 | 2009-02-25 22:39:13 +0000 | [diff] [blame] | 681 | std::reverse(Parts, Parts + OrigNumParts); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 682 | |
| 683 | return; |
| 684 | } |
| 685 | |
| 686 | // Vector ValueVT. |
| 687 | if (NumParts == 1) { |
| 688 | if (PartVT != ValueVT) { |
| 689 | if (PartVT.isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 690 | Val = DAG.getNode(ISD::BIT_CONVERT, dl, PartVT, Val); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 691 | } else { |
| 692 | assert(ValueVT.getVectorElementType() == PartVT && |
| 693 | ValueVT.getVectorNumElements() == 1 && |
| 694 | "Only trivial vector-to-scalar conversions should get here!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 695 | Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 696 | PartVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 697 | DAG.getConstant(0, PtrVT)); |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | Parts[0] = Val; |
| 702 | return; |
| 703 | } |
| 704 | |
| 705 | // Handle a multi-element vector. |
| 706 | MVT IntermediateVT, RegisterVT; |
| 707 | unsigned NumIntermediates; |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 708 | unsigned NumRegs = TLI |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 709 | .getVectorTypeBreakdown(ValueVT, IntermediateVT, NumIntermediates, |
| 710 | RegisterVT); |
| 711 | unsigned NumElements = ValueVT.getVectorNumElements(); |
| 712 | |
| 713 | assert(NumRegs == NumParts && "Part count doesn't match vector breakdown!"); |
| 714 | NumParts = NumRegs; // Silence a compiler warning. |
| 715 | assert(RegisterVT == PartVT && "Part type doesn't match vector breakdown!"); |
| 716 | |
| 717 | // Split the vector into intermediate operands. |
| 718 | SmallVector<SDValue, 8> Ops(NumIntermediates); |
| 719 | for (unsigned i = 0; i != NumIntermediates; ++i) |
| 720 | if (IntermediateVT.isVector()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 721 | Ops[i] = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 722 | IntermediateVT, Val, |
| 723 | DAG.getConstant(i * (NumElements / NumIntermediates), |
| 724 | PtrVT)); |
| 725 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 726 | Ops[i] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 727 | IntermediateVT, Val, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 728 | DAG.getConstant(i, PtrVT)); |
| 729 | |
| 730 | // Split the intermediate operands into legal parts. |
| 731 | if (NumParts == NumIntermediates) { |
| 732 | // If the register was not expanded, promote or copy the value, |
| 733 | // as appropriate. |
| 734 | for (unsigned i = 0; i != NumParts; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 735 | getCopyToParts(DAG, dl, Ops[i], &Parts[i], 1, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 736 | } else if (NumParts > 0) { |
| 737 | // If the intermediate type was expanded, split each the value into |
| 738 | // legal parts. |
| 739 | assert(NumParts % NumIntermediates == 0 && |
| 740 | "Must expand into a divisible number of parts!"); |
| 741 | unsigned Factor = NumParts / NumIntermediates; |
| 742 | for (unsigned i = 0; i != NumIntermediates; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 743 | getCopyToParts(DAG, dl, Ops[i], &Parts[i * Factor], Factor, PartVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 744 | } |
| 745 | } |
| 746 | |
| 747 | |
| 748 | void SelectionDAGLowering::init(GCFunctionInfo *gfi, AliasAnalysis &aa) { |
| 749 | AA = &aa; |
| 750 | GFI = gfi; |
| 751 | TD = DAG.getTarget().getTargetData(); |
| 752 | } |
| 753 | |
| 754 | /// clear - Clear out the curret SelectionDAG and the associated |
| 755 | /// state and prepare this SelectionDAGLowering object to be used |
| 756 | /// for a new block. This doesn't clear out information about |
| 757 | /// additional blocks that are needed to complete switch lowering |
| 758 | /// or PHI node updating; that information is cleared out as it is |
| 759 | /// consumed. |
| 760 | void SelectionDAGLowering::clear() { |
| 761 | NodeMap.clear(); |
| 762 | PendingLoads.clear(); |
| 763 | PendingExports.clear(); |
| 764 | DAG.clear(); |
Bill Wendling | 8fcf170 | 2009-02-06 21:36:23 +0000 | [diff] [blame] | 765 | CurDebugLoc = DebugLoc::getUnknownLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 766 | } |
| 767 | |
| 768 | /// getRoot - Return the current virtual root of the Selection DAG, |
| 769 | /// flushing any PendingLoad items. This must be done before emitting |
| 770 | /// a store or any other node that may need to be ordered after any |
| 771 | /// prior load instructions. |
| 772 | /// |
| 773 | SDValue SelectionDAGLowering::getRoot() { |
| 774 | if (PendingLoads.empty()) |
| 775 | return DAG.getRoot(); |
| 776 | |
| 777 | if (PendingLoads.size() == 1) { |
| 778 | SDValue Root = PendingLoads[0]; |
| 779 | DAG.setRoot(Root); |
| 780 | PendingLoads.clear(); |
| 781 | return Root; |
| 782 | } |
| 783 | |
| 784 | // Otherwise, we have to make a token factor node. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 785 | SDValue Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 786 | &PendingLoads[0], PendingLoads.size()); |
| 787 | PendingLoads.clear(); |
| 788 | DAG.setRoot(Root); |
| 789 | return Root; |
| 790 | } |
| 791 | |
| 792 | /// getControlRoot - Similar to getRoot, but instead of flushing all the |
| 793 | /// PendingLoad items, flush all the PendingExports items. It is necessary |
| 794 | /// to do this before emitting a terminator instruction. |
| 795 | /// |
| 796 | SDValue SelectionDAGLowering::getControlRoot() { |
| 797 | SDValue Root = DAG.getRoot(); |
| 798 | |
| 799 | if (PendingExports.empty()) |
| 800 | return Root; |
| 801 | |
| 802 | // Turn all of the CopyToReg chains into one factored node. |
| 803 | if (Root.getOpcode() != ISD::EntryToken) { |
| 804 | unsigned i = 0, e = PendingExports.size(); |
| 805 | for (; i != e; ++i) { |
| 806 | assert(PendingExports[i].getNode()->getNumOperands() > 1); |
| 807 | if (PendingExports[i].getNode()->getOperand(0) == Root) |
| 808 | break; // Don't add the root if we already indirectly depend on it. |
| 809 | } |
| 810 | |
| 811 | if (i == e) |
| 812 | PendingExports.push_back(Root); |
| 813 | } |
| 814 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 815 | Root = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 816 | &PendingExports[0], |
| 817 | PendingExports.size()); |
| 818 | PendingExports.clear(); |
| 819 | DAG.setRoot(Root); |
| 820 | return Root; |
| 821 | } |
| 822 | |
| 823 | void SelectionDAGLowering::visit(Instruction &I) { |
| 824 | visit(I.getOpcode(), I); |
| 825 | } |
| 826 | |
| 827 | void SelectionDAGLowering::visit(unsigned Opcode, User &I) { |
| 828 | // Note: this doesn't use InstVisitor, because it has to work with |
| 829 | // ConstantExpr's in addition to instructions. |
| 830 | switch (Opcode) { |
| 831 | default: assert(0 && "Unknown instruction type encountered!"); |
| 832 | abort(); |
| 833 | // Build the switch statement using the Instruction.def file. |
| 834 | #define HANDLE_INST(NUM, OPCODE, CLASS) \ |
| 835 | case Instruction::OPCODE:return visit##OPCODE((CLASS&)I); |
| 836 | #include "llvm/Instruction.def" |
| 837 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 838 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 839 | |
| 840 | void SelectionDAGLowering::visitAdd(User &I) { |
| 841 | if (I.getType()->isFPOrFPVector()) |
| 842 | visitBinary(I, ISD::FADD); |
| 843 | else |
| 844 | visitBinary(I, ISD::ADD); |
| 845 | } |
| 846 | |
| 847 | void SelectionDAGLowering::visitMul(User &I) { |
| 848 | if (I.getType()->isFPOrFPVector()) |
| 849 | visitBinary(I, ISD::FMUL); |
| 850 | else |
| 851 | visitBinary(I, ISD::MUL); |
| 852 | } |
| 853 | |
| 854 | SDValue SelectionDAGLowering::getValue(const Value *V) { |
| 855 | SDValue &N = NodeMap[V]; |
| 856 | if (N.getNode()) return N; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 857 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 858 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(V))) { |
| 859 | MVT VT = TLI.getValueType(V->getType(), true); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 860 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 861 | if (ConstantInt *CI = dyn_cast<ConstantInt>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 862 | return N = DAG.getConstant(*CI, VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 863 | |
| 864 | if (GlobalValue *GV = dyn_cast<GlobalValue>(C)) |
| 865 | return N = DAG.getGlobalAddress(GV, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 866 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 867 | if (isa<ConstantPointerNull>(C)) |
| 868 | return N = DAG.getConstant(0, TLI.getPointerTy()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 869 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 870 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 871 | return N = DAG.getConstantFP(*CFP, VT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 872 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 873 | if (isa<UndefValue>(C) && !V->getType()->isAggregateType()) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 874 | return N = DAG.getUNDEF(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 875 | |
| 876 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) { |
| 877 | visit(CE->getOpcode(), *CE); |
| 878 | SDValue N1 = NodeMap[V]; |
| 879 | assert(N1.getNode() && "visit didn't populate the ValueMap!"); |
| 880 | return N1; |
| 881 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 882 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 883 | if (isa<ConstantStruct>(C) || isa<ConstantArray>(C)) { |
| 884 | SmallVector<SDValue, 4> Constants; |
| 885 | for (User::const_op_iterator OI = C->op_begin(), OE = C->op_end(); |
| 886 | OI != OE; ++OI) { |
| 887 | SDNode *Val = getValue(*OI).getNode(); |
| 888 | for (unsigned i = 0, e = Val->getNumValues(); i != e; ++i) |
| 889 | Constants.push_back(SDValue(Val, i)); |
| 890 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 891 | return DAG.getMergeValues(&Constants[0], Constants.size(), |
| 892 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 893 | } |
| 894 | |
| 895 | if (isa<StructType>(C->getType()) || isa<ArrayType>(C->getType())) { |
| 896 | assert((isa<ConstantAggregateZero>(C) || isa<UndefValue>(C)) && |
| 897 | "Unknown struct or array constant!"); |
| 898 | |
| 899 | SmallVector<MVT, 4> ValueVTs; |
| 900 | ComputeValueVTs(TLI, C->getType(), ValueVTs); |
| 901 | unsigned NumElts = ValueVTs.size(); |
| 902 | if (NumElts == 0) |
| 903 | return SDValue(); // empty struct |
| 904 | SmallVector<SDValue, 4> Constants(NumElts); |
| 905 | for (unsigned i = 0; i != NumElts; ++i) { |
| 906 | MVT EltVT = ValueVTs[i]; |
| 907 | if (isa<UndefValue>(C)) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 908 | Constants[i] = DAG.getUNDEF(EltVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 909 | else if (EltVT.isFloatingPoint()) |
| 910 | Constants[i] = DAG.getConstantFP(0, EltVT); |
| 911 | else |
| 912 | Constants[i] = DAG.getConstant(0, EltVT); |
| 913 | } |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 914 | return DAG.getMergeValues(&Constants[0], NumElts, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | const VectorType *VecTy = cast<VectorType>(V->getType()); |
| 918 | unsigned NumElements = VecTy->getNumElements(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 919 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 920 | // Now that we know the number and type of the elements, get that number of |
| 921 | // elements into the Ops array based on what kind of constant it is. |
| 922 | SmallVector<SDValue, 16> Ops; |
| 923 | if (ConstantVector *CP = dyn_cast<ConstantVector>(C)) { |
| 924 | for (unsigned i = 0; i != NumElements; ++i) |
| 925 | Ops.push_back(getValue(CP->getOperand(i))); |
| 926 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 927 | assert(isa<ConstantAggregateZero>(C) && "Unknown vector constant!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 928 | MVT EltVT = TLI.getValueType(VecTy->getElementType()); |
| 929 | |
| 930 | SDValue Op; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 931 | if (EltVT.isFloatingPoint()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 980 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 981 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 982 | const Function *F = I.getParent()->getParent(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 983 | if (F->paramHasAttr(0, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 984 | ExtendKind = ISD::SIGN_EXTEND; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 985 | else if (F->paramHasAttr(0, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 986 | ExtendKind = ISD::ZERO_EXTEND; |
| 987 | |
Evan Cheng | 3927f43 | 2009-03-25 20:20:11 +0000 | [diff] [blame] | 988 | // FIXME: C calling convention requires the return type to be promoted to |
| 989 | // at least 32-bit. But this is not necessary for non-C calling |
| 990 | // conventions. The frontend should mark functions whose return values |
| 991 | // require promoting with signext or zeroext attributes. |
| 992 | if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) { |
| 993 | MVT MinVT = TLI.getRegisterType(MVT::i32); |
| 994 | if (VT.bitsLT(MinVT)) |
| 995 | VT = MinVT; |
| 996 | } |
| 997 | |
| 998 | unsigned NumParts = TLI.getNumRegisters(VT); |
| 999 | MVT PartVT = TLI.getRegisterType(VT); |
| 1000 | SmallVector<SDValue, 4> Parts(NumParts); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1001 | getCopyToParts(DAG, getCurDebugLoc(), |
| 1002 | SDValue(RetOp.getNode(), RetOp.getResNo() + j), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1003 | &Parts[0], NumParts, PartVT, ExtendKind); |
| 1004 | |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1005 | // 'inreg' on function refers to return value |
| 1006 | ISD::ArgFlagsTy Flags = ISD::ArgFlagsTy(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 1007 | if (F->paramHasAttr(0, Attribute::InReg)) |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1008 | Flags.setInReg(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1009 | for (unsigned i = 0; i < NumParts; ++i) { |
| 1010 | NewValues.push_back(Parts[i]); |
Dale Johannesen | c9c6da6 | 2008-09-25 20:47:45 +0000 | [diff] [blame] | 1011 | NewValues.push_back(DAG.getArgFlags(Flags)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1012 | } |
| 1013 | } |
| 1014 | } |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1015 | DAG.setRoot(DAG.getNode(ISD::RET, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1016 | &NewValues[0], NewValues.size())); |
| 1017 | } |
| 1018 | |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1019 | /// CopyToExportRegsIfNeeded - If the given value has virtual registers |
| 1020 | /// created for it, emit nodes to copy the value into the virtual |
| 1021 | /// registers. |
| 1022 | void SelectionDAGLowering::CopyToExportRegsIfNeeded(Value *V) { |
| 1023 | if (!V->use_empty()) { |
| 1024 | DenseMap<const Value *, unsigned>::iterator VMI = FuncInfo.ValueMap.find(V); |
| 1025 | if (VMI != FuncInfo.ValueMap.end()) |
| 1026 | CopyValueToVirtualRegister(V, VMI->second); |
| 1027 | } |
| 1028 | } |
| 1029 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1030 | /// ExportFromCurrentBlock - If this condition isn't known to be exported from |
| 1031 | /// the current basic block, add it to ValueMap now so that we'll get a |
| 1032 | /// CopyTo/FromReg. |
| 1033 | void SelectionDAGLowering::ExportFromCurrentBlock(Value *V) { |
| 1034 | // No need to export constants. |
| 1035 | if (!isa<Instruction>(V) && !isa<Argument>(V)) return; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1036 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1037 | // Already exported? |
| 1038 | if (FuncInfo.isExportedInst(V)) return; |
| 1039 | |
| 1040 | unsigned Reg = FuncInfo.InitializeRegForValue(V); |
| 1041 | CopyValueToVirtualRegister(V, Reg); |
| 1042 | } |
| 1043 | |
| 1044 | bool SelectionDAGLowering::isExportableFromCurrentBlock(Value *V, |
| 1045 | const BasicBlock *FromBB) { |
| 1046 | // The operands of the setcc have to be in this block. We don't know |
| 1047 | // how to export them from some other block. |
| 1048 | if (Instruction *VI = dyn_cast<Instruction>(V)) { |
| 1049 | // Can export from current BB. |
| 1050 | if (VI->getParent() == FromBB) |
| 1051 | return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1052 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1053 | // Is already exported, noop. |
| 1054 | return FuncInfo.isExportedInst(V); |
| 1055 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1056 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1057 | // If this is an argument, we can export it if the BB is the entry block or |
| 1058 | // if it is already exported. |
| 1059 | if (isa<Argument>(V)) { |
| 1060 | if (FromBB == &FromBB->getParent()->getEntryBlock()) |
| 1061 | return true; |
| 1062 | |
| 1063 | // Otherwise, can only export this if it is already exported. |
| 1064 | return FuncInfo.isExportedInst(V); |
| 1065 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1066 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1067 | // Otherwise, constants can always be exported. |
| 1068 | return true; |
| 1069 | } |
| 1070 | |
| 1071 | static bool InBlock(const Value *V, const BasicBlock *BB) { |
| 1072 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 1073 | return I->getParent() == BB; |
| 1074 | return true; |
| 1075 | } |
| 1076 | |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1077 | /// getFCmpCondCode - Return the ISD condition code corresponding to |
| 1078 | /// the given LLVM IR floating-point condition code. This includes |
| 1079 | /// consideration of global floating-point math flags. |
| 1080 | /// |
| 1081 | static ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred) { |
| 1082 | ISD::CondCode FPC, FOC; |
| 1083 | switch (Pred) { |
| 1084 | case FCmpInst::FCMP_FALSE: FOC = FPC = ISD::SETFALSE; break; |
| 1085 | case FCmpInst::FCMP_OEQ: FOC = ISD::SETEQ; FPC = ISD::SETOEQ; break; |
| 1086 | case FCmpInst::FCMP_OGT: FOC = ISD::SETGT; FPC = ISD::SETOGT; break; |
| 1087 | case FCmpInst::FCMP_OGE: FOC = ISD::SETGE; FPC = ISD::SETOGE; break; |
| 1088 | case FCmpInst::FCMP_OLT: FOC = ISD::SETLT; FPC = ISD::SETOLT; break; |
| 1089 | case FCmpInst::FCMP_OLE: FOC = ISD::SETLE; FPC = ISD::SETOLE; break; |
| 1090 | case FCmpInst::FCMP_ONE: FOC = ISD::SETNE; FPC = ISD::SETONE; break; |
| 1091 | case FCmpInst::FCMP_ORD: FOC = FPC = ISD::SETO; break; |
| 1092 | case FCmpInst::FCMP_UNO: FOC = FPC = ISD::SETUO; break; |
| 1093 | case FCmpInst::FCMP_UEQ: FOC = ISD::SETEQ; FPC = ISD::SETUEQ; break; |
| 1094 | case FCmpInst::FCMP_UGT: FOC = ISD::SETGT; FPC = ISD::SETUGT; break; |
| 1095 | case FCmpInst::FCMP_UGE: FOC = ISD::SETGE; FPC = ISD::SETUGE; break; |
| 1096 | case FCmpInst::FCMP_ULT: FOC = ISD::SETLT; FPC = ISD::SETULT; break; |
| 1097 | case FCmpInst::FCMP_ULE: FOC = ISD::SETLE; FPC = ISD::SETULE; break; |
| 1098 | case FCmpInst::FCMP_UNE: FOC = ISD::SETNE; FPC = ISD::SETUNE; break; |
| 1099 | case FCmpInst::FCMP_TRUE: FOC = FPC = ISD::SETTRUE; break; |
| 1100 | default: |
| 1101 | assert(0 && "Invalid FCmp predicate opcode!"); |
| 1102 | FOC = FPC = ISD::SETFALSE; |
| 1103 | break; |
| 1104 | } |
| 1105 | if (FiniteOnlyFPMath()) |
| 1106 | return FOC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1107 | else |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1108 | return FPC; |
| 1109 | } |
| 1110 | |
| 1111 | /// getICmpCondCode - Return the ISD condition code corresponding to |
| 1112 | /// the given LLVM IR integer condition code. |
| 1113 | /// |
| 1114 | static ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred) { |
| 1115 | switch (Pred) { |
| 1116 | case ICmpInst::ICMP_EQ: return ISD::SETEQ; |
| 1117 | case ICmpInst::ICMP_NE: return ISD::SETNE; |
| 1118 | case ICmpInst::ICMP_SLE: return ISD::SETLE; |
| 1119 | case ICmpInst::ICMP_ULE: return ISD::SETULE; |
| 1120 | case ICmpInst::ICMP_SGE: return ISD::SETGE; |
| 1121 | case ICmpInst::ICMP_UGE: return ISD::SETUGE; |
| 1122 | case ICmpInst::ICMP_SLT: return ISD::SETLT; |
| 1123 | case ICmpInst::ICMP_ULT: return ISD::SETULT; |
| 1124 | case ICmpInst::ICMP_SGT: return ISD::SETGT; |
| 1125 | case ICmpInst::ICMP_UGT: return ISD::SETUGT; |
| 1126 | default: |
| 1127 | assert(0 && "Invalid ICmp predicate opcode!"); |
| 1128 | return ISD::SETNE; |
| 1129 | } |
| 1130 | } |
| 1131 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1132 | /// EmitBranchForMergedCondition - Helper method for FindMergedConditions. |
| 1133 | /// This function emits a branch and is used at the leaves of an OR or an |
| 1134 | /// AND operator tree. |
| 1135 | /// |
| 1136 | void |
| 1137 | SelectionDAGLowering::EmitBranchForMergedCondition(Value *Cond, |
| 1138 | MachineBasicBlock *TBB, |
| 1139 | MachineBasicBlock *FBB, |
| 1140 | MachineBasicBlock *CurBB) { |
| 1141 | const BasicBlock *BB = CurBB->getBasicBlock(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1142 | |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1143 | // If the leaf of the tree is a comparison, merge the condition into |
| 1144 | // the caseblock. |
| 1145 | if (CmpInst *BOp = dyn_cast<CmpInst>(Cond)) { |
| 1146 | // The operands of the cmp have to be in this block. We don't know |
| 1147 | // how to export them from some other block. If this is the first block |
| 1148 | // of the sequence, no exporting is needed. |
| 1149 | if (CurBB == CurMBB || |
| 1150 | (isExportableFromCurrentBlock(BOp->getOperand(0), BB) && |
| 1151 | isExportableFromCurrentBlock(BOp->getOperand(1), BB))) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1152 | ISD::CondCode Condition; |
| 1153 | if (ICmpInst *IC = dyn_cast<ICmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1154 | Condition = getICmpCondCode(IC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1155 | } else if (FCmpInst *FC = dyn_cast<FCmpInst>(Cond)) { |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 1156 | Condition = getFCmpCondCode(FC->getPredicate()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1157 | } else { |
| 1158 | Condition = ISD::SETEQ; // silence warning. |
| 1159 | assert(0 && "Unknown compare instruction"); |
| 1160 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1161 | |
| 1162 | CaseBlock CB(Condition, BOp->getOperand(0), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1163 | BOp->getOperand(1), NULL, TBB, FBB, CurBB); |
| 1164 | SwitchCases.push_back(CB); |
| 1165 | return; |
| 1166 | } |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1167 | } |
| 1168 | |
| 1169 | // Create a CaseBlock record representing this branch. |
| 1170 | CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(), |
| 1171 | NULL, TBB, FBB, CurBB); |
| 1172 | SwitchCases.push_back(CB); |
| 1173 | } |
| 1174 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1175 | /// FindMergedConditions - If Cond is an expression like |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1176 | void SelectionDAGLowering::FindMergedConditions(Value *Cond, |
| 1177 | MachineBasicBlock *TBB, |
| 1178 | MachineBasicBlock *FBB, |
| 1179 | MachineBasicBlock *CurBB, |
| 1180 | unsigned Opc) { |
| 1181 | // If this node is not part of the or/and tree, emit it as a branch. |
| 1182 | Instruction *BOp = dyn_cast<Instruction>(Cond); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1183 | if (!BOp || !(isa<BinaryOperator>(BOp) || isa<CmpInst>(BOp)) || |
Dan Gohman | c227734 | 2008-10-17 21:16:08 +0000 | [diff] [blame] | 1184 | (unsigned)BOp->getOpcode() != Opc || !BOp->hasOneUse() || |
| 1185 | BOp->getParent() != CurBB->getBasicBlock() || |
| 1186 | !InBlock(BOp->getOperand(0), CurBB->getBasicBlock()) || |
| 1187 | !InBlock(BOp->getOperand(1), CurBB->getBasicBlock())) { |
| 1188 | EmitBranchForMergedCondition(Cond, TBB, FBB, CurBB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1189 | return; |
| 1190 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1191 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1192 | // Create TmpBB after CurBB. |
| 1193 | MachineFunction::iterator BBI = CurBB; |
| 1194 | MachineFunction &MF = DAG.getMachineFunction(); |
| 1195 | MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); |
| 1196 | CurBB->getParent()->insert(++BBI, TmpBB); |
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 | if (Opc == Instruction::Or) { |
| 1199 | // Codegen X | Y as: |
| 1200 | // jmp_if_X TBB |
| 1201 | // jmp TmpBB |
| 1202 | // TmpBB: |
| 1203 | // jmp_if_Y TBB |
| 1204 | // jmp FBB |
| 1205 | // |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1206 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1207 | // Emit the LHS condition. |
| 1208 | FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, Opc); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1209 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1210 | // Emit the RHS condition into TmpBB. |
| 1211 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1212 | } else { |
| 1213 | assert(Opc == Instruction::And && "Unknown merge op!"); |
| 1214 | // Codegen X & Y as: |
| 1215 | // jmp_if_X TmpBB |
| 1216 | // jmp FBB |
| 1217 | // TmpBB: |
| 1218 | // jmp_if_Y TBB |
| 1219 | // jmp FBB |
| 1220 | // |
| 1221 | // This requires creation of TmpBB after CurBB. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1222 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1223 | // Emit the LHS condition. |
| 1224 | FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, Opc); |
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 | // Emit the RHS condition into TmpBB. |
| 1227 | FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, Opc); |
| 1228 | } |
| 1229 | } |
| 1230 | |
| 1231 | /// If the set of cases should be emitted as a series of branches, return true. |
| 1232 | /// If we should emit this as a bunch of and/or'd together conditions, return |
| 1233 | /// false. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1234 | bool |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1235 | SelectionDAGLowering::ShouldEmitAsBranches(const std::vector<CaseBlock> &Cases){ |
| 1236 | if (Cases.size() != 2) return true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1237 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1238 | // If this is two comparisons of the same values or'd or and'd together, they |
| 1239 | // will get folded into a single comparison, so don't emit two blocks. |
| 1240 | if ((Cases[0].CmpLHS == Cases[1].CmpLHS && |
| 1241 | Cases[0].CmpRHS == Cases[1].CmpRHS) || |
| 1242 | (Cases[0].CmpRHS == Cases[1].CmpLHS && |
| 1243 | Cases[0].CmpLHS == Cases[1].CmpRHS)) { |
| 1244 | return false; |
| 1245 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1246 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1247 | return true; |
| 1248 | } |
| 1249 | |
| 1250 | void SelectionDAGLowering::visitBr(BranchInst &I) { |
| 1251 | // Update machine-CFG edges. |
| 1252 | MachineBasicBlock *Succ0MBB = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1253 | |
| 1254 | // Figure out which block is immediately after the current one. |
| 1255 | MachineBasicBlock *NextBlock = 0; |
| 1256 | MachineFunction::iterator BBI = CurMBB; |
| 1257 | if (++BBI != CurMBB->getParent()->end()) |
| 1258 | NextBlock = BBI; |
| 1259 | |
| 1260 | if (I.isUnconditional()) { |
| 1261 | // Update machine-CFG edges. |
| 1262 | CurMBB->addSuccessor(Succ0MBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1263 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1264 | // If this is not a fall-through branch, emit the branch. |
| 1265 | if (Succ0MBB != NextBlock) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1266 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1267 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1268 | DAG.getBasicBlock(Succ0MBB))); |
| 1269 | return; |
| 1270 | } |
| 1271 | |
| 1272 | // If this condition is one of the special cases we handle, do special stuff |
| 1273 | // now. |
| 1274 | Value *CondVal = I.getCondition(); |
| 1275 | MachineBasicBlock *Succ1MBB = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1276 | |
| 1277 | // If this is a series of conditions that are or'd or and'd together, emit |
| 1278 | // this as a sequence of branches instead of setcc's with and/or operations. |
| 1279 | // For example, instead of something like: |
| 1280 | // cmp A, B |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1281 | // C = seteq |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1282 | // cmp D, E |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1283 | // F = setle |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1284 | // or C, F |
| 1285 | // jnz foo |
| 1286 | // Emit: |
| 1287 | // cmp A, B |
| 1288 | // je foo |
| 1289 | // cmp D, E |
| 1290 | // jle foo |
| 1291 | // |
| 1292 | if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(CondVal)) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1293 | if (BOp->hasOneUse() && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1294 | (BOp->getOpcode() == Instruction::And || |
| 1295 | BOp->getOpcode() == Instruction::Or)) { |
| 1296 | FindMergedConditions(BOp, Succ0MBB, Succ1MBB, CurMBB, BOp->getOpcode()); |
| 1297 | // If the compares in later blocks need to use values not currently |
| 1298 | // exported from this block, export them now. This block should always |
| 1299 | // be the first entry. |
| 1300 | assert(SwitchCases[0].ThisBB == CurMBB && "Unexpected lowering!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1301 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1302 | // Allow some cases to be rejected. |
| 1303 | if (ShouldEmitAsBranches(SwitchCases)) { |
| 1304 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) { |
| 1305 | ExportFromCurrentBlock(SwitchCases[i].CmpLHS); |
| 1306 | ExportFromCurrentBlock(SwitchCases[i].CmpRHS); |
| 1307 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1308 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1309 | // Emit the branch for this block. |
| 1310 | visitSwitchCase(SwitchCases[0]); |
| 1311 | SwitchCases.erase(SwitchCases.begin()); |
| 1312 | return; |
| 1313 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1314 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1315 | // Okay, we decided not to do this, remove any inserted MBB's and clear |
| 1316 | // SwitchCases. |
| 1317 | for (unsigned i = 1, e = SwitchCases.size(); i != e; ++i) |
| 1318 | CurMBB->getParent()->erase(SwitchCases[i].ThisBB); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1319 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1320 | SwitchCases.clear(); |
| 1321 | } |
| 1322 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1323 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1324 | // Create a CaseBlock record representing this branch. |
| 1325 | CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(), |
| 1326 | NULL, Succ0MBB, Succ1MBB, CurMBB); |
| 1327 | // Use visitSwitchCase to actually insert the fast branch sequence for this |
| 1328 | // cond branch. |
| 1329 | visitSwitchCase(CB); |
| 1330 | } |
| 1331 | |
| 1332 | /// visitSwitchCase - Emits the necessary code to represent a single node in |
| 1333 | /// the binary search tree resulting from lowering a switch instruction. |
| 1334 | void SelectionDAGLowering::visitSwitchCase(CaseBlock &CB) { |
| 1335 | SDValue Cond; |
| 1336 | SDValue CondLHS = getValue(CB.CmpLHS); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1337 | DebugLoc dl = getCurDebugLoc(); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1338 | |
| 1339 | // Build the setcc now. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1340 | if (CB.CmpMHS == NULL) { |
| 1341 | // Fold "(X == true)" to X and "(X == false)" to !X to |
| 1342 | // handle common cases produced by branch lowering. |
| 1343 | if (CB.CmpRHS == ConstantInt::getTrue() && CB.CC == ISD::SETEQ) |
| 1344 | Cond = CondLHS; |
| 1345 | else if (CB.CmpRHS == ConstantInt::getFalse() && CB.CC == ISD::SETEQ) { |
| 1346 | SDValue True = DAG.getConstant(1, CondLHS.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1347 | Cond = DAG.getNode(ISD::XOR, dl, CondLHS.getValueType(), CondLHS, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1348 | } else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1349 | Cond = DAG.getSetCC(dl, MVT::i1, CondLHS, getValue(CB.CmpRHS), CB.CC); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1350 | } else { |
| 1351 | assert(CB.CC == ISD::SETLE && "Can handle only LE ranges now"); |
| 1352 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1353 | const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue(); |
| 1354 | const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1355 | |
| 1356 | SDValue CmpOp = getValue(CB.CmpMHS); |
| 1357 | MVT VT = CmpOp.getValueType(); |
| 1358 | |
| 1359 | if (cast<ConstantInt>(CB.CmpLHS)->isMinValue(true)) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1360 | Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1361 | ISD::SETLE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1362 | } else { |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1363 | SDValue SUB = DAG.getNode(ISD::SUB, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1364 | VT, CmpOp, DAG.getConstant(Low, VT)); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1365 | Cond = DAG.getSetCC(dl, MVT::i1, SUB, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1366 | DAG.getConstant(High-Low, VT), ISD::SETULE); |
| 1367 | } |
| 1368 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1369 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1370 | // Update successor info |
| 1371 | CurMBB->addSuccessor(CB.TrueBB); |
| 1372 | CurMBB->addSuccessor(CB.FalseBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1373 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1374 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1375 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1376 | MachineBasicBlock *NextBlock = 0; |
| 1377 | MachineFunction::iterator BBI = CurMBB; |
| 1378 | if (++BBI != CurMBB->getParent()->end()) |
| 1379 | NextBlock = BBI; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1380 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1381 | // If the lhs block is the next block, invert the condition so that we can |
| 1382 | // fall through to the lhs instead of the rhs block. |
| 1383 | if (CB.TrueBB == NextBlock) { |
| 1384 | std::swap(CB.TrueBB, CB.FalseBB); |
| 1385 | SDValue True = DAG.getConstant(1, Cond.getValueType()); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1386 | Cond = DAG.getNode(ISD::XOR, dl, Cond.getValueType(), Cond, True); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1387 | } |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1388 | SDValue BrCond = DAG.getNode(ISD::BRCOND, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1389 | MVT::Other, getControlRoot(), Cond, |
| 1390 | DAG.getBasicBlock(CB.TrueBB)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1391 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1392 | // If the branch was constant folded, fix up the CFG. |
| 1393 | if (BrCond.getOpcode() == ISD::BR) { |
| 1394 | CurMBB->removeSuccessor(CB.FalseBB); |
| 1395 | DAG.setRoot(BrCond); |
| 1396 | } else { |
| 1397 | // Otherwise, go ahead and insert the false branch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1398 | if (BrCond == getControlRoot()) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1399 | CurMBB->removeSuccessor(CB.TrueBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1400 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1401 | if (CB.FalseBB == NextBlock) |
| 1402 | DAG.setRoot(BrCond); |
| 1403 | else |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1404 | DAG.setRoot(DAG.getNode(ISD::BR, dl, MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1405 | DAG.getBasicBlock(CB.FalseBB))); |
| 1406 | } |
| 1407 | } |
| 1408 | |
| 1409 | /// visitJumpTable - Emit JumpTable node in the current MBB |
| 1410 | void SelectionDAGLowering::visitJumpTable(JumpTable &JT) { |
| 1411 | // Emit the code for the jump table |
| 1412 | assert(JT.Reg != -1U && "Should lower JT Header first!"); |
| 1413 | MVT PTy = TLI.getPointerTy(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1414 | SDValue Index = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), |
| 1415 | JT.Reg, PTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1416 | SDValue Table = DAG.getJumpTable(JT.JTI, PTy); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1417 | DAG.setRoot(DAG.getNode(ISD::BR_JT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1418 | MVT::Other, Index.getValue(1), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1419 | Table, Index)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
| 1422 | /// visitJumpTableHeader - This function emits necessary code to produce index |
| 1423 | /// in the JumpTable from switch case. |
| 1424 | void SelectionDAGLowering::visitJumpTableHeader(JumpTable &JT, |
| 1425 | JumpTableHeader &JTH) { |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1426 | // Subtract the lowest switch case value from the value being switched on and |
| 1427 | // conditional branch to default mbb if the result is greater than the |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1428 | // difference between smallest and largest cases. |
| 1429 | SDValue SwitchOp = getValue(JTH.SValue); |
| 1430 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1431 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1432 | DAG.getConstant(JTH.First, VT)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1433 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1434 | // The SDNode we just created, which holds the value being switched on minus |
| 1435 | // the the smallest case value, needs to be copied to a virtual register so it |
| 1436 | // can be used as an index into the jump table in a subsequent basic block. |
| 1437 | // This value may be smaller or larger than the target's pointer type, and |
| 1438 | // therefore require extension or truncating. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1439 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1440 | SwitchOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1441 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1442 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1443 | SwitchOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1444 | TLI.getPointerTy(), SUB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1445 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1446 | unsigned JumpTableReg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1447 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1448 | JumpTableReg, SwitchOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1449 | JT.Reg = JumpTableReg; |
| 1450 | |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1451 | // Emit the range check for the jump table, and branch to the default block |
| 1452 | // for the switch statement if the value being switched on exceeds the largest |
| 1453 | // case in the switch. |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1454 | SDValue CMP = DAG.getSetCC(getCurDebugLoc(), |
| 1455 | TLI.getSetCCResultType(SUB.getValueType()), SUB, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1456 | DAG.getConstant(JTH.Last-JTH.First,VT), |
| 1457 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1458 | |
| 1459 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1460 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1461 | MachineBasicBlock *NextBlock = 0; |
| 1462 | MachineFunction::iterator BBI = CurMBB; |
| 1463 | if (++BBI != CurMBB->getParent()->end()) |
| 1464 | NextBlock = BBI; |
| 1465 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1466 | SDValue BrCond = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1467 | MVT::Other, CopyTo, CMP, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1468 | DAG.getBasicBlock(JT.Default)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1469 | |
| 1470 | if (JT.MBB == NextBlock) |
| 1471 | DAG.setRoot(BrCond); |
| 1472 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1473 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrCond, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1474 | DAG.getBasicBlock(JT.MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1475 | } |
| 1476 | |
| 1477 | /// visitBitTestHeader - This function emits necessary code to produce value |
| 1478 | /// suitable for "bit tests" |
| 1479 | void SelectionDAGLowering::visitBitTestHeader(BitTestBlock &B) { |
| 1480 | // Subtract the minimum value |
| 1481 | SDValue SwitchOp = getValue(B.SValue); |
| 1482 | MVT VT = SwitchOp.getValueType(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1483 | SDValue SUB = DAG.getNode(ISD::SUB, getCurDebugLoc(), VT, SwitchOp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1484 | DAG.getConstant(B.First, VT)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1485 | |
| 1486 | // Check range |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1487 | SDValue RangeCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1488 | TLI.getSetCCResultType(SUB.getValueType()), |
| 1489 | SUB, DAG.getConstant(B.Range, VT), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1490 | ISD::SETUGT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1491 | |
| 1492 | SDValue ShiftOp; |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1493 | if (VT.bitsGT(TLI.getPointerTy())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1494 | ShiftOp = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1495 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1496 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1497 | ShiftOp = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1498 | TLI.getPointerTy(), SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1499 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1500 | B.Reg = FuncInfo.MakeReg(TLI.getPointerTy()); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1501 | SDValue CopyTo = DAG.getCopyToReg(getControlRoot(), getCurDebugLoc(), |
| 1502 | B.Reg, ShiftOp); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1503 | |
| 1504 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1505 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1506 | MachineBasicBlock *NextBlock = 0; |
| 1507 | MachineFunction::iterator BBI = CurMBB; |
| 1508 | if (++BBI != CurMBB->getParent()->end()) |
| 1509 | NextBlock = BBI; |
| 1510 | |
| 1511 | MachineBasicBlock* MBB = B.Cases[0].ThisBB; |
| 1512 | |
| 1513 | CurMBB->addSuccessor(B.Default); |
| 1514 | CurMBB->addSuccessor(MBB); |
| 1515 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1516 | SDValue BrRange = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1517 | MVT::Other, CopyTo, RangeCmp, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1518 | DAG.getBasicBlock(B.Default)); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1519 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1520 | if (MBB == NextBlock) |
| 1521 | DAG.setRoot(BrRange); |
| 1522 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1523 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, CopyTo, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1524 | DAG.getBasicBlock(MBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1525 | } |
| 1526 | |
| 1527 | /// visitBitTestCase - this function produces one "bit test" |
| 1528 | void SelectionDAGLowering::visitBitTestCase(MachineBasicBlock* NextMBB, |
| 1529 | unsigned Reg, |
| 1530 | BitTestCase &B) { |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1531 | // Make desired shift |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1532 | SDValue ShiftOp = DAG.getCopyFromReg(getControlRoot(), getCurDebugLoc(), Reg, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1533 | TLI.getPointerTy()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1534 | SDValue SwitchVal = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1535 | TLI.getPointerTy(), |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1536 | DAG.getConstant(1, TLI.getPointerTy()), |
| 1537 | ShiftOp); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1538 | |
Anton Korobeynikov | 36c826a | 2009-01-26 19:26:01 +0000 | [diff] [blame] | 1539 | // Emit bit tests and jumps |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1540 | SDValue AndOp = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1541 | TLI.getPointerTy(), SwitchVal, |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1542 | DAG.getConstant(B.Mask, TLI.getPointerTy())); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 1543 | SDValue AndCmp = DAG.getSetCC(getCurDebugLoc(), |
| 1544 | TLI.getSetCCResultType(AndOp.getValueType()), |
Duncan Sands | 5480c04 | 2009-01-01 15:52:00 +0000 | [diff] [blame] | 1545 | AndOp, DAG.getConstant(0, TLI.getPointerTy()), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1546 | ISD::SETNE); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1547 | |
| 1548 | CurMBB->addSuccessor(B.TargetBB); |
| 1549 | CurMBB->addSuccessor(NextMBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1550 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1551 | SDValue BrAnd = DAG.getNode(ISD::BRCOND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1552 | MVT::Other, getControlRoot(), |
Anton Korobeynikov | 1bfe237 | 2008-12-23 22:25:45 +0000 | [diff] [blame] | 1553 | AndCmp, DAG.getBasicBlock(B.TargetBB)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1554 | |
| 1555 | // Set NextBlock to be the MBB immediately after the current one, if any. |
| 1556 | // This is used to avoid emitting unnecessary branches to the next block. |
| 1557 | MachineBasicBlock *NextBlock = 0; |
| 1558 | MachineFunction::iterator BBI = CurMBB; |
| 1559 | if (++BBI != CurMBB->getParent()->end()) |
| 1560 | NextBlock = BBI; |
| 1561 | |
| 1562 | if (NextMBB == NextBlock) |
| 1563 | DAG.setRoot(BrAnd); |
| 1564 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 1565 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), MVT::Other, BrAnd, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1566 | DAG.getBasicBlock(NextMBB))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1567 | } |
| 1568 | |
| 1569 | void SelectionDAGLowering::visitInvoke(InvokeInst &I) { |
| 1570 | // Retrieve successors. |
| 1571 | MachineBasicBlock *Return = FuncInfo.MBBMap[I.getSuccessor(0)]; |
| 1572 | MachineBasicBlock *LandingPad = FuncInfo.MBBMap[I.getSuccessor(1)]; |
| 1573 | |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1574 | const Value *Callee(I.getCalledValue()); |
| 1575 | if (isa<InlineAsm>(Callee)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1576 | visitInlineAsm(&I); |
| 1577 | else |
Gabor Greif | b67e6b3 | 2009-01-15 11:10:44 +0000 | [diff] [blame] | 1578 | LowerCallTo(&I, getValue(Callee), false, LandingPad); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1579 | |
| 1580 | // If the value of the invoke is used outside of its defining block, make it |
| 1581 | // available as a virtual register. |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 1582 | CopyToExportRegsIfNeeded(&I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1583 | |
| 1584 | // Update successor info |
| 1585 | CurMBB->addSuccessor(Return); |
| 1586 | CurMBB->addSuccessor(LandingPad); |
| 1587 | |
| 1588 | // Drop into normal successor. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1589 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 1590 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1591 | DAG.getBasicBlock(Return))); |
| 1592 | } |
| 1593 | |
| 1594 | void SelectionDAGLowering::visitUnwind(UnwindInst &I) { |
| 1595 | } |
| 1596 | |
| 1597 | /// handleSmallSwitchCaseRange - Emit a series of specific tests (suitable for |
| 1598 | /// small case ranges). |
| 1599 | bool SelectionDAGLowering::handleSmallSwitchRange(CaseRec& CR, |
| 1600 | CaseRecVector& WorkList, |
| 1601 | Value* SV, |
| 1602 | MachineBasicBlock* Default) { |
| 1603 | Case& BackCase = *(CR.Range.second-1); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1604 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1605 | // Size is the number of Cases represented by this range. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1606 | size_t Size = CR.Range.second - CR.Range.first; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1607 | if (Size > 3) |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1608 | return false; |
| 1609 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1610 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1611 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1612 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1613 | |
| 1614 | // Figure out which block is immediately after the current one. |
| 1615 | MachineBasicBlock *NextBlock = 0; |
| 1616 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1617 | |
| 1618 | if (++BBI != CurMBB->getParent()->end()) |
| 1619 | NextBlock = BBI; |
| 1620 | |
| 1621 | // TODO: If any two of the cases has the same destination, and if one value |
| 1622 | // is the same as the other, but has one bit unset that the other has set, |
| 1623 | // use bit manipulation to do two compares at once. For example: |
| 1624 | // "if (X == 6 || X == 4)" -> "if ((X|2) == 6)" |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1625 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1626 | // Rearrange the case blocks so that the last one falls through if possible. |
| 1627 | if (NextBlock && Default != NextBlock && BackCase.BB != NextBlock) { |
| 1628 | // The last case block won't fall through into 'NextBlock' if we emit the |
| 1629 | // branches in this order. See if rearranging a case value would help. |
| 1630 | for (CaseItr I = CR.Range.first, E = CR.Range.second-1; I != E; ++I) { |
| 1631 | if (I->BB == NextBlock) { |
| 1632 | std::swap(*I, BackCase); |
| 1633 | break; |
| 1634 | } |
| 1635 | } |
| 1636 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1637 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1638 | // Create a CaseBlock record representing a conditional branch to |
| 1639 | // the Case's target mbb if the value being switched on SV is equal |
| 1640 | // to C. |
| 1641 | MachineBasicBlock *CurBlock = CR.CaseBB; |
| 1642 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I != E; ++I) { |
| 1643 | MachineBasicBlock *FallThrough; |
| 1644 | if (I != E-1) { |
| 1645 | FallThrough = CurMF->CreateMachineBasicBlock(CurBlock->getBasicBlock()); |
| 1646 | CurMF->insert(BBI, FallThrough); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1647 | |
| 1648 | // Put SV in a virtual register to make it available from the new blocks. |
| 1649 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1650 | } else { |
| 1651 | // If the last case doesn't match, go to the default block. |
| 1652 | FallThrough = Default; |
| 1653 | } |
| 1654 | |
| 1655 | Value *RHS, *LHS, *MHS; |
| 1656 | ISD::CondCode CC; |
| 1657 | if (I->High == I->Low) { |
| 1658 | // This is just small small case range :) containing exactly 1 case |
| 1659 | CC = ISD::SETEQ; |
| 1660 | LHS = SV; RHS = I->High; MHS = NULL; |
| 1661 | } else { |
| 1662 | CC = ISD::SETLE; |
| 1663 | LHS = I->Low; MHS = SV; RHS = I->High; |
| 1664 | } |
| 1665 | CaseBlock CB(CC, LHS, RHS, MHS, I->BB, FallThrough, CurBlock); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1666 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1667 | // If emitting the first comparison, just call visitSwitchCase to emit the |
| 1668 | // code into the current block. Otherwise, push the CaseBlock onto the |
| 1669 | // vector to be later processed by SDISel, and insert the node's MBB |
| 1670 | // before the next MBB. |
| 1671 | if (CurBlock == CurMBB) |
| 1672 | visitSwitchCase(CB); |
| 1673 | else |
| 1674 | SwitchCases.push_back(CB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1675 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1676 | CurBlock = FallThrough; |
| 1677 | } |
| 1678 | |
| 1679 | return true; |
| 1680 | } |
| 1681 | |
| 1682 | static inline bool areJTsAllowed(const TargetLowering &TLI) { |
| 1683 | return !DisableJumpTables && |
Dan Gohman | f560ffa | 2009-01-28 17:46:25 +0000 | [diff] [blame] | 1684 | (TLI.isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || |
| 1685 | TLI.isOperationLegalOrCustom(ISD::BRIND, MVT::Other)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1686 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1687 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1688 | static APInt ComputeRange(const APInt &First, const APInt &Last) { |
| 1689 | APInt LastExt(Last), FirstExt(First); |
| 1690 | uint32_t BitWidth = std::max(Last.getBitWidth(), First.getBitWidth()) + 1; |
| 1691 | LastExt.sext(BitWidth); FirstExt.sext(BitWidth); |
| 1692 | return (LastExt - FirstExt + 1ULL); |
| 1693 | } |
| 1694 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1695 | /// handleJTSwitchCase - Emit jumptable for current switch case range |
| 1696 | bool SelectionDAGLowering::handleJTSwitchCase(CaseRec& CR, |
| 1697 | CaseRecVector& WorkList, |
| 1698 | Value* SV, |
| 1699 | MachineBasicBlock* Default) { |
| 1700 | Case& FrontCase = *CR.Range.first; |
| 1701 | Case& BackCase = *(CR.Range.second-1); |
| 1702 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1703 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1704 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1705 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1706 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1707 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1708 | I!=E; ++I) |
| 1709 | TSize += I->size(); |
| 1710 | |
| 1711 | if (!areJTsAllowed(TLI) || TSize <= 3) |
| 1712 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1713 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1714 | APInt Range = ComputeRange(First, Last); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1715 | double Density = (double)TSize / Range.roundToDouble(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1716 | if (Density < 0.4) |
| 1717 | return false; |
| 1718 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1719 | DEBUG(errs() << "Lowering jump table\n" |
| 1720 | << "First entry: " << First << ". Last entry: " << Last << '\n' |
| 1721 | << "Range: " << Range |
| 1722 | << "Size: " << TSize << ". Density: " << Density << "\n\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1723 | |
| 1724 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1725 | // inserting any additional MBBs necessary to represent the switch. |
| 1726 | MachineFunction *CurMF = CurMBB->getParent(); |
| 1727 | |
| 1728 | // Figure out which block is immediately after the current one. |
| 1729 | MachineBasicBlock *NextBlock = 0; |
| 1730 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1731 | |
| 1732 | if (++BBI != CurMBB->getParent()->end()) |
| 1733 | NextBlock = BBI; |
| 1734 | |
| 1735 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1736 | |
| 1737 | // Create a new basic block to hold the code for loading the address |
| 1738 | // of the jump table, and jumping to it. Update successor information; |
| 1739 | // we will either branch to the default case for the switch, or the jump |
| 1740 | // table. |
| 1741 | MachineBasicBlock *JumpTableBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1742 | CurMF->insert(BBI, JumpTableBB); |
| 1743 | CR.CaseBB->addSuccessor(Default); |
| 1744 | CR.CaseBB->addSuccessor(JumpTableBB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1745 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1746 | // Build a vector of destination BBs, corresponding to each target |
| 1747 | // of the jump table. If the value of the jump table slot corresponds to |
| 1748 | // a case statement, push the case's BB onto the vector, otherwise, push |
| 1749 | // the default BB. |
| 1750 | std::vector<MachineBasicBlock*> DestBBs; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1751 | APInt TEI = First; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1752 | 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] | 1753 | const APInt& Low = cast<ConstantInt>(I->Low)->getValue(); |
| 1754 | const APInt& High = cast<ConstantInt>(I->High)->getValue(); |
| 1755 | |
| 1756 | if (Low.sle(TEI) && TEI.sle(High)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1757 | DestBBs.push_back(I->BB); |
| 1758 | if (TEI==High) |
| 1759 | ++I; |
| 1760 | } else { |
| 1761 | DestBBs.push_back(Default); |
| 1762 | } |
| 1763 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1764 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1765 | // Update successor info. Add one edge to each unique successor. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1766 | BitVector SuccsHandled(CR.CaseBB->getParent()->getNumBlockIDs()); |
| 1767 | for (std::vector<MachineBasicBlock*>::iterator I = DestBBs.begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1768 | E = DestBBs.end(); I != E; ++I) { |
| 1769 | if (!SuccsHandled[(*I)->getNumber()]) { |
| 1770 | SuccsHandled[(*I)->getNumber()] = true; |
| 1771 | JumpTableBB->addSuccessor(*I); |
| 1772 | } |
| 1773 | } |
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 | // Create a jump table index for this jump table, or return an existing |
| 1776 | // one. |
| 1777 | unsigned JTI = CurMF->getJumpTableInfo()->getJumpTableIndex(DestBBs); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1778 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1779 | // Set the jump table information so that we can codegen it as a second |
| 1780 | // MachineBasicBlock |
| 1781 | JumpTable JT(-1U, JTI, JumpTableBB, Default); |
| 1782 | JumpTableHeader JTH(First, Last, SV, CR.CaseBB, (CR.CaseBB == CurMBB)); |
| 1783 | if (CR.CaseBB == CurMBB) |
| 1784 | visitJumpTableHeader(JT, JTH); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1785 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1786 | JTCases.push_back(JumpTableBlock(JTH, JT)); |
| 1787 | |
| 1788 | return true; |
| 1789 | } |
| 1790 | |
| 1791 | /// handleBTSplitSwitchCase - emit comparison and split binary search tree into |
| 1792 | /// 2 subtrees. |
| 1793 | bool SelectionDAGLowering::handleBTSplitSwitchCase(CaseRec& CR, |
| 1794 | CaseRecVector& WorkList, |
| 1795 | Value* SV, |
| 1796 | MachineBasicBlock* Default) { |
| 1797 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1798 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1799 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1800 | |
| 1801 | // Figure out which block is immediately after the current one. |
| 1802 | MachineBasicBlock *NextBlock = 0; |
| 1803 | MachineFunction::iterator BBI = CR.CaseBB; |
| 1804 | |
| 1805 | if (++BBI != CurMBB->getParent()->end()) |
| 1806 | NextBlock = BBI; |
| 1807 | |
| 1808 | Case& FrontCase = *CR.Range.first; |
| 1809 | Case& BackCase = *(CR.Range.second-1); |
| 1810 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 1811 | |
| 1812 | // Size is the number of Cases represented by this range. |
| 1813 | unsigned Size = CR.Range.second - CR.Range.first; |
| 1814 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1815 | const APInt& First = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1816 | const APInt& Last = cast<ConstantInt>(BackCase.High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1817 | double FMetric = 0; |
| 1818 | CaseItr Pivot = CR.Range.first + Size/2; |
| 1819 | |
| 1820 | // Select optimal pivot, maximizing sum density of LHS and RHS. This will |
| 1821 | // (heuristically) allow us to emit JumpTable's later. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1822 | size_t TSize = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1823 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1824 | I!=E; ++I) |
| 1825 | TSize += I->size(); |
| 1826 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1827 | size_t LSize = FrontCase.size(); |
| 1828 | size_t RSize = TSize-LSize; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1829 | DEBUG(errs() << "Selecting best pivot: \n" |
| 1830 | << "First: " << First << ", Last: " << Last <<'\n' |
| 1831 | << "LSize: " << LSize << ", RSize: " << RSize << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1832 | for (CaseItr I = CR.Range.first, J=I+1, E = CR.Range.second; |
| 1833 | J!=E; ++I, ++J) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1834 | const APInt& LEnd = cast<ConstantInt>(I->High)->getValue(); |
| 1835 | const APInt& RBegin = cast<ConstantInt>(J->Low)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1836 | APInt Range = ComputeRange(LEnd, RBegin); |
| 1837 | assert((Range - 2ULL).isNonNegative() && |
| 1838 | "Invalid case distance"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1839 | double LDensity = (double)LSize / (LEnd - First + 1ULL).roundToDouble(); |
| 1840 | double RDensity = (double)RSize / (Last - RBegin + 1ULL).roundToDouble(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1841 | double Metric = Range.logBase2()*(LDensity+RDensity); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1842 | // Should always split in some non-trivial place |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1843 | DEBUG(errs() <<"=>Step\n" |
| 1844 | << "LEnd: " << LEnd << ", RBegin: " << RBegin << '\n' |
| 1845 | << "LDensity: " << LDensity |
| 1846 | << ", RDensity: " << RDensity << '\n' |
| 1847 | << "Metric: " << Metric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1848 | if (FMetric < Metric) { |
| 1849 | Pivot = J; |
| 1850 | FMetric = Metric; |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1851 | DEBUG(errs() << "Current metric set to: " << FMetric << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1852 | } |
| 1853 | |
| 1854 | LSize += J->size(); |
| 1855 | RSize -= J->size(); |
| 1856 | } |
| 1857 | if (areJTsAllowed(TLI)) { |
| 1858 | // If our case is dense we *really* should handle it earlier! |
| 1859 | assert((FMetric > 0) && "Should handle dense range earlier!"); |
| 1860 | } else { |
| 1861 | Pivot = CR.Range.first + Size/2; |
| 1862 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1863 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1864 | CaseRange LHSR(CR.Range.first, Pivot); |
| 1865 | CaseRange RHSR(Pivot, CR.Range.second); |
| 1866 | Constant *C = Pivot->Low; |
| 1867 | MachineBasicBlock *FalseBB = 0, *TrueBB = 0; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1868 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1869 | // 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] | 1870 | // 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] | 1871 | // 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] | 1872 | // 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] | 1873 | // Pivot's Value, then we can branch directly to the LHS's Target, |
| 1874 | // rather than creating a leaf node for it. |
| 1875 | if ((LHSR.second - LHSR.first) == 1 && |
| 1876 | LHSR.first->High == CR.GE && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1877 | cast<ConstantInt>(C)->getValue() == |
| 1878 | (cast<ConstantInt>(CR.GE)->getValue() + 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1879 | TrueBB = LHSR.first->BB; |
| 1880 | } else { |
| 1881 | TrueBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1882 | CurMF->insert(BBI, TrueBB); |
| 1883 | WorkList.push_back(CaseRec(TrueBB, C, CR.GE, LHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1884 | |
| 1885 | // Put SV in a virtual register to make it available from the new blocks. |
| 1886 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1887 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1888 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1889 | // Similar to the optimization above, if the Value being switched on is |
| 1890 | // known to be less than the Constant CR.LT, and the current Case Value |
| 1891 | // is CR.LT - 1, then we can branch directly to the target block for |
| 1892 | // the current Case Value, rather than emitting a RHS leaf node for it. |
| 1893 | if ((RHSR.second - RHSR.first) == 1 && CR.LT && |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1894 | cast<ConstantInt>(RHSR.first->Low)->getValue() == |
| 1895 | (cast<ConstantInt>(CR.LT)->getValue() - 1LL)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1896 | FalseBB = RHSR.first->BB; |
| 1897 | } else { |
| 1898 | FalseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 1899 | CurMF->insert(BBI, FalseBB); |
| 1900 | WorkList.push_back(CaseRec(FalseBB,CR.LT,C,RHSR)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 1901 | |
| 1902 | // Put SV in a virtual register to make it available from the new blocks. |
| 1903 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1904 | } |
| 1905 | |
| 1906 | // Create a CaseBlock record representing a conditional branch to |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 1907 | // 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] | 1908 | // Otherwise, branch to LHS. |
| 1909 | CaseBlock CB(ISD::SETLT, SV, C, NULL, TrueBB, FalseBB, CR.CaseBB); |
| 1910 | |
| 1911 | if (CR.CaseBB == CurMBB) |
| 1912 | visitSwitchCase(CB); |
| 1913 | else |
| 1914 | SwitchCases.push_back(CB); |
| 1915 | |
| 1916 | return true; |
| 1917 | } |
| 1918 | |
| 1919 | /// handleBitTestsSwitchCase - if current case range has few destination and |
| 1920 | /// range span less, than machine word bitwidth, encode case range into series |
| 1921 | /// of masks and emit bit tests with these masks. |
| 1922 | bool SelectionDAGLowering::handleBitTestsSwitchCase(CaseRec& CR, |
| 1923 | CaseRecVector& WorkList, |
| 1924 | Value* SV, |
| 1925 | MachineBasicBlock* Default){ |
| 1926 | unsigned IntPtrBits = TLI.getPointerTy().getSizeInBits(); |
| 1927 | |
| 1928 | Case& FrontCase = *CR.Range.first; |
| 1929 | Case& BackCase = *(CR.Range.second-1); |
| 1930 | |
| 1931 | // Get the MachineFunction which holds the current MBB. This is used when |
| 1932 | // inserting any additional MBBs necessary to represent the switch. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1933 | MachineFunction *CurMF = CurMBB->getParent(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1934 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1935 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1936 | for (CaseItr I = CR.Range.first, E = CR.Range.second; |
| 1937 | I!=E; ++I) { |
| 1938 | // Single case counts one, case range - two. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1939 | numCmps += (I->Low == I->High ? 1 : 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1940 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1941 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1942 | // Count unique destinations |
| 1943 | SmallSet<MachineBasicBlock*, 4> Dests; |
| 1944 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1945 | Dests.insert(I->BB); |
| 1946 | if (Dests.size() > 3) |
| 1947 | // Don't bother the code below, if there are too much unique destinations |
| 1948 | return false; |
| 1949 | } |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1950 | DEBUG(errs() << "Total number of unique destinations: " << Dests.size() << '\n' |
| 1951 | << "Total number of comparisons: " << numCmps << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1952 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1953 | // Compute span of values. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1954 | const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue(); |
| 1955 | const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 1956 | APInt cmpRange = maxValue - minValue; |
| 1957 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1958 | DEBUG(errs() << "Compare range: " << cmpRange << '\n' |
| 1959 | << "Low bound: " << minValue << '\n' |
| 1960 | << "High bound: " << maxValue << '\n'); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1961 | |
| 1962 | if (cmpRange.uge(APInt(cmpRange.getBitWidth(), IntPtrBits)) || |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1963 | (!(Dests.size() == 1 && numCmps >= 3) && |
| 1964 | !(Dests.size() == 2 && numCmps >= 5) && |
| 1965 | !(Dests.size() >= 3 && numCmps >= 6))) |
| 1966 | return false; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1967 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 1968 | DEBUG(errs() << "Emitting bit tests\n"); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1969 | APInt lowBound = APInt::getNullValue(cmpRange.getBitWidth()); |
| 1970 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1971 | // Optimize the case where all the case values fit in a |
| 1972 | // word without having to subtract minValue. In this case, |
| 1973 | // we can optimize away the subtraction. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1974 | if (minValue.isNonNegative() && |
| 1975 | maxValue.slt(APInt(maxValue.getBitWidth(), IntPtrBits))) { |
| 1976 | cmpRange = maxValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1977 | } else { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1978 | lowBound = minValue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1979 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1980 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 1981 | CaseBitsVector CasesBits; |
| 1982 | unsigned i, count = 0; |
| 1983 | |
| 1984 | for (CaseItr I = CR.Range.first, E = CR.Range.second; I!=E; ++I) { |
| 1985 | MachineBasicBlock* Dest = I->BB; |
| 1986 | for (i = 0; i < count; ++i) |
| 1987 | if (Dest == CasesBits[i].BB) |
| 1988 | break; |
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 | if (i == count) { |
| 1991 | assert((count < 3) && "Too much destinations to test!"); |
| 1992 | CasesBits.push_back(CaseBits(0, Dest, 0)); |
| 1993 | count++; |
| 1994 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 1995 | |
| 1996 | const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue(); |
| 1997 | const APInt& highValue = cast<ConstantInt>(I->High)->getValue(); |
| 1998 | |
| 1999 | uint64_t lo = (lowValue - lowBound).getZExtValue(); |
| 2000 | uint64_t hi = (highValue - lowBound).getZExtValue(); |
| 2001 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2002 | for (uint64_t j = lo; j <= hi; j++) { |
| 2003 | CasesBits[i].Mask |= 1ULL << j; |
| 2004 | CasesBits[i].Bits++; |
| 2005 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2006 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2007 | } |
| 2008 | std::sort(CasesBits.begin(), CasesBits.end(), CaseBitsCmp()); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2009 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2010 | BitTestInfo BTC; |
| 2011 | |
| 2012 | // Figure out which block is immediately after the current one. |
| 2013 | MachineFunction::iterator BBI = CR.CaseBB; |
| 2014 | ++BBI; |
| 2015 | |
| 2016 | const BasicBlock *LLVMBB = CR.CaseBB->getBasicBlock(); |
| 2017 | |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2018 | DEBUG(errs() << "Cases:\n"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2019 | for (unsigned i = 0, e = CasesBits.size(); i!=e; ++i) { |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2020 | DEBUG(errs() << "Mask: " << CasesBits[i].Mask |
| 2021 | << ", Bits: " << CasesBits[i].Bits |
| 2022 | << ", BB: " << CasesBits[i].BB << '\n'); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2023 | |
| 2024 | MachineBasicBlock *CaseBB = CurMF->CreateMachineBasicBlock(LLVMBB); |
| 2025 | CurMF->insert(BBI, CaseBB); |
| 2026 | BTC.push_back(BitTestCase(CasesBits[i].Mask, |
| 2027 | CaseBB, |
| 2028 | CasesBits[i].BB)); |
Dan Gohman | 8e5c0da | 2009-04-09 02:33:36 +0000 | [diff] [blame] | 2029 | |
| 2030 | // Put SV in a virtual register to make it available from the new blocks. |
| 2031 | ExportFromCurrentBlock(SV); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2032 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2033 | |
| 2034 | BitTestBlock BTB(lowBound, cmpRange, SV, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2035 | -1U, (CR.CaseBB == CurMBB), |
| 2036 | CR.CaseBB, Default, BTC); |
| 2037 | |
| 2038 | if (CR.CaseBB == CurMBB) |
| 2039 | visitBitTestHeader(BTB); |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2040 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2041 | BitTestCases.push_back(BTB); |
| 2042 | |
| 2043 | return true; |
| 2044 | } |
| 2045 | |
| 2046 | |
| 2047 | /// Clusterify - Transform simple list of Cases into list of CaseRange's |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2048 | size_t SelectionDAGLowering::Clusterify(CaseVector& Cases, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2049 | const SwitchInst& SI) { |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2050 | size_t numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2051 | |
| 2052 | // Start with "simple" cases |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2053 | for (size_t i = 1; i < SI.getNumSuccessors(); ++i) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2054 | MachineBasicBlock *SMBB = FuncInfo.MBBMap[SI.getSuccessor(i)]; |
| 2055 | Cases.push_back(Case(SI.getSuccessorValue(i), |
| 2056 | SI.getSuccessorValue(i), |
| 2057 | SMBB)); |
| 2058 | } |
| 2059 | std::sort(Cases.begin(), Cases.end(), CaseCmp()); |
| 2060 | |
| 2061 | // Merge case into clusters |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2062 | if (Cases.size() >= 2) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2063 | // Must recompute end() each iteration because it may be |
| 2064 | // invalidated by erase if we hold on to it |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2065 | for (CaseItr I = Cases.begin(), J = ++(Cases.begin()); J != Cases.end(); ) { |
| 2066 | const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue(); |
| 2067 | const APInt& currentValue = cast<ConstantInt>(I->High)->getValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2068 | MachineBasicBlock* nextBB = J->BB; |
| 2069 | MachineBasicBlock* currentBB = I->BB; |
| 2070 | |
| 2071 | // If the two neighboring cases go to the same destination, merge them |
| 2072 | // into a single case. |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2073 | if ((nextValue - currentValue == 1) && (currentBB == nextBB)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2074 | I->High = J->High; |
| 2075 | J = Cases.erase(J); |
| 2076 | } else { |
| 2077 | I = J++; |
| 2078 | } |
| 2079 | } |
| 2080 | |
| 2081 | for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) { |
| 2082 | if (I->Low != I->High) |
| 2083 | // A range counts double, since it requires two compares. |
| 2084 | ++numCmps; |
| 2085 | } |
| 2086 | |
| 2087 | return numCmps; |
| 2088 | } |
| 2089 | |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2090 | void SelectionDAGLowering::visitSwitch(SwitchInst &SI) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2091 | // Figure out which block is immediately after the current one. |
| 2092 | MachineBasicBlock *NextBlock = 0; |
| 2093 | MachineFunction::iterator BBI = CurMBB; |
| 2094 | |
| 2095 | MachineBasicBlock *Default = FuncInfo.MBBMap[SI.getDefaultDest()]; |
| 2096 | |
| 2097 | // If there is only the default destination, branch to it if it is not the |
| 2098 | // next basic block. Otherwise, just fall through. |
| 2099 | if (SI.getNumOperands() == 2) { |
| 2100 | // Update machine-CFG edges. |
| 2101 | |
| 2102 | // If this is not a fall-through branch, emit the branch. |
| 2103 | CurMBB->addSuccessor(Default); |
| 2104 | if (Default != NextBlock) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2105 | DAG.setRoot(DAG.getNode(ISD::BR, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2106 | MVT::Other, getControlRoot(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2107 | DAG.getBasicBlock(Default))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2108 | return; |
| 2109 | } |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2110 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2111 | // If there are any non-default case statements, create a vector of Cases |
| 2112 | // representing each one, and sort the vector so that we can efficiently |
| 2113 | // create a binary search tree from them. |
| 2114 | CaseVector Cases; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2115 | size_t numCmps = Clusterify(Cases, SI); |
Anton Korobeynikov | 56d245b | 2008-12-23 22:26:18 +0000 | [diff] [blame] | 2116 | DEBUG(errs() << "Clusterify finished. Total clusters: " << Cases.size() |
| 2117 | << ". Total compares: " << numCmps << '\n'); |
Devang Patel | 8a84e44 | 2009-01-05 17:31:22 +0000 | [diff] [blame] | 2118 | numCmps = 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2119 | |
| 2120 | // Get the Value to be switched on and default basic blocks, which will be |
| 2121 | // inserted into CaseBlock records, representing basic blocks in the binary |
| 2122 | // search tree. |
| 2123 | Value *SV = SI.getOperand(0); |
| 2124 | |
| 2125 | // Push the initial CaseRec onto the worklist |
| 2126 | CaseRecVector WorkList; |
| 2127 | WorkList.push_back(CaseRec(CurMBB,0,0,CaseRange(Cases.begin(),Cases.end()))); |
| 2128 | |
| 2129 | while (!WorkList.empty()) { |
| 2130 | // Grab a record representing a case range to process off the worklist |
| 2131 | CaseRec CR = WorkList.back(); |
| 2132 | WorkList.pop_back(); |
| 2133 | |
| 2134 | if (handleBitTestsSwitchCase(CR, WorkList, SV, Default)) |
| 2135 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2136 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2137 | // If the range has few cases (two or less) emit a series of specific |
| 2138 | // tests. |
| 2139 | if (handleSmallSwitchRange(CR, WorkList, SV, Default)) |
| 2140 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2141 | |
Anton Korobeynikov | e2f95e9 | 2008-12-23 22:26:01 +0000 | [diff] [blame] | 2142 | // If the switch has more than 5 blocks, and at least 40% dense, and the |
| 2143 | // target supports indirect branches, then emit a jump table rather than |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2144 | // lowering the switch to a binary tree of conditional branches. |
| 2145 | if (handleJTSwitchCase(CR, WorkList, SV, Default)) |
| 2146 | continue; |
Anton Korobeynikov | 2321858 | 2008-12-23 22:25:27 +0000 | [diff] [blame] | 2147 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2148 | // Emit binary tree. We need to pick a pivot, and push left and right ranges |
| 2149 | // onto the worklist. Leafs are handled via handleSmallSwitchRange() call. |
| 2150 | handleBTSplitSwitchCase(CR, WorkList, SV, Default); |
| 2151 | } |
| 2152 | } |
| 2153 | |
| 2154 | |
| 2155 | void SelectionDAGLowering::visitSub(User &I) { |
| 2156 | // -0.0 - X --> fneg |
| 2157 | const Type *Ty = I.getType(); |
| 2158 | if (isa<VectorType>(Ty)) { |
| 2159 | if (ConstantVector *CV = dyn_cast<ConstantVector>(I.getOperand(0))) { |
| 2160 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2161 | const Type *ElTy = DestTy->getElementType(); |
| 2162 | if (ElTy->isFloatingPoint()) { |
| 2163 | unsigned VL = DestTy->getNumElements(); |
| 2164 | std::vector<Constant*> NZ(VL, ConstantFP::getNegativeZero(ElTy)); |
| 2165 | Constant *CNZ = ConstantVector::get(&NZ[0], NZ.size()); |
| 2166 | if (CV == CNZ) { |
| 2167 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2168 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2169 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2170 | return; |
| 2171 | } |
| 2172 | } |
| 2173 | } |
| 2174 | } |
| 2175 | if (Ty->isFloatingPoint()) { |
| 2176 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(I.getOperand(0))) |
| 2177 | if (CFP->isExactlyValue(ConstantFP::getNegativeZero(Ty)->getValueAPF())) { |
| 2178 | SDValue Op2 = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2179 | setValue(&I, DAG.getNode(ISD::FNEG, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2180 | Op2.getValueType(), Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2181 | return; |
| 2182 | } |
| 2183 | } |
| 2184 | |
| 2185 | visitBinary(I, Ty->isFPOrFPVector() ? ISD::FSUB : ISD::SUB); |
| 2186 | } |
| 2187 | |
| 2188 | void SelectionDAGLowering::visitBinary(User &I, unsigned OpCode) { |
| 2189 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2190 | SDValue Op2 = getValue(I.getOperand(1)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2191 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2192 | setValue(&I, DAG.getNode(OpCode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2193 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
| 2196 | void SelectionDAGLowering::visitShift(User &I, unsigned Opcode) { |
| 2197 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2198 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 57fc82d | 2009-04-09 03:51:29 +0000 | [diff] [blame] | 2199 | if (!isa<VectorType>(I.getType()) && |
| 2200 | Op2.getValueType() != TLI.getShiftAmountTy()) { |
| 2201 | // If the operand is smaller than the shift count type, promote it. |
| 2202 | if (TLI.getShiftAmountTy().bitsGT(Op2.getValueType())) |
| 2203 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
| 2204 | TLI.getShiftAmountTy(), Op2); |
| 2205 | // If the operand is larger than the shift count type but the shift |
| 2206 | // count type has enough bits to represent any shift value, truncate |
| 2207 | // it now. This is a common case and it exposes the truncate to |
| 2208 | // optimization early. |
| 2209 | else if (TLI.getShiftAmountTy().getSizeInBits() >= |
| 2210 | Log2_32_Ceil(Op2.getValueType().getSizeInBits())) |
| 2211 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2212 | TLI.getShiftAmountTy(), Op2); |
| 2213 | // Otherwise we'll need to temporarily settle for some other |
| 2214 | // convenient type; type legalization will make adjustments as |
| 2215 | // needed. |
| 2216 | else if (TLI.getPointerTy().bitsLT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2217 | Op2 = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2218 | TLI.getPointerTy(), Op2); |
| 2219 | else if (TLI.getPointerTy().bitsGT(Op2.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2220 | Op2 = DAG.getNode(ISD::ANY_EXTEND, getCurDebugLoc(), |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2221 | TLI.getPointerTy(), Op2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2222 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2223 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2224 | setValue(&I, DAG.getNode(Opcode, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2225 | Op1.getValueType(), Op1, Op2)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2226 | } |
| 2227 | |
| 2228 | void SelectionDAGLowering::visitICmp(User &I) { |
| 2229 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2230 | if (ICmpInst *IC = dyn_cast<ICmpInst>(&I)) |
| 2231 | predicate = IC->getPredicate(); |
| 2232 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2233 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2234 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2235 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2236 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2237 | setValue(&I, DAG.getSetCC(getCurDebugLoc(),MVT::i1, Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2238 | } |
| 2239 | |
| 2240 | void SelectionDAGLowering::visitFCmp(User &I) { |
| 2241 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2242 | if (FCmpInst *FC = dyn_cast<FCmpInst>(&I)) |
| 2243 | predicate = FC->getPredicate(); |
| 2244 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2245 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2246 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2247 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2248 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2249 | setValue(&I, DAG.getSetCC(getCurDebugLoc(), MVT::i1, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2250 | } |
| 2251 | |
| 2252 | void SelectionDAGLowering::visitVICmp(User &I) { |
| 2253 | ICmpInst::Predicate predicate = ICmpInst::BAD_ICMP_PREDICATE; |
| 2254 | if (VICmpInst *IC = dyn_cast<VICmpInst>(&I)) |
| 2255 | predicate = IC->getPredicate(); |
| 2256 | else if (ConstantExpr *IC = dyn_cast<ConstantExpr>(&I)) |
| 2257 | predicate = ICmpInst::Predicate(IC->getPredicate()); |
| 2258 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2259 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2260 | ISD::CondCode Opcode = getICmpCondCode(predicate); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2261 | setValue(&I, DAG.getVSetCC(getCurDebugLoc(), Op1.getValueType(), |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2262 | Op1, Op2, Opcode)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2263 | } |
| 2264 | |
| 2265 | void SelectionDAGLowering::visitVFCmp(User &I) { |
| 2266 | FCmpInst::Predicate predicate = FCmpInst::BAD_FCMP_PREDICATE; |
| 2267 | if (VFCmpInst *FC = dyn_cast<VFCmpInst>(&I)) |
| 2268 | predicate = FC->getPredicate(); |
| 2269 | else if (ConstantExpr *FC = dyn_cast<ConstantExpr>(&I)) |
| 2270 | predicate = FCmpInst::Predicate(FC->getPredicate()); |
| 2271 | SDValue Op1 = getValue(I.getOperand(0)); |
| 2272 | SDValue Op2 = getValue(I.getOperand(1)); |
Dan Gohman | 8c1a6ca | 2008-10-17 18:18:45 +0000 | [diff] [blame] | 2273 | ISD::CondCode Condition = getFCmpCondCode(predicate); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2274 | MVT DestVT = TLI.getValueType(I.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2275 | |
Dale Johannesen | f5d9789 | 2009-02-04 01:48:28 +0000 | [diff] [blame] | 2276 | setValue(&I, DAG.getVSetCC(getCurDebugLoc(), DestVT, Op1, Op2, Condition)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2277 | } |
| 2278 | |
| 2279 | void SelectionDAGLowering::visitSelect(User &I) { |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2280 | SmallVector<MVT, 4> ValueVTs; |
| 2281 | ComputeValueVTs(TLI, I.getType(), ValueVTs); |
| 2282 | unsigned NumValues = ValueVTs.size(); |
| 2283 | if (NumValues != 0) { |
| 2284 | SmallVector<SDValue, 4> Values(NumValues); |
| 2285 | SDValue Cond = getValue(I.getOperand(0)); |
| 2286 | SDValue TrueVal = getValue(I.getOperand(1)); |
| 2287 | SDValue FalseVal = getValue(I.getOperand(2)); |
| 2288 | |
| 2289 | for (unsigned i = 0; i != NumValues; ++i) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2290 | Values[i] = DAG.getNode(ISD::SELECT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2291 | TrueVal.getValueType(), Cond, |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2292 | SDValue(TrueVal.getNode(), TrueVal.getResNo() + i), |
| 2293 | SDValue(FalseVal.getNode(), FalseVal.getResNo() + i)); |
| 2294 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2295 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2296 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2297 | &Values[0], NumValues)); |
Dan Gohman | 7ea1ca6 | 2008-10-21 20:00:42 +0000 | [diff] [blame] | 2298 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2299 | } |
| 2300 | |
| 2301 | |
| 2302 | void SelectionDAGLowering::visitTrunc(User &I) { |
| 2303 | // TruncInst cannot be a no-op cast because sizeof(src) > sizeof(dest). |
| 2304 | SDValue N = getValue(I.getOperand(0)); |
| 2305 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2306 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2307 | } |
| 2308 | |
| 2309 | void SelectionDAGLowering::visitZExt(User &I) { |
| 2310 | // ZExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2311 | // ZExt also can't be a cast to bool for same reason. So, nothing much to do |
| 2312 | SDValue N = getValue(I.getOperand(0)); |
| 2313 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2314 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2315 | } |
| 2316 | |
| 2317 | void SelectionDAGLowering::visitSExt(User &I) { |
| 2318 | // SExt cannot be a no-op cast because sizeof(src) < sizeof(dest). |
| 2319 | // SExt also can't be a cast to bool for same reason. So, nothing much to do |
| 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::SIGN_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2323 | } |
| 2324 | |
| 2325 | void SelectionDAGLowering::visitFPTrunc(User &I) { |
| 2326 | // FPTrunc is never a no-op cast, no need to check |
| 2327 | SDValue N = getValue(I.getOperand(0)); |
| 2328 | MVT DestVT = TLI.getValueType(I.getType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2329 | setValue(&I, DAG.getNode(ISD::FP_ROUND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2330 | DestVT, N, DAG.getIntPtrConstant(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2331 | } |
| 2332 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2333 | void SelectionDAGLowering::visitFPExt(User &I){ |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2334 | // FPTrunc is never a no-op cast, no need to check |
| 2335 | SDValue N = getValue(I.getOperand(0)); |
| 2336 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2337 | setValue(&I, DAG.getNode(ISD::FP_EXTEND, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2338 | } |
| 2339 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2340 | void SelectionDAGLowering::visitFPToUI(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2341 | // FPToUI is never a no-op cast, no need to check |
| 2342 | SDValue N = getValue(I.getOperand(0)); |
| 2343 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2344 | setValue(&I, DAG.getNode(ISD::FP_TO_UINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2345 | } |
| 2346 | |
| 2347 | void SelectionDAGLowering::visitFPToSI(User &I) { |
| 2348 | // FPToSI is never a no-op cast, no need to check |
| 2349 | SDValue N = getValue(I.getOperand(0)); |
| 2350 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2351 | setValue(&I, DAG.getNode(ISD::FP_TO_SINT, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2352 | } |
| 2353 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2354 | void SelectionDAGLowering::visitUIToFP(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2355 | // UIToFP is never a no-op cast, no need to check |
| 2356 | SDValue N = getValue(I.getOperand(0)); |
| 2357 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2358 | setValue(&I, DAG.getNode(ISD::UINT_TO_FP, getCurDebugLoc(), 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::visitSIToFP(User &I){ |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 2362 | // SIToFP is never a no-op cast, no need to check |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2363 | SDValue N = getValue(I.getOperand(0)); |
| 2364 | MVT DestVT = TLI.getValueType(I.getType()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2365 | setValue(&I, DAG.getNode(ISD::SINT_TO_FP, getCurDebugLoc(), DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2366 | } |
| 2367 | |
| 2368 | void SelectionDAGLowering::visitPtrToInt(User &I) { |
| 2369 | // What to do depends on the size of the integer and the size of the pointer. |
| 2370 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2371 | SDValue N = getValue(I.getOperand(0)); |
| 2372 | MVT SrcVT = N.getValueType(); |
| 2373 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2374 | SDValue Result; |
| 2375 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2376 | Result = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2377 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2378 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2379 | Result = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), DestVT, N); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2380 | setValue(&I, Result); |
| 2381 | } |
| 2382 | |
| 2383 | void SelectionDAGLowering::visitIntToPtr(User &I) { |
| 2384 | // What to do depends on the size of the integer and the size of the pointer. |
| 2385 | // We can either truncate, zero extend, or no-op, accordingly. |
| 2386 | SDValue N = getValue(I.getOperand(0)); |
| 2387 | MVT SrcVT = N.getValueType(); |
| 2388 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2389 | if (DestVT.bitsLT(SrcVT)) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2390 | setValue(&I, DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), DestVT, N)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2391 | else |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2392 | // Note: ZERO_EXTEND can handle cases where the sizes are equal too |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2393 | setValue(&I, DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2394 | DestVT, N)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2395 | } |
| 2396 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2397 | void SelectionDAGLowering::visitBitCast(User &I) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2398 | SDValue N = getValue(I.getOperand(0)); |
| 2399 | MVT DestVT = TLI.getValueType(I.getType()); |
| 2400 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2401 | // 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] | 2402 | // is either a BIT_CONVERT or a no-op. |
| 2403 | if (DestVT != N.getValueType()) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2404 | setValue(&I, DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2405 | DestVT, N)); // convert types |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2406 | else |
| 2407 | setValue(&I, N); // noop cast. |
| 2408 | } |
| 2409 | |
| 2410 | void SelectionDAGLowering::visitInsertElement(User &I) { |
| 2411 | SDValue InVec = getValue(I.getOperand(0)); |
| 2412 | SDValue InVal = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2413 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2414 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2415 | getValue(I.getOperand(2))); |
| 2416 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2417 | setValue(&I, DAG.getNode(ISD::INSERT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2418 | TLI.getValueType(I.getType()), |
| 2419 | InVec, InVal, InIdx)); |
| 2420 | } |
| 2421 | |
| 2422 | void SelectionDAGLowering::visitExtractElement(User &I) { |
| 2423 | SDValue InVec = getValue(I.getOperand(0)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2424 | SDValue InIdx = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2425 | TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2426 | getValue(I.getOperand(1))); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2427 | setValue(&I, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2428 | TLI.getValueType(I.getType()), InVec, InIdx)); |
| 2429 | } |
| 2430 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2431 | |
| 2432 | // Utility for visitShuffleVector - Returns true if the mask is mask starting |
| 2433 | // from SIndx and increasing to the element length (undefs are allowed). |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2434 | static bool SequentialMask(SmallVectorImpl<int> &Mask, int SIndx) { |
| 2435 | int MaskNumElts = Mask.size(); |
| 2436 | for (int i = 0; i != MaskNumElts; ++i) |
| 2437 | if ((Mask[i] >= 0) && (Mask[i] != i + SIndx)) |
| 2438 | return false; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2439 | return true; |
| 2440 | } |
| 2441 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2442 | void SelectionDAGLowering::visitShuffleVector(User &I) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2443 | SmallVector<int, 8> Mask; |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2444 | SDValue Src1 = getValue(I.getOperand(0)); |
| 2445 | SDValue Src2 = getValue(I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2446 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2447 | // Convert the ConstantVector mask operand into an array of ints, with -1 |
| 2448 | // representing undef values. |
| 2449 | SmallVector<Constant*, 8> MaskElts; |
| 2450 | cast<Constant>(I.getOperand(2))->getVectorElements(MaskElts); |
| 2451 | int MaskNumElts = MaskElts.size(); |
| 2452 | for (int i = 0; i != MaskNumElts; ++i) { |
| 2453 | if (isa<UndefValue>(MaskElts[i])) |
| 2454 | Mask.push_back(-1); |
| 2455 | else |
| 2456 | Mask.push_back(cast<ConstantInt>(MaskElts[i])->getSExtValue()); |
| 2457 | } |
| 2458 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2459 | MVT VT = TLI.getValueType(I.getType()); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2460 | MVT SrcVT = Src1.getValueType(); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2461 | int SrcNumElts = SrcVT.getVectorNumElements(); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2462 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2463 | if (SrcNumElts == MaskNumElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2464 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2465 | &Mask[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2466 | return; |
| 2467 | } |
| 2468 | |
| 2469 | // 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] | 2470 | if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) { |
| 2471 | // Mask is longer than the source vectors and is a multiple of the source |
| 2472 | // 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] | 2473 | // lengths match. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2474 | if (SrcNumElts*2 == MaskNumElts && SequentialMask(Mask, 0)) { |
| 2475 | // The shuffle is concatenating two vectors together. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2476 | setValue(&I, DAG.getNode(ISD::CONCAT_VECTORS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2477 | VT, Src1, Src2)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2478 | return; |
| 2479 | } |
| 2480 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2481 | // Pad both vectors with undefs to make them the same length as the mask. |
| 2482 | unsigned NumConcat = MaskNumElts / SrcNumElts; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2483 | bool Src1U = Src1.getOpcode() == ISD::UNDEF; |
| 2484 | bool Src2U = Src2.getOpcode() == ISD::UNDEF; |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2485 | SDValue UndefVal = DAG.getUNDEF(SrcVT); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2486 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2487 | SmallVector<SDValue, 8> MOps1(NumConcat, UndefVal); |
| 2488 | SmallVector<SDValue, 8> MOps2(NumConcat, UndefVal); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2489 | MOps1[0] = Src1; |
| 2490 | MOps2[0] = Src2; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2491 | |
| 2492 | Src1 = Src1U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2493 | getCurDebugLoc(), VT, |
| 2494 | &MOps1[0], NumConcat); |
| 2495 | Src2 = Src2U ? DAG.getUNDEF(VT) : DAG.getNode(ISD::CONCAT_VECTORS, |
| 2496 | getCurDebugLoc(), VT, |
| 2497 | &MOps2[0], NumConcat); |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2498 | |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2499 | // Readjust mask for new input vector length. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2500 | SmallVector<int, 8> MappedOps; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2501 | for (int i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2502 | int Idx = Mask[i]; |
| 2503 | if (Idx < SrcNumElts) |
| 2504 | MappedOps.push_back(Idx); |
| 2505 | else |
| 2506 | MappedOps.push_back(Idx + MaskNumElts - SrcNumElts); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2507 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2508 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2509 | &MappedOps[0])); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2510 | return; |
| 2511 | } |
| 2512 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2513 | if (SrcNumElts > MaskNumElts) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2514 | // Resulting vector is shorter than the incoming vector. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2515 | if (SrcNumElts == MaskNumElts && SequentialMask(Mask,0)) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2516 | // Shuffle extracts 1st vector. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2517 | setValue(&I, Src1); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2518 | return; |
| 2519 | } |
| 2520 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2521 | if (SrcNumElts == MaskNumElts && SequentialMask(Mask,MaskNumElts)) { |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2522 | // Shuffle extracts 2nd vector. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2523 | setValue(&I, Src2); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2524 | return; |
| 2525 | } |
| 2526 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2527 | // Analyze the access pattern of the vector to see if we can extract |
| 2528 | // two subvectors and do the shuffle. The analysis is done by calculating |
| 2529 | // the range of elements the mask access on both vectors. |
| 2530 | int MinRange[2] = { SrcNumElts+1, SrcNumElts+1}; |
| 2531 | int MaxRange[2] = {-1, -1}; |
| 2532 | |
| 2533 | for (int i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2534 | int Idx = Mask[i]; |
| 2535 | int Input = 0; |
| 2536 | if (Idx < 0) |
| 2537 | continue; |
| 2538 | |
| 2539 | if (Idx >= SrcNumElts) { |
| 2540 | Input = 1; |
| 2541 | Idx -= SrcNumElts; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2542 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2543 | if (Idx > MaxRange[Input]) |
| 2544 | MaxRange[Input] = Idx; |
| 2545 | if (Idx < MinRange[Input]) |
| 2546 | MinRange[Input] = Idx; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2547 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2548 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2549 | // Check if the access is smaller than the vector size and can we find |
| 2550 | // a reasonable extract index. |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2551 | 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] | 2552 | int StartIdx[2]; // StartIdx to extract from |
| 2553 | for (int Input=0; Input < 2; ++Input) { |
| 2554 | if (MinRange[Input] == SrcNumElts+1 && MaxRange[Input] == -1) { |
| 2555 | RangeUse[Input] = 0; // Unused |
| 2556 | StartIdx[Input] = 0; |
| 2557 | } else if (MaxRange[Input] - MinRange[Input] < MaskNumElts) { |
| 2558 | // 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] | 2559 | // start index that is a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2560 | if (MaxRange[Input] < MaskNumElts) { |
| 2561 | RangeUse[Input] = 1; // Extract from beginning of the vector |
| 2562 | StartIdx[Input] = 0; |
| 2563 | } else { |
| 2564 | StartIdx[Input] = (MinRange[Input]/MaskNumElts)*MaskNumElts; |
Mon P Wang | 6cce3da | 2008-11-23 04:35:05 +0000 | [diff] [blame] | 2565 | if (MaxRange[Input] - StartIdx[Input] < MaskNumElts && |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2566 | StartIdx[Input] + MaskNumElts < SrcNumElts) |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2567 | RangeUse[Input] = 1; // Extract from a multiple of the mask length. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2568 | } |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2569 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2570 | } |
| 2571 | |
| 2572 | if (RangeUse[0] == 0 && RangeUse[0] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2573 | setValue(&I, DAG.getUNDEF(VT)); // Vectors are not used. |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2574 | return; |
| 2575 | } |
| 2576 | else if (RangeUse[0] < 2 && RangeUse[1] < 2) { |
| 2577 | // Extract appropriate subvector and generate a vector shuffle |
| 2578 | for (int Input=0; Input < 2; ++Input) { |
Mon P Wang | 230e4fa | 2008-11-21 04:25:21 +0000 | [diff] [blame] | 2579 | SDValue& Src = Input == 0 ? Src1 : Src2; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2580 | if (RangeUse[Input] == 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2581 | Src = DAG.getUNDEF(VT); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2582 | } else { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2583 | Src = DAG.getNode(ISD::EXTRACT_SUBVECTOR, getCurDebugLoc(), VT, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2584 | Src, DAG.getIntPtrConstant(StartIdx[Input])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2585 | } |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2586 | } |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2587 | // Calculate new mask. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2588 | SmallVector<int, 8> MappedOps; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2589 | for (int i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2590 | int Idx = Mask[i]; |
| 2591 | if (Idx < 0) |
| 2592 | MappedOps.push_back(Idx); |
| 2593 | else if (Idx < SrcNumElts) |
| 2594 | MappedOps.push_back(Idx - StartIdx[0]); |
| 2595 | else |
| 2596 | MappedOps.push_back(Idx - SrcNumElts - StartIdx[1] + MaskNumElts); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2597 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2598 | setValue(&I, DAG.getVectorShuffle(VT, getCurDebugLoc(), Src1, Src2, |
| 2599 | &MappedOps[0])); |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2600 | return; |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2601 | } |
| 2602 | } |
| 2603 | |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2604 | // We can't use either concat vectors or extract subvectors so fall back to |
| 2605 | // replacing the shuffle with extract and build vector. |
| 2606 | // to insert and build vector. |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2607 | MVT EltVT = VT.getVectorElementType(); |
| 2608 | MVT PtrVT = TLI.getPointerTy(); |
| 2609 | SmallVector<SDValue,8> Ops; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2610 | for (int i = 0; i != MaskNumElts; ++i) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2611 | if (Mask[i] < 0) { |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2612 | Ops.push_back(DAG.getUNDEF(EltVT)); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2613 | } else { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 2614 | int Idx = Mask[i]; |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2615 | if (Idx < SrcNumElts) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2616 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2617 | EltVT, Src1, DAG.getConstant(Idx, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2618 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2619 | Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, getCurDebugLoc(), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2620 | EltVT, Src2, |
Mon P Wang | c7849c2 | 2008-11-16 05:06:27 +0000 | [diff] [blame] | 2621 | DAG.getConstant(Idx - SrcNumElts, PtrVT))); |
Mon P Wang | aeb06d2 | 2008-11-10 04:46:22 +0000 | [diff] [blame] | 2622 | } |
| 2623 | } |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2624 | setValue(&I, DAG.getNode(ISD::BUILD_VECTOR, getCurDebugLoc(), |
| 2625 | VT, &Ops[0], Ops.size())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2626 | } |
| 2627 | |
| 2628 | void SelectionDAGLowering::visitInsertValue(InsertValueInst &I) { |
| 2629 | const Value *Op0 = I.getOperand(0); |
| 2630 | const Value *Op1 = I.getOperand(1); |
| 2631 | const Type *AggTy = I.getType(); |
| 2632 | const Type *ValTy = Op1->getType(); |
| 2633 | bool IntoUndef = isa<UndefValue>(Op0); |
| 2634 | bool FromUndef = isa<UndefValue>(Op1); |
| 2635 | |
| 2636 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2637 | I.idx_begin(), I.idx_end()); |
| 2638 | |
| 2639 | SmallVector<MVT, 4> AggValueVTs; |
| 2640 | ComputeValueVTs(TLI, AggTy, AggValueVTs); |
| 2641 | SmallVector<MVT, 4> ValValueVTs; |
| 2642 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2643 | |
| 2644 | unsigned NumAggValues = AggValueVTs.size(); |
| 2645 | unsigned NumValValues = ValValueVTs.size(); |
| 2646 | SmallVector<SDValue, 4> Values(NumAggValues); |
| 2647 | |
| 2648 | SDValue Agg = getValue(Op0); |
| 2649 | SDValue Val = getValue(Op1); |
| 2650 | unsigned i = 0; |
| 2651 | // Copy the beginning value(s) from the original aggregate. |
| 2652 | for (; i != LinearIndex; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2653 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2654 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2655 | // Copy values from the inserted value(s). |
| 2656 | for (; i != LinearIndex + NumValValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2657 | Values[i] = FromUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2658 | SDValue(Val.getNode(), Val.getResNo() + i - LinearIndex); |
| 2659 | // Copy remaining value(s) from the original aggregate. |
| 2660 | for (; i != NumAggValues; ++i) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2661 | Values[i] = IntoUndef ? DAG.getUNDEF(AggValueVTs[i]) : |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2662 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
| 2663 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2664 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2665 | DAG.getVTList(&AggValueVTs[0], NumAggValues), |
| 2666 | &Values[0], NumAggValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2667 | } |
| 2668 | |
| 2669 | void SelectionDAGLowering::visitExtractValue(ExtractValueInst &I) { |
| 2670 | const Value *Op0 = I.getOperand(0); |
| 2671 | const Type *AggTy = Op0->getType(); |
| 2672 | const Type *ValTy = I.getType(); |
| 2673 | bool OutOfUndef = isa<UndefValue>(Op0); |
| 2674 | |
| 2675 | unsigned LinearIndex = ComputeLinearIndex(TLI, AggTy, |
| 2676 | I.idx_begin(), I.idx_end()); |
| 2677 | |
| 2678 | SmallVector<MVT, 4> ValValueVTs; |
| 2679 | ComputeValueVTs(TLI, ValTy, ValValueVTs); |
| 2680 | |
| 2681 | unsigned NumValValues = ValValueVTs.size(); |
| 2682 | SmallVector<SDValue, 4> Values(NumValValues); |
| 2683 | |
| 2684 | SDValue Agg = getValue(Op0); |
| 2685 | // Copy out the selected value(s). |
| 2686 | for (unsigned i = LinearIndex; i != LinearIndex + NumValValues; ++i) |
| 2687 | Values[i - LinearIndex] = |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2688 | OutOfUndef ? |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2689 | DAG.getUNDEF(Agg.getNode()->getValueType(Agg.getResNo() + i)) : |
Bill Wendling | f0a2d0c | 2008-11-20 07:24:30 +0000 | [diff] [blame] | 2690 | SDValue(Agg.getNode(), Agg.getResNo() + i); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2691 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2692 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2693 | DAG.getVTList(&ValValueVTs[0], NumValValues), |
| 2694 | &Values[0], NumValValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2695 | } |
| 2696 | |
| 2697 | |
| 2698 | void SelectionDAGLowering::visitGetElementPtr(User &I) { |
| 2699 | SDValue N = getValue(I.getOperand(0)); |
| 2700 | const Type *Ty = I.getOperand(0)->getType(); |
| 2701 | |
| 2702 | for (GetElementPtrInst::op_iterator OI = I.op_begin()+1, E = I.op_end(); |
| 2703 | OI != E; ++OI) { |
| 2704 | Value *Idx = *OI; |
| 2705 | if (const StructType *StTy = dyn_cast<StructType>(Ty)) { |
| 2706 | unsigned Field = cast<ConstantInt>(Idx)->getZExtValue(); |
| 2707 | if (Field) { |
| 2708 | // N = N + Offset |
| 2709 | uint64_t Offset = TD->getStructLayout(StTy)->getElementOffset(Field); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2710 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2711 | DAG.getIntPtrConstant(Offset)); |
| 2712 | } |
| 2713 | Ty = StTy->getElementType(Field); |
| 2714 | } else { |
| 2715 | Ty = cast<SequentialType>(Ty)->getElementType(); |
| 2716 | |
| 2717 | // If this is a constant subscript, handle it quickly. |
| 2718 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Idx)) { |
| 2719 | if (CI->getZExtValue() == 0) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2720 | uint64_t Offs = |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2721 | TD->getTypePaddedSize(Ty)*cast<ConstantInt>(CI)->getSExtValue(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2722 | SDValue OffsVal; |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2723 | unsigned PtrBits = TLI.getPointerTy().getSizeInBits(); |
Evan Cheng | 65b52df | 2009-02-09 21:01:06 +0000 | [diff] [blame] | 2724 | if (PtrBits < 64) { |
| 2725 | OffsVal = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
| 2726 | TLI.getPointerTy(), |
| 2727 | DAG.getConstant(Offs, MVT::i64)); |
| 2728 | } else |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2729 | OffsVal = DAG.getIntPtrConstant(Offs); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2730 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), N.getValueType(), N, |
Evan Cheng | b1032a8 | 2009-02-09 20:54:38 +0000 | [diff] [blame] | 2731 | OffsVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2732 | continue; |
| 2733 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2734 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2735 | // N = N + Idx * ElementSize; |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2736 | uint64_t ElementSize = TD->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2737 | SDValue IdxN = getValue(Idx); |
| 2738 | |
| 2739 | // If the index is smaller or larger than intptr_t, truncate or extend |
| 2740 | // it. |
| 2741 | if (IdxN.getValueType().bitsLT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2742 | IdxN = DAG.getNode(ISD::SIGN_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2743 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2744 | else if (IdxN.getValueType().bitsGT(N.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2745 | IdxN = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2746 | N.getValueType(), IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2747 | |
| 2748 | // If this is a multiply by a power of two, turn it into a shl |
| 2749 | // immediately. This is a very common case. |
| 2750 | if (ElementSize != 1) { |
| 2751 | if (isPowerOf2_64(ElementSize)) { |
| 2752 | unsigned Amt = Log2_64(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2753 | IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2754 | N.getValueType(), IdxN, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 2755 | DAG.getConstant(Amt, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2756 | } else { |
| 2757 | SDValue Scale = DAG.getIntPtrConstant(ElementSize); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2758 | IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2759 | N.getValueType(), IdxN, Scale); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2760 | } |
| 2761 | } |
| 2762 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2763 | N = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2764 | N.getValueType(), N, IdxN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2765 | } |
| 2766 | } |
| 2767 | setValue(&I, N); |
| 2768 | } |
| 2769 | |
| 2770 | void SelectionDAGLowering::visitAlloca(AllocaInst &I) { |
| 2771 | // If this is a fixed sized alloca in the entry block of the function, |
| 2772 | // allocate it statically on the stack. |
| 2773 | if (FuncInfo.StaticAllocaMap.count(&I)) |
| 2774 | return; // getValue will auto-populate this. |
| 2775 | |
| 2776 | const Type *Ty = I.getAllocatedType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 2777 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2778 | unsigned Align = |
| 2779 | std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), |
| 2780 | I.getAlignment()); |
| 2781 | |
| 2782 | SDValue AllocSize = getValue(I.getArraySize()); |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 2783 | |
| 2784 | AllocSize = DAG.getNode(ISD::MUL, getCurDebugLoc(), AllocSize.getValueType(), |
| 2785 | AllocSize, |
| 2786 | DAG.getConstant(TySize, AllocSize.getValueType())); |
| 2787 | |
| 2788 | |
| 2789 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2790 | MVT IntPtr = TLI.getPointerTy(); |
| 2791 | if (IntPtr.bitsLT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2792 | AllocSize = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2793 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2794 | else if (IntPtr.bitsGT(AllocSize.getValueType())) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2795 | AllocSize = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2796 | IntPtr, AllocSize); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2797 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2798 | // Handle alignment. If the requested alignment is less than or equal to |
| 2799 | // the stack alignment, ignore it. If the size is greater than or equal to |
| 2800 | // the stack alignment, we note this in the DYNAMIC_STACKALLOC node. |
| 2801 | unsigned StackAlign = |
| 2802 | TLI.getTargetMachine().getFrameInfo()->getStackAlignment(); |
| 2803 | if (Align <= StackAlign) |
| 2804 | Align = 0; |
| 2805 | |
| 2806 | // Round the size of the allocation up to the stack alignment size |
| 2807 | // by add SA-1 to the size. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2808 | AllocSize = DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2809 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2810 | DAG.getIntPtrConstant(StackAlign-1)); |
| 2811 | // Mask out the low bits for alignment purposes. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2812 | AllocSize = DAG.getNode(ISD::AND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2813 | AllocSize.getValueType(), AllocSize, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2814 | DAG.getIntPtrConstant(~(uint64_t)(StackAlign-1))); |
| 2815 | |
| 2816 | SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2817 | SDVTList VTs = DAG.getVTList(AllocSize.getValueType(), MVT::Other); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2818 | SDValue DSA = DAG.getNode(ISD::DYNAMIC_STACKALLOC, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2819 | VTs, Ops, 3); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2820 | setValue(&I, DSA); |
| 2821 | DAG.setRoot(DSA.getValue(1)); |
| 2822 | |
| 2823 | // Inform the Frame Information that we have just allocated a variable-sized |
| 2824 | // object. |
| 2825 | CurMBB->getParent()->getFrameInfo()->CreateVariableSizedObject(); |
| 2826 | } |
| 2827 | |
| 2828 | void SelectionDAGLowering::visitLoad(LoadInst &I) { |
| 2829 | const Value *SV = I.getOperand(0); |
| 2830 | SDValue Ptr = getValue(SV); |
| 2831 | |
| 2832 | const Type *Ty = I.getType(); |
| 2833 | bool isVolatile = I.isVolatile(); |
| 2834 | unsigned Alignment = I.getAlignment(); |
| 2835 | |
| 2836 | SmallVector<MVT, 4> ValueVTs; |
| 2837 | SmallVector<uint64_t, 4> Offsets; |
| 2838 | ComputeValueVTs(TLI, Ty, ValueVTs, &Offsets); |
| 2839 | unsigned NumValues = ValueVTs.size(); |
| 2840 | if (NumValues == 0) |
| 2841 | return; |
| 2842 | |
| 2843 | SDValue Root; |
| 2844 | bool ConstantMemory = false; |
| 2845 | if (I.isVolatile()) |
| 2846 | // Serialize volatile loads with other side effects. |
| 2847 | Root = getRoot(); |
| 2848 | else if (AA->pointsToConstantMemory(SV)) { |
| 2849 | // Do not serialize (non-volatile) loads of constant memory with anything. |
| 2850 | Root = DAG.getEntryNode(); |
| 2851 | ConstantMemory = true; |
| 2852 | } else { |
| 2853 | // Do not serialize non-volatile loads against each other. |
| 2854 | Root = DAG.getRoot(); |
| 2855 | } |
| 2856 | |
| 2857 | SmallVector<SDValue, 4> Values(NumValues); |
| 2858 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2859 | MVT PtrVT = Ptr.getValueType(); |
| 2860 | for (unsigned i = 0; i != NumValues; ++i) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2861 | SDValue L = DAG.getLoad(ValueVTs[i], getCurDebugLoc(), Root, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2862 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2863 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2864 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2865 | SV, Offsets[i], |
| 2866 | isVolatile, Alignment); |
| 2867 | Values[i] = L; |
| 2868 | Chains[i] = L.getValue(1); |
| 2869 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2870 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2871 | if (!ConstantMemory) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2872 | SDValue Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2873 | MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2874 | &Chains[0], NumValues); |
| 2875 | if (isVolatile) |
| 2876 | DAG.setRoot(Chain); |
| 2877 | else |
| 2878 | PendingLoads.push_back(Chain); |
| 2879 | } |
| 2880 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2881 | setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurDebugLoc(), |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2882 | DAG.getVTList(&ValueVTs[0], NumValues), |
| 2883 | &Values[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2884 | } |
| 2885 | |
| 2886 | |
| 2887 | void SelectionDAGLowering::visitStore(StoreInst &I) { |
| 2888 | Value *SrcV = I.getOperand(0); |
| 2889 | Value *PtrV = I.getOperand(1); |
| 2890 | |
| 2891 | SmallVector<MVT, 4> ValueVTs; |
| 2892 | SmallVector<uint64_t, 4> Offsets; |
| 2893 | ComputeValueVTs(TLI, SrcV->getType(), ValueVTs, &Offsets); |
| 2894 | unsigned NumValues = ValueVTs.size(); |
| 2895 | if (NumValues == 0) |
| 2896 | return; |
| 2897 | |
| 2898 | // Get the lowered operands. Note that we do this after |
| 2899 | // checking if NumResults is zero, because with zero results |
| 2900 | // the operands won't have values in the map. |
| 2901 | SDValue Src = getValue(SrcV); |
| 2902 | SDValue Ptr = getValue(PtrV); |
| 2903 | |
| 2904 | SDValue Root = getRoot(); |
| 2905 | SmallVector<SDValue, 4> Chains(NumValues); |
| 2906 | MVT PtrVT = Ptr.getValueType(); |
| 2907 | bool isVolatile = I.isVolatile(); |
| 2908 | unsigned Alignment = I.getAlignment(); |
| 2909 | for (unsigned i = 0; i != NumValues; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2910 | Chains[i] = DAG.getStore(Root, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2911 | SDValue(Src.getNode(), Src.getResNo() + i), |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2912 | DAG.getNode(ISD::ADD, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2913 | PtrVT, Ptr, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2914 | DAG.getConstant(Offsets[i], PtrVT)), |
| 2915 | PtrV, Offsets[i], |
| 2916 | isVolatile, Alignment); |
| 2917 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2918 | DAG.setRoot(DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 2919 | MVT::Other, &Chains[0], NumValues)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2920 | } |
| 2921 | |
| 2922 | /// visitTargetIntrinsic - Lower a call of a target intrinsic to an INTRINSIC |
| 2923 | /// node. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2924 | void SelectionDAGLowering::visitTargetIntrinsic(CallInst &I, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2925 | unsigned Intrinsic) { |
| 2926 | bool HasChain = !I.doesNotAccessMemory(); |
| 2927 | bool OnlyLoad = HasChain && I.onlyReadsMemory(); |
| 2928 | |
| 2929 | // Build the operand list. |
| 2930 | SmallVector<SDValue, 8> Ops; |
| 2931 | if (HasChain) { // If this intrinsic has side-effects, chainify it. |
| 2932 | if (OnlyLoad) { |
| 2933 | // We don't need to serialize loads against other loads. |
| 2934 | Ops.push_back(DAG.getRoot()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2935 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2936 | Ops.push_back(getRoot()); |
| 2937 | } |
| 2938 | } |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2939 | |
| 2940 | // Info is set by getTgtMemInstrinsic |
| 2941 | TargetLowering::IntrinsicInfo Info; |
| 2942 | bool IsTgtIntrinsic = TLI.getTgtMemIntrinsic(Info, I, Intrinsic); |
| 2943 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2944 | // 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] | 2945 | if (!IsTgtIntrinsic) |
| 2946 | Ops.push_back(DAG.getConstant(Intrinsic, TLI.getPointerTy())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2947 | |
| 2948 | // Add all operands of the call to the operand list. |
| 2949 | for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) { |
| 2950 | SDValue Op = getValue(I.getOperand(i)); |
| 2951 | assert(TLI.isTypeLegal(Op.getValueType()) && |
| 2952 | "Intrinsic uses a non-legal type?"); |
| 2953 | Ops.push_back(Op); |
| 2954 | } |
| 2955 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2956 | std::vector<MVT> VTArray; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2957 | if (I.getType() != Type::VoidTy) { |
| 2958 | MVT VT = TLI.getValueType(I.getType()); |
| 2959 | if (VT.isVector()) { |
| 2960 | const VectorType *DestTy = cast<VectorType>(I.getType()); |
| 2961 | MVT EltVT = TLI.getValueType(DestTy->getElementType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2962 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2963 | VT = MVT::getVectorVT(EltVT, DestTy->getNumElements()); |
| 2964 | assert(VT != MVT::Other && "Intrinsic uses a non-legal type?"); |
| 2965 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 2966 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2967 | assert(TLI.isTypeLegal(VT) && "Intrinsic uses a non-legal type?"); |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2968 | VTArray.push_back(VT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2969 | } |
| 2970 | if (HasChain) |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2971 | VTArray.push_back(MVT::Other); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2972 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2973 | SDVTList VTs = DAG.getVTList(&VTArray[0], VTArray.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2974 | |
| 2975 | // Create the node. |
| 2976 | SDValue Result; |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2977 | if (IsTgtIntrinsic) { |
| 2978 | // This is target intrinsic that touches memory |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 2979 | Result = DAG.getMemIntrinsicNode(Info.opc, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2980 | VTs, &Ops[0], Ops.size(), |
Mon P Wang | 3efcd4a | 2008-11-01 20:24:53 +0000 | [diff] [blame] | 2981 | Info.memVT, Info.ptrVal, Info.offset, |
| 2982 | Info.align, Info.vol, |
| 2983 | Info.readMem, Info.writeMem); |
| 2984 | } |
| 2985 | else if (!HasChain) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2986 | Result = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2987 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2988 | else if (I.getType() != Type::VoidTy) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2989 | Result = DAG.getNode(ISD::INTRINSIC_W_CHAIN, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2990 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2991 | else |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2992 | Result = DAG.getNode(ISD::INTRINSIC_VOID, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 2993 | VTs, &Ops[0], Ops.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 2994 | |
| 2995 | if (HasChain) { |
| 2996 | SDValue Chain = Result.getValue(Result.getNode()->getNumValues()-1); |
| 2997 | if (OnlyLoad) |
| 2998 | PendingLoads.push_back(Chain); |
| 2999 | else |
| 3000 | DAG.setRoot(Chain); |
| 3001 | } |
| 3002 | if (I.getType() != Type::VoidTy) { |
| 3003 | if (const VectorType *PTy = dyn_cast<VectorType>(I.getType())) { |
| 3004 | MVT VT = TLI.getValueType(PTy); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3005 | Result = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), VT, Result); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3006 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3007 | setValue(&I, Result); |
| 3008 | } |
| 3009 | } |
| 3010 | |
| 3011 | /// ExtractTypeInfo - Returns the type info, possibly bitcast, encoded in V. |
| 3012 | static GlobalVariable *ExtractTypeInfo(Value *V) { |
| 3013 | V = V->stripPointerCasts(); |
| 3014 | GlobalVariable *GV = dyn_cast<GlobalVariable>(V); |
| 3015 | assert ((GV || isa<ConstantPointerNull>(V)) && |
| 3016 | "TypeInfo must be a global variable or NULL"); |
| 3017 | return GV; |
| 3018 | } |
| 3019 | |
| 3020 | namespace llvm { |
| 3021 | |
| 3022 | /// AddCatchInfo - Extract the personality and type infos from an eh.selector |
| 3023 | /// call, and add them to the specified machine basic block. |
| 3024 | void AddCatchInfo(CallInst &I, MachineModuleInfo *MMI, |
| 3025 | MachineBasicBlock *MBB) { |
| 3026 | // Inform the MachineModuleInfo of the personality for this landing pad. |
| 3027 | ConstantExpr *CE = cast<ConstantExpr>(I.getOperand(2)); |
| 3028 | assert(CE->getOpcode() == Instruction::BitCast && |
| 3029 | isa<Function>(CE->getOperand(0)) && |
| 3030 | "Personality should be a function"); |
| 3031 | MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0))); |
| 3032 | |
| 3033 | // Gather all the type infos for this landing pad and pass them along to |
| 3034 | // MachineModuleInfo. |
| 3035 | std::vector<GlobalVariable *> TyInfo; |
| 3036 | unsigned N = I.getNumOperands(); |
| 3037 | |
| 3038 | for (unsigned i = N - 1; i > 2; --i) { |
| 3039 | if (ConstantInt *CI = dyn_cast<ConstantInt>(I.getOperand(i))) { |
| 3040 | unsigned FilterLength = CI->getZExtValue(); |
| 3041 | unsigned FirstCatch = i + FilterLength + !FilterLength; |
| 3042 | assert (FirstCatch <= N && "Invalid filter length"); |
| 3043 | |
| 3044 | if (FirstCatch < N) { |
| 3045 | TyInfo.reserve(N - FirstCatch); |
| 3046 | for (unsigned j = FirstCatch; j < N; ++j) |
| 3047 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3048 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3049 | TyInfo.clear(); |
| 3050 | } |
| 3051 | |
| 3052 | if (!FilterLength) { |
| 3053 | // Cleanup. |
| 3054 | MMI->addCleanup(MBB); |
| 3055 | } else { |
| 3056 | // Filter. |
| 3057 | TyInfo.reserve(FilterLength - 1); |
| 3058 | for (unsigned j = i + 1; j < FirstCatch; ++j) |
| 3059 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3060 | MMI->addFilterTypeInfo(MBB, TyInfo); |
| 3061 | TyInfo.clear(); |
| 3062 | } |
| 3063 | |
| 3064 | N = i; |
| 3065 | } |
| 3066 | } |
| 3067 | |
| 3068 | if (N > 3) { |
| 3069 | TyInfo.reserve(N - 3); |
| 3070 | for (unsigned j = 3; j < N; ++j) |
| 3071 | TyInfo.push_back(ExtractTypeInfo(I.getOperand(j))); |
| 3072 | MMI->addCatchTypeInfo(MBB, TyInfo); |
| 3073 | } |
| 3074 | } |
| 3075 | |
| 3076 | } |
| 3077 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3078 | /// GetSignificand - Get the significand and build it into a floating-point |
| 3079 | /// number with exponent of 1: |
| 3080 | /// |
| 3081 | /// Op = (Op & 0x007fffff) | 0x3f800000; |
| 3082 | /// |
| 3083 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3084 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3085 | GetSignificand(SelectionDAG &DAG, SDValue Op, DebugLoc dl) { |
| 3086 | SDValue t1 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3087 | DAG.getConstant(0x007fffff, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3088 | SDValue t2 = DAG.getNode(ISD::OR, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3089 | DAG.getConstant(0x3f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3090 | return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3091 | } |
| 3092 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3093 | /// GetExponent - Get the exponent: |
| 3094 | /// |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3095 | /// (float)(int)(((Op & 0x7f800000) >> 23) - 127); |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3096 | /// |
| 3097 | /// where Op is the hexidecimal representation of floating point value. |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3098 | static SDValue |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3099 | GetExponent(SelectionDAG &DAG, SDValue Op, const TargetLowering &TLI, |
| 3100 | DebugLoc dl) { |
| 3101 | SDValue t0 = DAG.getNode(ISD::AND, dl, MVT::i32, Op, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3102 | DAG.getConstant(0x7f800000, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3103 | SDValue t1 = DAG.getNode(ISD::SRL, dl, MVT::i32, t0, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3104 | DAG.getConstant(23, TLI.getPointerTy())); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3105 | SDValue t2 = DAG.getNode(ISD::SUB, dl, MVT::i32, t1, |
Bill Wendling | e9a7286 | 2009-01-20 21:17:57 +0000 | [diff] [blame] | 3106 | DAG.getConstant(127, MVT::i32)); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3107 | return DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, t2); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3108 | } |
| 3109 | |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3110 | /// getF32Constant - Get 32-bit floating point constant. |
| 3111 | static SDValue |
| 3112 | getF32Constant(SelectionDAG &DAG, unsigned Flt) { |
| 3113 | return DAG.getConstantFP(APFloat(APInt(32, Flt)), MVT::f32); |
| 3114 | } |
| 3115 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3116 | /// Inlined utility function to implement binary input atomic intrinsics for |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3117 | /// visitIntrinsicCall: I is a call instruction |
| 3118 | /// Op is the associated NodeType for I |
| 3119 | const char * |
| 3120 | SelectionDAGLowering::implVisitBinaryAtomic(CallInst& I, ISD::NodeType Op) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3121 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3122 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3123 | DAG.getAtomic(Op, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3124 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3125 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3126 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 3127 | getValue(I.getOperand(2)), |
| 3128 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3129 | setValue(&I, L); |
| 3130 | DAG.setRoot(L.getValue(1)); |
| 3131 | return 0; |
| 3132 | } |
| 3133 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3134 | // implVisitAluOverflow - Lower arithmetic overflow instrinsics. |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3135 | const char * |
| 3136 | SelectionDAGLowering::implVisitAluOverflow(CallInst &I, ISD::NodeType Op) { |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3137 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3138 | SDValue Op2 = getValue(I.getOperand(2)); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3139 | |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 3140 | SDVTList VTs = DAG.getVTList(Op1.getValueType(), MVT::i1); |
| 3141 | SDValue Result = DAG.getNode(Op, getCurDebugLoc(), VTs, Op1, Op2); |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3142 | |
Bill Wendling | 2ce4e5c | 2008-12-10 00:28:22 +0000 | [diff] [blame] | 3143 | setValue(&I, Result); |
| 3144 | return 0; |
| 3145 | } |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 3146 | |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3147 | /// visitExp - Lower an exp intrinsic. Handles the special sequences for |
| 3148 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3149 | void |
| 3150 | SelectionDAGLowering::visitExp(CallInst &I) { |
| 3151 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3152 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3153 | |
| 3154 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3155 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3156 | SDValue Op = getValue(I.getOperand(1)); |
| 3157 | |
| 3158 | // Put the exponent in the right bit position for later addition to the |
| 3159 | // final result: |
| 3160 | // |
| 3161 | // #define LOG2OFe 1.4426950f |
| 3162 | // IntegerPartOfX = ((int32_t)(X * LOG2OFe)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3163 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3164 | getF32Constant(DAG, 0x3fb8aa3b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3165 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3166 | |
| 3167 | // FractionalPartOfX = (X * LOG2OFe) - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3168 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3169 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3170 | |
| 3171 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3172 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3173 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3174 | |
| 3175 | if (LimitFloatPrecision <= 6) { |
| 3176 | // For floating-point precision of 6: |
| 3177 | // |
| 3178 | // TwoToFractionalPartOfX = |
| 3179 | // 0.997535578f + |
| 3180 | // (0.735607626f + 0.252464424f * x) * x; |
| 3181 | // |
| 3182 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3183 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3184 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3185 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3186 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3187 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3188 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3189 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3190 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t5); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3191 | |
| 3192 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3193 | SDValue t6 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3194 | TwoToFracPartOfX, IntegerPartOfX); |
| 3195 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3196 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t6); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3197 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3198 | // For floating-point precision of 12: |
| 3199 | // |
| 3200 | // TwoToFractionalPartOfX = |
| 3201 | // 0.999892986f + |
| 3202 | // (0.696457318f + |
| 3203 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3204 | // |
| 3205 | // 0.000107046256 error, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3206 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3207 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3208 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3209 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3210 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3211 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3212 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3213 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3214 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3215 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3216 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl,MVT::i32, t7); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3217 | |
| 3218 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3219 | SDValue t8 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3220 | TwoToFracPartOfX, IntegerPartOfX); |
| 3221 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3222 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t8); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3223 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3224 | // For floating-point precision of 18: |
| 3225 | // |
| 3226 | // TwoToFractionalPartOfX = |
| 3227 | // 0.999999982f + |
| 3228 | // (0.693148872f + |
| 3229 | // (0.240227044f + |
| 3230 | // (0.554906021e-1f + |
| 3231 | // (0.961591928e-2f + |
| 3232 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3233 | // |
| 3234 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3235 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3236 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3237 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3238 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3239 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3240 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3241 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3242 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3243 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3244 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3245 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3246 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3247 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3248 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3249 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3250 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3251 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3252 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3253 | getF32Constant(DAG, 0x3f800000)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3254 | SDValue TwoToFracPartOfX = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3255 | MVT::i32, t13); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3256 | |
| 3257 | // Add the exponent into the result in integer domain. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3258 | SDValue t14 = DAG.getNode(ISD::ADD, dl, MVT::i32, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3259 | TwoToFracPartOfX, IntegerPartOfX); |
| 3260 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3261 | result = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, t14); |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3262 | } |
| 3263 | } else { |
| 3264 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3265 | result = DAG.getNode(ISD::FEXP, dl, |
Bill Wendling | b4ec283 | 2008-09-09 22:13:54 +0000 | [diff] [blame] | 3266 | getValue(I.getOperand(1)).getValueType(), |
| 3267 | getValue(I.getOperand(1))); |
| 3268 | } |
| 3269 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3270 | setValue(&I, result); |
| 3271 | } |
| 3272 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3273 | /// visitLog - Lower a log intrinsic. Handles the special sequences for |
| 3274 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3275 | void |
| 3276 | SelectionDAGLowering::visitLog(CallInst &I) { |
| 3277 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3278 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3279 | |
| 3280 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
| 3281 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3282 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3283 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3284 | |
| 3285 | // Scale the exponent by log(2) [0.69314718f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3286 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3287 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3288 | getF32Constant(DAG, 0x3f317218)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3289 | |
| 3290 | // Get the significand and build it into a floating-point number with |
| 3291 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3292 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3293 | |
| 3294 | if (LimitFloatPrecision <= 6) { |
| 3295 | // For floating-point precision of 6: |
| 3296 | // |
| 3297 | // LogofMantissa = |
| 3298 | // -1.1609546f + |
| 3299 | // (1.4034025f - 0.23903021f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3300 | // |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3301 | // error 0.0034276066, which is better than 8 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3302 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3303 | getF32Constant(DAG, 0xbe74c456)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3304 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3305 | getF32Constant(DAG, 0x3fb3a2b1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3306 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3307 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3308 | getF32Constant(DAG, 0x3f949a29)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3309 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3310 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3311 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3312 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3313 | // For floating-point precision of 12: |
| 3314 | // |
| 3315 | // LogOfMantissa = |
| 3316 | // -1.7417939f + |
| 3317 | // (2.8212026f + |
| 3318 | // (-1.4699568f + |
| 3319 | // (0.44717955f - 0.56570851e-1f * x) * x) * x) * x; |
| 3320 | // |
| 3321 | // error 0.000061011436, which is 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3322 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3323 | getF32Constant(DAG, 0xbd67b6d6)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3324 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3325 | getF32Constant(DAG, 0x3ee4f4b8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3326 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3327 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3328 | getF32Constant(DAG, 0x3fbc278b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3329 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3330 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3331 | getF32Constant(DAG, 0x40348e95)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3332 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3333 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3334 | getF32Constant(DAG, 0x3fdef31a)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3335 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3336 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3337 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3338 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3339 | // For floating-point precision of 18: |
| 3340 | // |
| 3341 | // LogOfMantissa = |
| 3342 | // -2.1072184f + |
| 3343 | // (4.2372794f + |
| 3344 | // (-3.7029485f + |
| 3345 | // (2.2781945f + |
| 3346 | // (-0.87823314f + |
| 3347 | // (0.19073739f - 0.17809712e-1f * x) * x) * x) * x) * x)*x; |
| 3348 | // |
| 3349 | // error 0.0000023660568, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3350 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3351 | getF32Constant(DAG, 0xbc91e5ac)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3352 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3353 | getF32Constant(DAG, 0x3e4350aa)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3354 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3355 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3356 | getF32Constant(DAG, 0x3f60d3e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3357 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3358 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3359 | getF32Constant(DAG, 0x4011cdf0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3360 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3361 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3362 | getF32Constant(DAG, 0x406cfd1c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3363 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3364 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3365 | getF32Constant(DAG, 0x408797cb)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3366 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3367 | SDValue LogOfMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3368 | getF32Constant(DAG, 0x4006dcab)); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3369 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3370 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3371 | MVT::f32, LogOfExponent, LogOfMantissa); |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3372 | } |
| 3373 | } else { |
| 3374 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3375 | result = DAG.getNode(ISD::FLOG, dl, |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3376 | getValue(I.getOperand(1)).getValueType(), |
| 3377 | getValue(I.getOperand(1))); |
| 3378 | } |
| 3379 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3380 | setValue(&I, result); |
| 3381 | } |
| 3382 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3383 | /// visitLog2 - Lower a log2 intrinsic. Handles the special sequences for |
| 3384 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3385 | void |
| 3386 | SelectionDAGLowering::visitLog2(CallInst &I) { |
| 3387 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3388 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3389 | |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3390 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3391 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3392 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3393 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3394 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3395 | // Get the exponent. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3396 | SDValue LogOfExponent = GetExponent(DAG, Op1, TLI, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3397 | |
| 3398 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3399 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3400 | SDValue X = GetSignificand(DAG, Op1, dl); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3401 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3402 | // Different possible minimax approximations of significand in |
| 3403 | // floating-point for various degrees of accuracy over [1,2]. |
| 3404 | if (LimitFloatPrecision <= 6) { |
| 3405 | // For floating-point precision of 6: |
| 3406 | // |
| 3407 | // Log2ofMantissa = -1.6749035f + (2.0246817f - .34484768f * x) * x; |
| 3408 | // |
| 3409 | // error 0.0049451742, which is more than 7 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3410 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3411 | getF32Constant(DAG, 0xbeb08fe0)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3412 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3413 | getF32Constant(DAG, 0x40019463)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3414 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3415 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3416 | getF32Constant(DAG, 0x3fd6633d)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3417 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3418 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3419 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3420 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3421 | // For floating-point precision of 12: |
| 3422 | // |
| 3423 | // Log2ofMantissa = |
| 3424 | // -2.51285454f + |
| 3425 | // (4.07009056f + |
| 3426 | // (-2.12067489f + |
| 3427 | // (.645142248f - 0.816157886e-1f * x) * x) * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3428 | // |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3429 | // error 0.0000876136000, which is better than 13 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3430 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3431 | getF32Constant(DAG, 0xbda7262e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3432 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3433 | getF32Constant(DAG, 0x3f25280b)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3434 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3435 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3436 | getF32Constant(DAG, 0x4007b923)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3437 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3438 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3439 | getF32Constant(DAG, 0x40823e2f)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3440 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3441 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3442 | getF32Constant(DAG, 0x4020d29c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3443 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3444 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3445 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3446 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3447 | // For floating-point precision of 18: |
| 3448 | // |
| 3449 | // Log2ofMantissa = |
| 3450 | // -3.0400495f + |
| 3451 | // (6.1129976f + |
| 3452 | // (-5.3420409f + |
| 3453 | // (3.2865683f + |
| 3454 | // (-1.2669343f + |
| 3455 | // (0.27515199f - |
| 3456 | // 0.25691327e-1f * x) * x) * x) * x) * x) * x; |
| 3457 | // |
| 3458 | // error 0.0000018516, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3459 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3460 | getF32Constant(DAG, 0xbcd2769e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3461 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3462 | getF32Constant(DAG, 0x3e8ce0b9)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3463 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3464 | SDValue t3 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3465 | getF32Constant(DAG, 0x3fa22ae7)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3466 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3467 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3468 | getF32Constant(DAG, 0x40525723)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3469 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3470 | SDValue t7 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3471 | getF32Constant(DAG, 0x40aaf200)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3472 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3473 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3474 | getF32Constant(DAG, 0x40c39dad)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3475 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3476 | SDValue Log2ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3477 | getF32Constant(DAG, 0x4042902c)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3478 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3479 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3480 | MVT::f32, LogOfExponent, Log2ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3481 | } |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3482 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3483 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3484 | result = DAG.getNode(ISD::FLOG2, dl, |
Dale Johannesen | 853244f | 2008-09-05 23:49:37 +0000 | [diff] [blame] | 3485 | getValue(I.getOperand(1)).getValueType(), |
| 3486 | getValue(I.getOperand(1))); |
| 3487 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3488 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3489 | setValue(&I, result); |
| 3490 | } |
| 3491 | |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3492 | /// visitLog10 - Lower a log10 intrinsic. Handles the special sequences for |
| 3493 | /// limited-precision mode. |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3494 | void |
| 3495 | SelectionDAGLowering::visitLog10(CallInst &I) { |
| 3496 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3497 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 3498 | |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3499 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3500 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3501 | SDValue Op = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3502 | SDValue Op1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Op); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3503 | |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3504 | // Scale the exponent by log10(2) [0.30102999f]. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3505 | SDValue Exp = GetExponent(DAG, Op1, TLI, dl); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3506 | SDValue LogOfExponent = DAG.getNode(ISD::FMUL, dl, MVT::f32, Exp, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3507 | getF32Constant(DAG, 0x3e9a209a)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3508 | |
| 3509 | // Get the significand and build it into a floating-point number with |
Bill Wendling | 3915025 | 2008-09-09 20:39:27 +0000 | [diff] [blame] | 3510 | // exponent of 1. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3511 | SDValue X = GetSignificand(DAG, Op1, dl); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3512 | |
| 3513 | if (LimitFloatPrecision <= 6) { |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3514 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3515 | // |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3516 | // Log10ofMantissa = |
| 3517 | // -0.50419619f + |
| 3518 | // (0.60948995f - 0.10380950f * x) * x; |
| 3519 | // |
| 3520 | // error 0.0014886165, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3521 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3522 | getF32Constant(DAG, 0xbdd49a13)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3523 | SDValue t1 = DAG.getNode(ISD::FADD, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3524 | getF32Constant(DAG, 0x3f1c0789)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3525 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3526 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3527 | getF32Constant(DAG, 0x3f011300)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3528 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3529 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3530 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3531 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3532 | // For floating-point precision of 12: |
| 3533 | // |
| 3534 | // Log10ofMantissa = |
| 3535 | // -0.64831180f + |
| 3536 | // (0.91751397f + |
| 3537 | // (-0.31664806f + 0.47637168e-1f * x) * x) * x; |
| 3538 | // |
| 3539 | // error 0.00019228036, which is better than 12 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3540 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3541 | getF32Constant(DAG, 0x3d431f31)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3542 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3543 | getF32Constant(DAG, 0x3ea21fb2)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3544 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3545 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3546 | getF32Constant(DAG, 0x3f6ae232)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3547 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3548 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3549 | getF32Constant(DAG, 0x3f25f7c3)); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3550 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3551 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3552 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3553 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3554 | // For floating-point precision of 18: |
| 3555 | // |
| 3556 | // Log10ofMantissa = |
| 3557 | // -0.84299375f + |
| 3558 | // (1.5327582f + |
| 3559 | // (-1.0688956f + |
| 3560 | // (0.49102474f + |
| 3561 | // (-0.12539807f + 0.13508273e-1f * x) * x) * x) * x) * x; |
| 3562 | // |
| 3563 | // error 0.0000037995730, which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3564 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3565 | getF32Constant(DAG, 0x3c5d51ce)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3566 | SDValue t1 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3567 | getF32Constant(DAG, 0x3e00685a)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3568 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t1, X); |
| 3569 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3570 | getF32Constant(DAG, 0x3efb6798)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3571 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3572 | SDValue t5 = DAG.getNode(ISD::FSUB, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3573 | getF32Constant(DAG, 0x3f88d192)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3574 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3575 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3576 | getF32Constant(DAG, 0x3fc4316c)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3577 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3578 | SDValue Log10ofMantissa = DAG.getNode(ISD::FSUB, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3579 | getF32Constant(DAG, 0x3f57ce70)); |
Bill Wendling | bd297bc | 2008-09-09 18:42:23 +0000 | [diff] [blame] | 3580 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3581 | result = DAG.getNode(ISD::FADD, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3582 | MVT::f32, LogOfExponent, Log10ofMantissa); |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3583 | } |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3584 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3585 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3586 | result = DAG.getNode(ISD::FLOG10, dl, |
Dale Johannesen | 852680a | 2008-09-05 21:27:19 +0000 | [diff] [blame] | 3587 | getValue(I.getOperand(1)).getValueType(), |
| 3588 | getValue(I.getOperand(1))); |
| 3589 | } |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3590 | |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 3591 | setValue(&I, result); |
| 3592 | } |
| 3593 | |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3594 | /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for |
| 3595 | /// limited-precision mode. |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3596 | void |
| 3597 | SelectionDAGLowering::visitExp2(CallInst &I) { |
| 3598 | SDValue result; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3599 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3600 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3601 | if (getValue(I.getOperand(1)).getValueType() == MVT::f32 && |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3602 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3603 | SDValue Op = getValue(I.getOperand(1)); |
| 3604 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3605 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, Op); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3606 | |
| 3607 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3608 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3609 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, Op, t1); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3610 | |
| 3611 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3612 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3613 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3614 | |
| 3615 | if (LimitFloatPrecision <= 6) { |
| 3616 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3617 | // |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3618 | // TwoToFractionalPartOfX = |
| 3619 | // 0.997535578f + |
| 3620 | // (0.735607626f + 0.252464424f * x) * x; |
| 3621 | // |
| 3622 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3623 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3624 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3625 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3626 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3627 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3628 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3629 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3630 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3631 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3632 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3633 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3634 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3635 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3636 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3637 | // For floating-point precision of 12: |
| 3638 | // |
| 3639 | // TwoToFractionalPartOfX = |
| 3640 | // 0.999892986f + |
| 3641 | // (0.696457318f + |
| 3642 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3643 | // |
| 3644 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3645 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3646 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3647 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3648 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3649 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3650 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3651 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3652 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3653 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3654 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3655 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3656 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3657 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3658 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3659 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3660 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3661 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3662 | // For floating-point precision of 18: |
| 3663 | // |
| 3664 | // TwoToFractionalPartOfX = |
| 3665 | // 0.999999982f + |
| 3666 | // (0.693148872f + |
| 3667 | // (0.240227044f + |
| 3668 | // (0.554906021e-1f + |
| 3669 | // (0.961591928e-2f + |
| 3670 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3671 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3672 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3673 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3674 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3675 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3676 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3677 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3678 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3679 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3680 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3681 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3682 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3683 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3684 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3685 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3686 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3687 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3688 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3689 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3690 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3691 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3692 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3693 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3694 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3695 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3696 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3697 | } |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3698 | } else { |
Bill Wendling | 3eb5940 | 2008-09-09 00:28:24 +0000 | [diff] [blame] | 3699 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3700 | result = DAG.getNode(ISD::FEXP2, dl, |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3701 | getValue(I.getOperand(1)).getValueType(), |
| 3702 | getValue(I.getOperand(1))); |
| 3703 | } |
Bill Wendling | e10c814 | 2008-09-09 22:39:21 +0000 | [diff] [blame] | 3704 | |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 3705 | setValue(&I, result); |
| 3706 | } |
| 3707 | |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3708 | /// visitPow - Lower a pow intrinsic. Handles the special sequences for |
| 3709 | /// limited-precision mode with x == 10.0f. |
| 3710 | void |
| 3711 | SelectionDAGLowering::visitPow(CallInst &I) { |
| 3712 | SDValue result; |
| 3713 | Value *Val = I.getOperand(1); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3714 | DebugLoc dl = getCurDebugLoc(); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3715 | bool IsExp10 = false; |
| 3716 | |
| 3717 | if (getValue(Val).getValueType() == MVT::f32 && |
Bill Wendling | 277fc24 | 2008-09-10 00:24:59 +0000 | [diff] [blame] | 3718 | getValue(I.getOperand(2)).getValueType() == MVT::f32 && |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3719 | LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3720 | if (Constant *C = const_cast<Constant*>(dyn_cast<Constant>(Val))) { |
| 3721 | if (ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { |
| 3722 | APFloat Ten(10.0f); |
| 3723 | IsExp10 = CFP->getValueAPF().bitwiseIsEqual(Ten); |
| 3724 | } |
| 3725 | } |
| 3726 | } |
| 3727 | |
| 3728 | if (IsExp10 && LimitFloatPrecision > 0 && LimitFloatPrecision <= 18) { |
| 3729 | SDValue Op = getValue(I.getOperand(2)); |
| 3730 | |
| 3731 | // Put the exponent in the right bit position for later addition to the |
| 3732 | // final result: |
| 3733 | // |
| 3734 | // #define LOG2OF10 3.3219281f |
| 3735 | // IntegerPartOfX = (int32_t)(x * LOG2OF10); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3736 | SDValue t0 = DAG.getNode(ISD::FMUL, dl, MVT::f32, Op, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3737 | getF32Constant(DAG, 0x40549a78)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3738 | SDValue IntegerPartOfX = DAG.getNode(ISD::FP_TO_SINT, dl, MVT::i32, t0); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3739 | |
| 3740 | // FractionalPartOfX = x - (float)IntegerPartOfX; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3741 | SDValue t1 = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, IntegerPartOfX); |
| 3742 | SDValue X = DAG.getNode(ISD::FSUB, dl, MVT::f32, t0, t1); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3743 | |
| 3744 | // IntegerPartOfX <<= 23; |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3745 | IntegerPartOfX = DAG.getNode(ISD::SHL, dl, MVT::i32, IntegerPartOfX, |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 3746 | DAG.getConstant(23, TLI.getPointerTy())); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3747 | |
| 3748 | if (LimitFloatPrecision <= 6) { |
| 3749 | // For floating-point precision of 6: |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3750 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3751 | // twoToFractionalPartOfX = |
| 3752 | // 0.997535578f + |
| 3753 | // (0.735607626f + 0.252464424f * x) * x; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 3754 | // |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3755 | // error 0.0144103317, which is 6 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3756 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3757 | getF32Constant(DAG, 0x3e814304)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3758 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3759 | getF32Constant(DAG, 0x3f3c50c8)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3760 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3761 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3762 | getF32Constant(DAG, 0x3f7f5e7e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3763 | SDValue t6 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t5); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3764 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3765 | DAG.getNode(ISD::ADD, dl, MVT::i32, t6, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3766 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3767 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
| 3768 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3769 | } else if (LimitFloatPrecision > 6 && LimitFloatPrecision <= 12) { |
| 3770 | // For floating-point precision of 12: |
| 3771 | // |
| 3772 | // TwoToFractionalPartOfX = |
| 3773 | // 0.999892986f + |
| 3774 | // (0.696457318f + |
| 3775 | // (0.224338339f + 0.792043434e-1f * x) * x) * x; |
| 3776 | // |
| 3777 | // error 0.000107046256, which is 13 to 14 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3778 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3779 | getF32Constant(DAG, 0x3da235e3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3780 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3781 | getF32Constant(DAG, 0x3e65b8f3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3782 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3783 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3784 | getF32Constant(DAG, 0x3f324b07)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3785 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3786 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3787 | getF32Constant(DAG, 0x3f7ff8fd)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3788 | SDValue t8 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t7); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3789 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3790 | DAG.getNode(ISD::ADD, dl, MVT::i32, t8, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3791 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3792 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3793 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3794 | } else { // LimitFloatPrecision > 12 && LimitFloatPrecision <= 18 |
| 3795 | // For floating-point precision of 18: |
| 3796 | // |
| 3797 | // TwoToFractionalPartOfX = |
| 3798 | // 0.999999982f + |
| 3799 | // (0.693148872f + |
| 3800 | // (0.240227044f + |
| 3801 | // (0.554906021e-1f + |
| 3802 | // (0.961591928e-2f + |
| 3803 | // (0.136028312e-2f + 0.157059148e-3f *x)*x)*x)*x)*x)*x; |
| 3804 | // error 2.47208000*10^(-7), which is better than 18 bits |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3805 | SDValue t2 = DAG.getNode(ISD::FMUL, dl, MVT::f32, X, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3806 | getF32Constant(DAG, 0x3924b03e)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3807 | SDValue t3 = DAG.getNode(ISD::FADD, dl, MVT::f32, t2, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3808 | getF32Constant(DAG, 0x3ab24b87)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3809 | SDValue t4 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t3, X); |
| 3810 | SDValue t5 = DAG.getNode(ISD::FADD, dl, MVT::f32, t4, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3811 | getF32Constant(DAG, 0x3c1d8c17)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3812 | SDValue t6 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t5, X); |
| 3813 | SDValue t7 = DAG.getNode(ISD::FADD, dl, MVT::f32, t6, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3814 | getF32Constant(DAG, 0x3d634a1d)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3815 | SDValue t8 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t7, X); |
| 3816 | SDValue t9 = DAG.getNode(ISD::FADD, dl, MVT::f32, t8, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3817 | getF32Constant(DAG, 0x3e75fe14)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3818 | SDValue t10 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t9, X); |
| 3819 | SDValue t11 = DAG.getNode(ISD::FADD, dl, MVT::f32, t10, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3820 | getF32Constant(DAG, 0x3f317234)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3821 | SDValue t12 = DAG.getNode(ISD::FMUL, dl, MVT::f32, t11, X); |
| 3822 | SDValue t13 = DAG.getNode(ISD::FADD, dl, MVT::f32, t12, |
Bill Wendling | cd4c73a | 2008-09-22 00:44:35 +0000 | [diff] [blame] | 3823 | getF32Constant(DAG, 0x3f800000)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3824 | SDValue t14 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, t13); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3825 | SDValue TwoToFractionalPartOfX = |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3826 | DAG.getNode(ISD::ADD, dl, MVT::i32, t14, IntegerPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3827 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3828 | result = DAG.getNode(ISD::BIT_CONVERT, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3829 | MVT::f32, TwoToFractionalPartOfX); |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3830 | } |
| 3831 | } else { |
| 3832 | // No special expansion. |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3833 | result = DAG.getNode(ISD::FPOW, dl, |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 3834 | getValue(I.getOperand(1)).getValueType(), |
| 3835 | getValue(I.getOperand(1)), |
| 3836 | getValue(I.getOperand(2))); |
| 3837 | } |
| 3838 | |
| 3839 | setValue(&I, result); |
| 3840 | } |
| 3841 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3842 | /// visitIntrinsicCall - Lower the call to the specified intrinsic function. If |
| 3843 | /// we want to emit this as a call to a named external function, return the name |
| 3844 | /// otherwise lower it and return null. |
| 3845 | const char * |
| 3846 | SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3847 | DebugLoc dl = getCurDebugLoc(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3848 | switch (Intrinsic) { |
| 3849 | default: |
| 3850 | // By default, turn this into a target intrinsic node. |
| 3851 | visitTargetIntrinsic(I, Intrinsic); |
| 3852 | return 0; |
| 3853 | case Intrinsic::vastart: visitVAStart(I); return 0; |
| 3854 | case Intrinsic::vaend: visitVAEnd(I); return 0; |
| 3855 | case Intrinsic::vacopy: visitVACopy(I); return 0; |
| 3856 | case Intrinsic::returnaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3857 | setValue(&I, DAG.getNode(ISD::RETURNADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3858 | getValue(I.getOperand(1)))); |
| 3859 | return 0; |
Bill Wendling | d5d8191 | 2008-09-26 22:10:44 +0000 | [diff] [blame] | 3860 | case Intrinsic::frameaddress: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3861 | setValue(&I, DAG.getNode(ISD::FRAMEADDR, dl, TLI.getPointerTy(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3862 | getValue(I.getOperand(1)))); |
| 3863 | return 0; |
| 3864 | case Intrinsic::setjmp: |
| 3865 | return "_setjmp"+!TLI.usesUnderscoreSetJmp(); |
| 3866 | break; |
| 3867 | case Intrinsic::longjmp: |
| 3868 | return "_longjmp"+!TLI.usesUnderscoreLongJmp(); |
| 3869 | break; |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3870 | case Intrinsic::memcpy: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3871 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3872 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3873 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3874 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3875 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3876 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3877 | return 0; |
| 3878 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3879 | case Intrinsic::memset: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3880 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3881 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3882 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3883 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3884 | DAG.setRoot(DAG.getMemset(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3885 | I.getOperand(1), 0)); |
| 3886 | return 0; |
| 3887 | } |
Chris Lattner | 824b958 | 2008-11-21 16:42:48 +0000 | [diff] [blame] | 3888 | case Intrinsic::memmove: { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3889 | SDValue Op1 = getValue(I.getOperand(1)); |
| 3890 | SDValue Op2 = getValue(I.getOperand(2)); |
| 3891 | SDValue Op3 = getValue(I.getOperand(3)); |
| 3892 | unsigned Align = cast<ConstantInt>(I.getOperand(4))->getZExtValue(); |
| 3893 | |
| 3894 | // If the source and destination are known to not be aliases, we can |
| 3895 | // lower memmove as memcpy. |
| 3896 | uint64_t Size = -1ULL; |
| 3897 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op3)) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3898 | Size = C->getZExtValue(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3899 | if (AA->alias(I.getOperand(1), Size, I.getOperand(2), Size) == |
| 3900 | AliasAnalysis::NoAlias) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3901 | DAG.setRoot(DAG.getMemcpy(getRoot(), dl, Op1, Op2, Op3, Align, false, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3902 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3903 | return 0; |
| 3904 | } |
| 3905 | |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 3906 | DAG.setRoot(DAG.getMemmove(getRoot(), dl, Op1, Op2, Op3, Align, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3907 | I.getOperand(1), 0, I.getOperand(2), 0)); |
| 3908 | return 0; |
| 3909 | } |
| 3910 | case Intrinsic::dbg_stoppoint: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3911 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3912 | DbgStopPointInst &SPI = cast<DbgStopPointInst>(I); |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 3913 | if (DW && DW->ValidDebugInfo(SPI.getContext(), Fast)) { |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3914 | MachineFunction &MF = DAG.getMachineFunction(); |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 3915 | if (Fast) |
Dale Johannesen | beaec4c | 2009-03-25 17:36:08 +0000 | [diff] [blame] | 3916 | DAG.setRoot(DAG.getDbgStopPoint(getRoot(), |
| 3917 | SPI.getLine(), |
| 3918 | SPI.getColumn(), |
| 3919 | SPI.getContext())); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3920 | DICompileUnit CU(cast<GlobalVariable>(SPI.getContext())); |
Bill Wendling | 0582ae9 | 2009-03-13 04:39:26 +0000 | [diff] [blame] | 3921 | std::string Dir, FN; |
| 3922 | unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir), |
| 3923 | CU.getFilename(FN)); |
Evan Cheng | e3d4232 | 2009-02-25 07:04:34 +0000 | [diff] [blame] | 3924 | unsigned idx = MF.getOrCreateDebugLocID(SrcFile, |
| 3925 | SPI.getLine(), SPI.getColumn()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 3926 | setCurDebugLoc(DebugLoc::get(idx)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 3927 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3928 | return 0; |
| 3929 | } |
| 3930 | case Intrinsic::dbg_region_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3931 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3932 | DbgRegionStartInst &RSI = cast<DbgRegionStartInst>(I); |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 3933 | if (DW && DW->ValidDebugInfo(RSI.getContext(), Fast)) { |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3934 | unsigned LabelID = |
| 3935 | DW->RecordRegionStart(cast<GlobalVariable>(RSI.getContext())); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3936 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3937 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3938 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3939 | |
| 3940 | return 0; |
| 3941 | } |
| 3942 | case Intrinsic::dbg_region_end: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3943 | DwarfWriter *DW = DAG.getDwarfWriter(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3944 | DbgRegionEndInst &REI = cast<DbgRegionEndInst>(I); |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 3945 | if (DW && DW->ValidDebugInfo(REI.getContext(), Fast)) { |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3946 | |
| 3947 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3948 | DISubprogram Subprogram(cast<GlobalVariable>(REI.getContext())); |
| 3949 | std::string SPName; |
| 3950 | Subprogram.getLinkageName(SPName); |
| 3951 | if (!SPName.empty() |
| 3952 | && strcmp(SPName.c_str(), MF.getFunction()->getNameStart())) { |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3953 | // This is end of inlined function. Debugging information for |
| 3954 | // inlined function is not handled yet (only supported by FastISel). |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 3955 | if (Fast) { |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3956 | unsigned ID = DW->RecordInlinedFnEnd(Subprogram); |
| 3957 | if (ID != 0) |
Devang Patel | 02f8c41 | 2009-04-16 17:55:30 +0000 | [diff] [blame] | 3958 | // Returned ID is 0 if this is unbalanced "end of inlined |
| 3959 | // scope". This could happen if optimizer eats dbg intrinsics |
| 3960 | // or "beginning of inlined scope" is not recoginized due to |
| 3961 | // missing location info. In such cases, do ignore this region.end. |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3962 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3963 | getRoot(), ID)); |
| 3964 | } |
Devang Patel | 0f7fef3 | 2009-04-13 17:02:03 +0000 | [diff] [blame] | 3965 | return 0; |
| 3966 | } |
| 3967 | |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3968 | unsigned LabelID = |
| 3969 | DW->RecordRegionEnd(cast<GlobalVariable>(REI.getContext())); |
Devang Patel | 48c7fa2 | 2009-04-13 18:13:16 +0000 | [diff] [blame] | 3970 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 3971 | getRoot(), LabelID)); |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 3972 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3973 | |
| 3974 | return 0; |
| 3975 | } |
| 3976 | case Intrinsic::dbg_func_start: { |
Devang Patel | 83489bb | 2009-01-13 00:35:13 +0000 | [diff] [blame] | 3977 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 3978 | if (!DW) return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 3979 | DbgFuncStartInst &FSI = cast<DbgFuncStartInst>(I); |
| 3980 | Value *SP = FSI.getSubprogram(); |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 3981 | if (SP && DW->ValidDebugInfo(SP, Fast)) { |
| 3982 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3983 | if (Fast) { |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 3984 | // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is what |
| 3985 | // (most?) gdb expects. |
| 3986 | DebugLoc PrevLoc = CurDebugLoc; |
| 3987 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 3988 | DICompileUnit CompileUnit = Subprogram.getCompileUnit(); |
| 3989 | std::string Dir, FN; |
| 3990 | unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir), |
| 3991 | CompileUnit.getFilename(FN)); |
| 3992 | |
| 3993 | if (!Subprogram.describes(MF.getFunction())) { |
| 3994 | // This is a beginning of an inlined function. |
| 3995 | |
Devang Patel | 02f8c41 | 2009-04-16 17:55:30 +0000 | [diff] [blame] | 3996 | // If llvm.dbg.func.start is seen in a new block before any |
| 3997 | // llvm.dbg.stoppoint intrinsic then the location info is unknown. |
| 3998 | // FIXME : Why DebugLoc is reset at the beginning of each block ? |
| 3999 | if (PrevLoc.isUnknown()) |
| 4000 | return 0; |
| 4001 | |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 4002 | // Record the source line. |
| 4003 | unsigned Line = Subprogram.getLineNumber(); |
| 4004 | unsigned LabelID = DW->RecordSourceLine(Line, 0, SrcFile); |
| 4005 | setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0))); |
| 4006 | |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 4007 | DAG.setRoot(DAG.getLabel(ISD::DBG_LABEL, getCurDebugLoc(), |
| 4008 | getRoot(), LabelID)); |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 4009 | DebugLocTuple PrevLocTpl = MF.getDebugLocTuple(PrevLoc); |
| 4010 | DW->RecordInlinedFnStart(&FSI, Subprogram, LabelID, |
| 4011 | PrevLocTpl.Src, |
| 4012 | PrevLocTpl.Line, |
| 4013 | PrevLocTpl.Col); |
| 4014 | } else { |
| 4015 | // Record the source line. |
| 4016 | unsigned Line = Subprogram.getLineNumber(); |
| 4017 | setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0))); |
Devang Patel | 906caf2 | 2009-04-16 15:07:09 +0000 | [diff] [blame] | 4018 | DW->RecordSourceLine(Line, 0, SrcFile); |
Devang Patel | 16f2ffd | 2009-04-16 02:33:41 +0000 | [diff] [blame] | 4019 | // llvm.dbg.func_start also defines beginning of function scope. |
| 4020 | DW->RecordRegionStart(cast<GlobalVariable>(FSI.getSubprogram())); |
| 4021 | } |
| 4022 | } else { |
| 4023 | DISubprogram Subprogram(cast<GlobalVariable>(SP)); |
| 4024 | |
| 4025 | std::string SPName; |
| 4026 | Subprogram.getLinkageName(SPName); |
| 4027 | if (!SPName.empty() |
| 4028 | && strcmp(SPName.c_str(), MF.getFunction()->getNameStart())) { |
| 4029 | // This is beginning of inlined function. Debugging information for |
| 4030 | // inlined function is not handled yet (only supported by FastISel). |
| 4031 | return 0; |
| 4032 | } |
| 4033 | |
| 4034 | // llvm.dbg.func.start implicitly defines a dbg_stoppoint which is |
| 4035 | // what (most?) gdb expects. |
| 4036 | DICompileUnit CompileUnit = Subprogram.getCompileUnit(); |
| 4037 | std::string Dir, FN; |
| 4038 | unsigned SrcFile = DW->getOrCreateSourceID(CompileUnit.getDirectory(Dir), |
| 4039 | CompileUnit.getFilename(FN)); |
| 4040 | |
| 4041 | // Record the source line but does not create a label for the normal |
| 4042 | // function start. It will be emitted at asm emission time. However, |
| 4043 | // create a label if this is a beginning of inlined function. |
| 4044 | unsigned Line = Subprogram.getLineNumber(); |
| 4045 | setCurDebugLoc(DebugLoc::get(MF.getOrCreateDebugLocID(SrcFile, Line, 0))); |
| 4046 | // FIXME - Start new region because llvm.dbg.func_start also defines |
| 4047 | // beginning of function scope. |
| 4048 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4049 | } |
| 4050 | |
| 4051 | return 0; |
| 4052 | } |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 4053 | case Intrinsic::dbg_declare: { |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 4054 | if (Fast) { |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 4055 | DwarfWriter *DW = DAG.getDwarfWriter(); |
| 4056 | DbgDeclareInst &DI = cast<DbgDeclareInst>(I); |
| 4057 | Value *Variable = DI.getVariable(); |
Bill Wendling | c69d56f | 2009-04-28 01:04:53 +0000 | [diff] [blame] | 4058 | if (DW && DW->ValidDebugInfo(Variable, Fast)) |
Bill Wendling | 86e6cb9 | 2009-02-17 01:04:54 +0000 | [diff] [blame] | 4059 | DAG.setRoot(DAG.getNode(ISD::DECLARE, dl, MVT::Other, getRoot(), |
| 4060 | getValue(DI.getAddress()), getValue(Variable))); |
| 4061 | } else { |
| 4062 | // FIXME: Do something sensible here when we support debug declare. |
| 4063 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4064 | return 0; |
Bill Wendling | 92c1e12 | 2009-02-13 02:16:35 +0000 | [diff] [blame] | 4065 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4066 | case Intrinsic::eh_exception: { |
| 4067 | if (!CurMBB->isLandingPad()) { |
| 4068 | // FIXME: Mark exception register as live in. Hack for PR1508. |
| 4069 | unsigned Reg = TLI.getExceptionAddressRegister(); |
| 4070 | if (Reg) CurMBB->addLiveIn(Reg); |
| 4071 | } |
| 4072 | // Insert the EXCEPTIONADDR instruction. |
| 4073 | SDVTList VTs = DAG.getVTList(TLI.getPointerTy(), MVT::Other); |
| 4074 | SDValue Ops[1]; |
| 4075 | Ops[0] = DAG.getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4076 | SDValue Op = DAG.getNode(ISD::EXCEPTIONADDR, dl, VTs, Ops, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4077 | setValue(&I, Op); |
| 4078 | DAG.setRoot(Op.getValue(1)); |
| 4079 | return 0; |
| 4080 | } |
| 4081 | |
| 4082 | case Intrinsic::eh_selector_i32: |
| 4083 | case Intrinsic::eh_selector_i64: { |
| 4084 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4085 | MVT VT = (Intrinsic == Intrinsic::eh_selector_i32 ? |
| 4086 | MVT::i32 : MVT::i64); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4087 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4088 | if (MMI) { |
| 4089 | if (CurMBB->isLandingPad()) |
| 4090 | AddCatchInfo(I, MMI, CurMBB); |
| 4091 | else { |
| 4092 | #ifndef NDEBUG |
| 4093 | FuncInfo.CatchInfoLost.insert(&I); |
| 4094 | #endif |
| 4095 | // FIXME: Mark exception selector register as live in. Hack for PR1508. |
| 4096 | unsigned Reg = TLI.getExceptionSelectorRegister(); |
| 4097 | if (Reg) CurMBB->addLiveIn(Reg); |
| 4098 | } |
| 4099 | |
| 4100 | // Insert the EHSELECTION instruction. |
| 4101 | SDVTList VTs = DAG.getVTList(VT, MVT::Other); |
| 4102 | SDValue Ops[2]; |
| 4103 | Ops[0] = getValue(I.getOperand(1)); |
| 4104 | Ops[1] = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4105 | SDValue Op = DAG.getNode(ISD::EHSELECTION, dl, VTs, Ops, 2); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4106 | setValue(&I, Op); |
| 4107 | DAG.setRoot(Op.getValue(1)); |
| 4108 | } else { |
| 4109 | setValue(&I, DAG.getConstant(0, VT)); |
| 4110 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4111 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4112 | return 0; |
| 4113 | } |
| 4114 | |
| 4115 | case Intrinsic::eh_typeid_for_i32: |
| 4116 | case Intrinsic::eh_typeid_for_i64: { |
| 4117 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4118 | MVT VT = (Intrinsic == Intrinsic::eh_typeid_for_i32 ? |
| 4119 | MVT::i32 : MVT::i64); |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4120 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4121 | if (MMI) { |
| 4122 | // Find the type id for the given typeinfo. |
| 4123 | GlobalVariable *GV = ExtractTypeInfo(I.getOperand(1)); |
| 4124 | |
| 4125 | unsigned TypeID = MMI->getTypeIDFor(GV); |
| 4126 | setValue(&I, DAG.getConstant(TypeID, VT)); |
| 4127 | } else { |
| 4128 | // Return something different to eh_selector. |
| 4129 | setValue(&I, DAG.getConstant(1, VT)); |
| 4130 | } |
| 4131 | |
| 4132 | return 0; |
| 4133 | } |
| 4134 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4135 | case Intrinsic::eh_return_i32: |
| 4136 | case Intrinsic::eh_return_i64: |
| 4137 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4138 | MMI->setCallsEHReturn(true); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4139 | DAG.setRoot(DAG.getNode(ISD::EH_RETURN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4140 | MVT::Other, |
| 4141 | getControlRoot(), |
| 4142 | getValue(I.getOperand(1)), |
| 4143 | getValue(I.getOperand(2)))); |
| 4144 | } else { |
| 4145 | setValue(&I, DAG.getConstant(0, TLI.getPointerTy())); |
| 4146 | } |
| 4147 | |
| 4148 | return 0; |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4149 | case Intrinsic::eh_unwind_init: |
| 4150 | if (MachineModuleInfo *MMI = DAG.getMachineModuleInfo()) { |
| 4151 | MMI->setCallsUnwindInit(true); |
| 4152 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4153 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4154 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4155 | |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4156 | case Intrinsic::eh_dwarf_cfa: { |
| 4157 | MVT VT = getValue(I.getOperand(1)).getValueType(); |
| 4158 | SDValue CfaArg; |
| 4159 | if (VT.bitsGT(TLI.getPointerTy())) |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4160 | CfaArg = DAG.getNode(ISD::TRUNCATE, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4161 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
| 4162 | else |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4163 | CfaArg = DAG.getNode(ISD::SIGN_EXTEND, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4164 | TLI.getPointerTy(), getValue(I.getOperand(1))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4165 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4166 | SDValue Offset = DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4167 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4168 | DAG.getNode(ISD::FRAME_TO_ARGS_OFFSET, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4169 | TLI.getPointerTy()), |
| 4170 | CfaArg); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4171 | setValue(&I, DAG.getNode(ISD::ADD, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4172 | TLI.getPointerTy(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4173 | DAG.getNode(ISD::FRAMEADDR, dl, |
Anton Korobeynikov | a0e8a1e | 2008-09-08 21:13:56 +0000 | [diff] [blame] | 4174 | TLI.getPointerTy(), |
| 4175 | DAG.getConstant(0, |
| 4176 | TLI.getPointerTy())), |
| 4177 | Offset)); |
| 4178 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4179 | } |
| 4180 | |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4181 | case Intrinsic::convertff: |
| 4182 | case Intrinsic::convertfsi: |
| 4183 | case Intrinsic::convertfui: |
| 4184 | case Intrinsic::convertsif: |
| 4185 | case Intrinsic::convertuif: |
| 4186 | case Intrinsic::convertss: |
| 4187 | case Intrinsic::convertsu: |
| 4188 | case Intrinsic::convertus: |
| 4189 | case Intrinsic::convertuu: { |
| 4190 | ISD::CvtCode Code = ISD::CVT_INVALID; |
| 4191 | switch (Intrinsic) { |
| 4192 | case Intrinsic::convertff: Code = ISD::CVT_FF; break; |
| 4193 | case Intrinsic::convertfsi: Code = ISD::CVT_FS; break; |
| 4194 | case Intrinsic::convertfui: Code = ISD::CVT_FU; break; |
| 4195 | case Intrinsic::convertsif: Code = ISD::CVT_SF; break; |
| 4196 | case Intrinsic::convertuif: Code = ISD::CVT_UF; break; |
| 4197 | case Intrinsic::convertss: Code = ISD::CVT_SS; break; |
| 4198 | case Intrinsic::convertsu: Code = ISD::CVT_SU; break; |
| 4199 | case Intrinsic::convertus: Code = ISD::CVT_US; break; |
| 4200 | case Intrinsic::convertuu: Code = ISD::CVT_UU; break; |
| 4201 | } |
| 4202 | MVT DestVT = TLI.getValueType(I.getType()); |
| 4203 | Value* Op1 = I.getOperand(1); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4204 | setValue(&I, DAG.getConvertRndSat(DestVT, getCurDebugLoc(), getValue(Op1), |
Mon P Wang | 77cdf30 | 2008-11-10 20:54:11 +0000 | [diff] [blame] | 4205 | DAG.getValueType(DestVT), |
| 4206 | DAG.getValueType(getValue(Op1).getValueType()), |
| 4207 | getValue(I.getOperand(2)), |
| 4208 | getValue(I.getOperand(3)), |
| 4209 | Code)); |
| 4210 | return 0; |
| 4211 | } |
| 4212 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4213 | case Intrinsic::sqrt: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4214 | setValue(&I, DAG.getNode(ISD::FSQRT, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4215 | getValue(I.getOperand(1)).getValueType(), |
| 4216 | getValue(I.getOperand(1)))); |
| 4217 | return 0; |
| 4218 | case Intrinsic::powi: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4219 | setValue(&I, DAG.getNode(ISD::FPOWI, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4220 | getValue(I.getOperand(1)).getValueType(), |
| 4221 | getValue(I.getOperand(1)), |
| 4222 | getValue(I.getOperand(2)))); |
| 4223 | return 0; |
| 4224 | case Intrinsic::sin: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4225 | setValue(&I, DAG.getNode(ISD::FSIN, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4226 | getValue(I.getOperand(1)).getValueType(), |
| 4227 | getValue(I.getOperand(1)))); |
| 4228 | return 0; |
| 4229 | case Intrinsic::cos: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4230 | setValue(&I, DAG.getNode(ISD::FCOS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4231 | getValue(I.getOperand(1)).getValueType(), |
| 4232 | getValue(I.getOperand(1)))); |
| 4233 | return 0; |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4234 | case Intrinsic::log: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4235 | visitLog(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4236 | return 0; |
| 4237 | case Intrinsic::log2: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4238 | visitLog2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4239 | return 0; |
| 4240 | case Intrinsic::log10: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4241 | visitLog10(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4242 | return 0; |
| 4243 | case Intrinsic::exp: |
Dale Johannesen | 59e577f | 2008-09-05 18:38:42 +0000 | [diff] [blame] | 4244 | visitExp(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4245 | return 0; |
| 4246 | case Intrinsic::exp2: |
Dale Johannesen | 601d3c0 | 2008-09-05 01:48:15 +0000 | [diff] [blame] | 4247 | visitExp2(I); |
Dale Johannesen | 7794f2a | 2008-09-04 00:47:13 +0000 | [diff] [blame] | 4248 | return 0; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4249 | case Intrinsic::pow: |
Bill Wendling | aeb5c7b | 2008-09-10 00:20:20 +0000 | [diff] [blame] | 4250 | visitPow(I); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4251 | return 0; |
| 4252 | case Intrinsic::pcmarker: { |
| 4253 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4254 | DAG.setRoot(DAG.getNode(ISD::PCMARKER, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4255 | return 0; |
| 4256 | } |
| 4257 | case Intrinsic::readcyclecounter: { |
| 4258 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4259 | SDValue Tmp = DAG.getNode(ISD::READCYCLECOUNTER, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4260 | DAG.getVTList(MVT::i64, MVT::Other), |
| 4261 | &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4262 | setValue(&I, Tmp); |
| 4263 | DAG.setRoot(Tmp.getValue(1)); |
| 4264 | return 0; |
| 4265 | } |
| 4266 | case Intrinsic::part_select: { |
| 4267 | // Currently not implemented: just abort |
| 4268 | assert(0 && "part_select intrinsic not implemented"); |
| 4269 | abort(); |
| 4270 | } |
| 4271 | case Intrinsic::part_set: { |
| 4272 | // Currently not implemented: just abort |
| 4273 | assert(0 && "part_set intrinsic not implemented"); |
| 4274 | abort(); |
| 4275 | } |
| 4276 | case Intrinsic::bswap: |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4277 | setValue(&I, DAG.getNode(ISD::BSWAP, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4278 | getValue(I.getOperand(1)).getValueType(), |
| 4279 | getValue(I.getOperand(1)))); |
| 4280 | return 0; |
| 4281 | case Intrinsic::cttz: { |
| 4282 | SDValue Arg = getValue(I.getOperand(1)); |
| 4283 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4284 | SDValue result = DAG.getNode(ISD::CTTZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4285 | setValue(&I, result); |
| 4286 | return 0; |
| 4287 | } |
| 4288 | case Intrinsic::ctlz: { |
| 4289 | SDValue Arg = getValue(I.getOperand(1)); |
| 4290 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4291 | SDValue result = DAG.getNode(ISD::CTLZ, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4292 | setValue(&I, result); |
| 4293 | return 0; |
| 4294 | } |
| 4295 | case Intrinsic::ctpop: { |
| 4296 | SDValue Arg = getValue(I.getOperand(1)); |
| 4297 | MVT Ty = Arg.getValueType(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4298 | SDValue result = DAG.getNode(ISD::CTPOP, dl, Ty, Arg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4299 | setValue(&I, result); |
| 4300 | return 0; |
| 4301 | } |
| 4302 | case Intrinsic::stacksave: { |
| 4303 | SDValue Op = getRoot(); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4304 | SDValue Tmp = DAG.getNode(ISD::STACKSAVE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4305 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), &Op, 1); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4306 | setValue(&I, Tmp); |
| 4307 | DAG.setRoot(Tmp.getValue(1)); |
| 4308 | return 0; |
| 4309 | } |
| 4310 | case Intrinsic::stackrestore: { |
| 4311 | SDValue Tmp = getValue(I.getOperand(1)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4312 | DAG.setRoot(DAG.getNode(ISD::STACKRESTORE, dl, MVT::Other, getRoot(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4313 | return 0; |
| 4314 | } |
Bill Wendling | 5734450 | 2008-11-18 11:01:33 +0000 | [diff] [blame] | 4315 | case Intrinsic::stackprotector: { |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4316 | // Emit code into the DAG to store the stack guard onto the stack. |
| 4317 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4318 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
| 4319 | MVT PtrTy = TLI.getPointerTy(); |
| 4320 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4321 | SDValue Src = getValue(I.getOperand(1)); // The guard's value. |
| 4322 | AllocaInst *Slot = cast<AllocaInst>(I.getOperand(2)); |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4323 | |
Bill Wendling | b7c6ebc | 2008-11-07 01:23:58 +0000 | [diff] [blame] | 4324 | int FI = FuncInfo.StaticAllocaMap[Slot]; |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4325 | MFI->setStackProtectorIndex(FI); |
| 4326 | |
| 4327 | SDValue FIN = DAG.getFrameIndex(FI, PtrTy); |
| 4328 | |
| 4329 | // Store the stack protector onto the stack. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4330 | SDValue Result = DAG.getStore(getRoot(), getCurDebugLoc(), Src, FIN, |
Bill Wendling | b2a4298 | 2008-11-06 02:29:10 +0000 | [diff] [blame] | 4331 | PseudoSourceValue::getFixedStack(FI), |
| 4332 | 0, true); |
| 4333 | setValue(&I, Result); |
| 4334 | DAG.setRoot(Result); |
| 4335 | return 0; |
| 4336 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4337 | case Intrinsic::var_annotation: |
| 4338 | // Discard annotate attributes |
| 4339 | return 0; |
| 4340 | |
| 4341 | case Intrinsic::init_trampoline: { |
| 4342 | const Function *F = cast<Function>(I.getOperand(2)->stripPointerCasts()); |
| 4343 | |
| 4344 | SDValue Ops[6]; |
| 4345 | Ops[0] = getRoot(); |
| 4346 | Ops[1] = getValue(I.getOperand(1)); |
| 4347 | Ops[2] = getValue(I.getOperand(2)); |
| 4348 | Ops[3] = getValue(I.getOperand(3)); |
| 4349 | Ops[4] = DAG.getSrcValue(I.getOperand(1)); |
| 4350 | Ops[5] = DAG.getSrcValue(F); |
| 4351 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4352 | SDValue Tmp = DAG.getNode(ISD::TRAMPOLINE, dl, |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4353 | DAG.getVTList(TLI.getPointerTy(), MVT::Other), |
| 4354 | Ops, 6); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4355 | |
| 4356 | setValue(&I, Tmp); |
| 4357 | DAG.setRoot(Tmp.getValue(1)); |
| 4358 | return 0; |
| 4359 | } |
| 4360 | |
| 4361 | case Intrinsic::gcroot: |
| 4362 | if (GFI) { |
| 4363 | Value *Alloca = I.getOperand(1); |
| 4364 | Constant *TypeMap = cast<Constant>(I.getOperand(2)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4365 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4366 | FrameIndexSDNode *FI = cast<FrameIndexSDNode>(getValue(Alloca).getNode()); |
| 4367 | GFI->addStackRoot(FI->getIndex(), TypeMap); |
| 4368 | } |
| 4369 | return 0; |
| 4370 | |
| 4371 | case Intrinsic::gcread: |
| 4372 | case Intrinsic::gcwrite: |
| 4373 | assert(0 && "GC failed to lower gcread/gcwrite intrinsics!"); |
| 4374 | return 0; |
| 4375 | |
| 4376 | case Intrinsic::flt_rounds: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4377 | setValue(&I, DAG.getNode(ISD::FLT_ROUNDS_, dl, MVT::i32)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4378 | return 0; |
| 4379 | } |
| 4380 | |
| 4381 | case Intrinsic::trap: { |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4382 | DAG.setRoot(DAG.getNode(ISD::TRAP, dl,MVT::Other, getRoot())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4383 | return 0; |
| 4384 | } |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4385 | |
Bill Wendling | ef37546 | 2008-11-21 02:38:44 +0000 | [diff] [blame] | 4386 | case Intrinsic::uadd_with_overflow: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 4387 | return implVisitAluOverflow(I, ISD::UADDO); |
| 4388 | case Intrinsic::sadd_with_overflow: |
| 4389 | return implVisitAluOverflow(I, ISD::SADDO); |
| 4390 | case Intrinsic::usub_with_overflow: |
| 4391 | return implVisitAluOverflow(I, ISD::USUBO); |
| 4392 | case Intrinsic::ssub_with_overflow: |
| 4393 | return implVisitAluOverflow(I, ISD::SSUBO); |
| 4394 | case Intrinsic::umul_with_overflow: |
| 4395 | return implVisitAluOverflow(I, ISD::UMULO); |
| 4396 | case Intrinsic::smul_with_overflow: |
| 4397 | return implVisitAluOverflow(I, ISD::SMULO); |
Bill Wendling | 7cdc3c8 | 2008-11-21 02:03:52 +0000 | [diff] [blame] | 4398 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4399 | case Intrinsic::prefetch: { |
| 4400 | SDValue Ops[4]; |
| 4401 | Ops[0] = getRoot(); |
| 4402 | Ops[1] = getValue(I.getOperand(1)); |
| 4403 | Ops[2] = getValue(I.getOperand(2)); |
| 4404 | Ops[3] = getValue(I.getOperand(3)); |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4405 | DAG.setRoot(DAG.getNode(ISD::PREFETCH, dl, MVT::Other, &Ops[0], 4)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4406 | return 0; |
| 4407 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4408 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4409 | case Intrinsic::memory_barrier: { |
| 4410 | SDValue Ops[6]; |
| 4411 | Ops[0] = getRoot(); |
| 4412 | for (int x = 1; x < 6; ++x) |
| 4413 | Ops[x] = getValue(I.getOperand(x)); |
| 4414 | |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4415 | DAG.setRoot(DAG.getNode(ISD::MEMBARRIER, dl, MVT::Other, &Ops[0], 6)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4416 | return 0; |
| 4417 | } |
| 4418 | case Intrinsic::atomic_cmp_swap: { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4419 | SDValue Root = getRoot(); |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4420 | SDValue L = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4421 | DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, getCurDebugLoc(), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4422 | getValue(I.getOperand(2)).getValueType().getSimpleVT(), |
| 4423 | Root, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4424 | getValue(I.getOperand(1)), |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4425 | getValue(I.getOperand(2)), |
| 4426 | getValue(I.getOperand(3)), |
| 4427 | I.getOperand(1)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4428 | setValue(&I, L); |
| 4429 | DAG.setRoot(L.getValue(1)); |
| 4430 | return 0; |
| 4431 | } |
| 4432 | case Intrinsic::atomic_load_add: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4433 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_ADD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4434 | case Intrinsic::atomic_load_sub: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4435 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_SUB); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4436 | case Intrinsic::atomic_load_or: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4437 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_OR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4438 | case Intrinsic::atomic_load_xor: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4439 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_XOR); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4440 | case Intrinsic::atomic_load_and: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4441 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_AND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4442 | case Intrinsic::atomic_load_nand: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4443 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_NAND); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4444 | case Intrinsic::atomic_load_max: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4445 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4446 | case Intrinsic::atomic_load_min: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4447 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_MIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4448 | case Intrinsic::atomic_load_umin: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4449 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMIN); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4450 | case Intrinsic::atomic_load_umax: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4451 | return implVisitBinaryAtomic(I, ISD::ATOMIC_LOAD_UMAX); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4452 | case Intrinsic::atomic_swap: |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 4453 | return implVisitBinaryAtomic(I, ISD::ATOMIC_SWAP); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4454 | } |
| 4455 | } |
| 4456 | |
| 4457 | |
| 4458 | void SelectionDAGLowering::LowerCallTo(CallSite CS, SDValue Callee, |
| 4459 | bool IsTailCall, |
| 4460 | MachineBasicBlock *LandingPad) { |
| 4461 | const PointerType *PT = cast<PointerType>(CS.getCalledValue()->getType()); |
| 4462 | const FunctionType *FTy = cast<FunctionType>(PT->getElementType()); |
| 4463 | MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); |
| 4464 | unsigned BeginLabel = 0, EndLabel = 0; |
| 4465 | |
| 4466 | TargetLowering::ArgListTy Args; |
| 4467 | TargetLowering::ArgListEntry Entry; |
| 4468 | Args.reserve(CS.arg_size()); |
| 4469 | for (CallSite::arg_iterator i = CS.arg_begin(), e = CS.arg_end(); |
| 4470 | i != e; ++i) { |
| 4471 | SDValue ArgNode = getValue(*i); |
| 4472 | Entry.Node = ArgNode; Entry.Ty = (*i)->getType(); |
| 4473 | |
| 4474 | unsigned attrInd = i - CS.arg_begin() + 1; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4475 | Entry.isSExt = CS.paramHasAttr(attrInd, Attribute::SExt); |
| 4476 | Entry.isZExt = CS.paramHasAttr(attrInd, Attribute::ZExt); |
| 4477 | Entry.isInReg = CS.paramHasAttr(attrInd, Attribute::InReg); |
| 4478 | Entry.isSRet = CS.paramHasAttr(attrInd, Attribute::StructRet); |
| 4479 | Entry.isNest = CS.paramHasAttr(attrInd, Attribute::Nest); |
| 4480 | Entry.isByVal = CS.paramHasAttr(attrInd, Attribute::ByVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4481 | Entry.Alignment = CS.getParamAlignment(attrInd); |
| 4482 | Args.push_back(Entry); |
| 4483 | } |
| 4484 | |
| 4485 | if (LandingPad && MMI) { |
| 4486 | // Insert a label before the invoke call to mark the try range. This can be |
| 4487 | // used to detect deletion of the invoke via the MachineModuleInfo. |
| 4488 | BeginLabel = MMI->NextLabelID(); |
| 4489 | // Both PendingLoads and PendingExports must be flushed here; |
| 4490 | // this call might not return. |
| 4491 | (void)getRoot(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4492 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4493 | getControlRoot(), BeginLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4494 | } |
| 4495 | |
| 4496 | std::pair<SDValue,SDValue> Result = |
| 4497 | TLI.LowerCallTo(getRoot(), CS.getType(), |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 4498 | CS.paramHasAttr(0, Attribute::SExt), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 4499 | CS.paramHasAttr(0, Attribute::ZExt), FTy->isVarArg(), |
| 4500 | CS.paramHasAttr(0, Attribute::InReg), |
| 4501 | CS.getCallingConv(), |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 4502 | IsTailCall && PerformTailCallOpt, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4503 | Callee, Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4504 | if (CS.getType() != Type::VoidTy) |
| 4505 | setValue(CS.getInstruction(), Result.first); |
| 4506 | DAG.setRoot(Result.second); |
| 4507 | |
| 4508 | if (LandingPad && MMI) { |
| 4509 | // Insert a label at the end of the invoke call to mark the try range. This |
| 4510 | // can be used to detect deletion of the invoke via the MachineModuleInfo. |
| 4511 | EndLabel = MMI->NextLabelID(); |
Dale Johannesen | 8ad9b43 | 2009-02-04 01:17:06 +0000 | [diff] [blame] | 4512 | DAG.setRoot(DAG.getLabel(ISD::EH_LABEL, getCurDebugLoc(), |
| 4513 | getRoot(), EndLabel)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4514 | |
| 4515 | // Inform MachineModuleInfo of range. |
| 4516 | MMI->addInvoke(LandingPad, BeginLabel, EndLabel); |
| 4517 | } |
| 4518 | } |
| 4519 | |
| 4520 | |
| 4521 | void SelectionDAGLowering::visitCall(CallInst &I) { |
| 4522 | const char *RenameFn = 0; |
| 4523 | if (Function *F = I.getCalledFunction()) { |
| 4524 | if (F->isDeclaration()) { |
Dale Johannesen | 49de982 | 2009-02-05 01:49:45 +0000 | [diff] [blame] | 4525 | const TargetIntrinsicInfo *II = TLI.getTargetMachine().getIntrinsicInfo(); |
| 4526 | if (II) { |
| 4527 | if (unsigned IID = II->getIntrinsicID(F)) { |
| 4528 | RenameFn = visitIntrinsicCall(I, IID); |
| 4529 | if (!RenameFn) |
| 4530 | return; |
| 4531 | } |
| 4532 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4533 | if (unsigned IID = F->getIntrinsicID()) { |
| 4534 | RenameFn = visitIntrinsicCall(I, IID); |
| 4535 | if (!RenameFn) |
| 4536 | return; |
| 4537 | } |
| 4538 | } |
| 4539 | |
| 4540 | // Check for well-known libc/libm calls. If the function is internal, it |
| 4541 | // can't be a library call. |
| 4542 | unsigned NameLen = F->getNameLen(); |
Rafael Espindola | bb46f52 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 4543 | if (!F->hasLocalLinkage() && NameLen) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4544 | const char *NameStr = F->getNameStart(); |
| 4545 | if (NameStr[0] == 'c' && |
| 4546 | ((NameLen == 8 && !strcmp(NameStr, "copysign")) || |
| 4547 | (NameLen == 9 && !strcmp(NameStr, "copysignf")))) { |
| 4548 | if (I.getNumOperands() == 3 && // Basic sanity checks. |
| 4549 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4550 | I.getType() == I.getOperand(1)->getType() && |
| 4551 | I.getType() == I.getOperand(2)->getType()) { |
| 4552 | SDValue LHS = getValue(I.getOperand(1)); |
| 4553 | SDValue RHS = getValue(I.getOperand(2)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4554 | setValue(&I, DAG.getNode(ISD::FCOPYSIGN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4555 | LHS.getValueType(), LHS, RHS)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4556 | return; |
| 4557 | } |
| 4558 | } else if (NameStr[0] == 'f' && |
| 4559 | ((NameLen == 4 && !strcmp(NameStr, "fabs")) || |
| 4560 | (NameLen == 5 && !strcmp(NameStr, "fabsf")) || |
| 4561 | (NameLen == 5 && !strcmp(NameStr, "fabsl")))) { |
| 4562 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4563 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4564 | I.getType() == I.getOperand(1)->getType()) { |
| 4565 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4566 | setValue(&I, DAG.getNode(ISD::FABS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4567 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4568 | return; |
| 4569 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4570 | } else if (NameStr[0] == 's' && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4571 | ((NameLen == 3 && !strcmp(NameStr, "sin")) || |
| 4572 | (NameLen == 4 && !strcmp(NameStr, "sinf")) || |
| 4573 | (NameLen == 4 && !strcmp(NameStr, "sinl")))) { |
| 4574 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4575 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4576 | I.getType() == I.getOperand(1)->getType()) { |
| 4577 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4578 | setValue(&I, DAG.getNode(ISD::FSIN, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4579 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4580 | return; |
| 4581 | } |
| 4582 | } else if (NameStr[0] == 'c' && |
| 4583 | ((NameLen == 3 && !strcmp(NameStr, "cos")) || |
| 4584 | (NameLen == 4 && !strcmp(NameStr, "cosf")) || |
| 4585 | (NameLen == 4 && !strcmp(NameStr, "cosl")))) { |
| 4586 | if (I.getNumOperands() == 2 && // Basic sanity checks. |
| 4587 | I.getOperand(1)->getType()->isFloatingPoint() && |
| 4588 | I.getType() == I.getOperand(1)->getType()) { |
| 4589 | SDValue Tmp = getValue(I.getOperand(1)); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4590 | setValue(&I, DAG.getNode(ISD::FCOS, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4591 | Tmp.getValueType(), Tmp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4592 | return; |
| 4593 | } |
| 4594 | } |
| 4595 | } |
| 4596 | } else if (isa<InlineAsm>(I.getOperand(0))) { |
| 4597 | visitInlineAsm(&I); |
| 4598 | return; |
| 4599 | } |
| 4600 | |
| 4601 | SDValue Callee; |
| 4602 | if (!RenameFn) |
| 4603 | Callee = getValue(I.getOperand(0)); |
| 4604 | else |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 4605 | Callee = DAG.getExternalSymbol(RenameFn, TLI.getPointerTy()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4606 | |
| 4607 | LowerCallTo(&I, Callee, I.isTailCall()); |
| 4608 | } |
| 4609 | |
| 4610 | |
| 4611 | /// getCopyFromRegs - Emit a series of CopyFromReg nodes that copies from |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4612 | /// this value and returns the result as a ValueVT value. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4613 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4614 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4615 | SDValue RegsForValue::getCopyFromRegs(SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4616 | SDValue &Chain, |
| 4617 | SDValue *Flag) const { |
| 4618 | // Assemble the legal parts into the final values. |
| 4619 | SmallVector<SDValue, 4> Values(ValueVTs.size()); |
| 4620 | SmallVector<SDValue, 8> Parts; |
| 4621 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4622 | // Copy the legal parts from the registers. |
| 4623 | MVT ValueVT = ValueVTs[Value]; |
| 4624 | unsigned NumRegs = TLI->getNumRegisters(ValueVT); |
| 4625 | MVT RegisterVT = RegVTs[Value]; |
| 4626 | |
| 4627 | Parts.resize(NumRegs); |
| 4628 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4629 | SDValue P; |
| 4630 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4631 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4632 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4633 | P = DAG.getCopyFromReg(Chain, dl, Regs[Part+i], RegisterVT, *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4634 | *Flag = P.getValue(2); |
| 4635 | } |
| 4636 | Chain = P.getValue(1); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4637 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4638 | // If the source register was virtual and if we know something about it, |
| 4639 | // add an assert node. |
| 4640 | if (TargetRegisterInfo::isVirtualRegister(Regs[Part+i]) && |
| 4641 | RegisterVT.isInteger() && !RegisterVT.isVector()) { |
| 4642 | unsigned SlotNo = Regs[Part+i]-TargetRegisterInfo::FirstVirtualRegister; |
| 4643 | FunctionLoweringInfo &FLI = DAG.getFunctionLoweringInfo(); |
| 4644 | if (FLI.LiveOutRegInfo.size() > SlotNo) { |
| 4645 | FunctionLoweringInfo::LiveOutInfo &LOI = FLI.LiveOutRegInfo[SlotNo]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4646 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4647 | unsigned RegSize = RegisterVT.getSizeInBits(); |
| 4648 | unsigned NumSignBits = LOI.NumSignBits; |
| 4649 | unsigned NumZeroBits = LOI.KnownZero.countLeadingOnes(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4650 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4651 | // FIXME: We capture more information than the dag can represent. For |
| 4652 | // now, just use the tightest assertzext/assertsext possible. |
| 4653 | bool isSExt = true; |
| 4654 | MVT FromVT(MVT::Other); |
| 4655 | if (NumSignBits == RegSize) |
| 4656 | isSExt = true, FromVT = MVT::i1; // ASSERT SEXT 1 |
| 4657 | else if (NumZeroBits >= RegSize-1) |
| 4658 | isSExt = false, FromVT = MVT::i1; // ASSERT ZEXT 1 |
| 4659 | else if (NumSignBits > RegSize-8) |
| 4660 | isSExt = true, FromVT = MVT::i8; // ASSERT SEXT 8 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4661 | else if (NumZeroBits >= RegSize-8) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4662 | isSExt = false, FromVT = MVT::i8; // ASSERT ZEXT 8 |
| 4663 | else if (NumSignBits > RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4664 | isSExt = true, FromVT = MVT::i16; // ASSERT SEXT 16 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4665 | else if (NumZeroBits >= RegSize-16) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4666 | isSExt = false, FromVT = MVT::i16; // ASSERT ZEXT 16 |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4667 | else if (NumSignBits > RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4668 | isSExt = true, FromVT = MVT::i32; // ASSERT SEXT 32 |
Dan Gohman | 07c26ee | 2009-03-31 01:38:29 +0000 | [diff] [blame] | 4669 | else if (NumZeroBits >= RegSize-32) |
Bill Wendling | 181b627 | 2008-10-19 20:34:04 +0000 | [diff] [blame] | 4670 | isSExt = false, FromVT = MVT::i32; // ASSERT ZEXT 32 |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4671 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4672 | if (FromVT != MVT::Other) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4673 | P = DAG.getNode(isSExt ? ISD::AssertSext : ISD::AssertZext, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4674 | RegisterVT, P, DAG.getValueType(FromVT)); |
| 4675 | |
| 4676 | } |
| 4677 | } |
| 4678 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4679 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4680 | Parts[i] = P; |
| 4681 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4682 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4683 | Values[Value] = getCopyFromParts(DAG, dl, Parts.begin(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4684 | NumRegs, RegisterVT, ValueVT); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4685 | Part += NumRegs; |
| 4686 | Parts.clear(); |
| 4687 | } |
| 4688 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4689 | return DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 4690 | DAG.getVTList(&ValueVTs[0], ValueVTs.size()), |
| 4691 | &Values[0], ValueVTs.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4692 | } |
| 4693 | |
| 4694 | /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4695 | /// specified value into the registers specified by this object. This uses |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4696 | /// Chain/Flag as the input and updates them for the output Chain/Flag. |
| 4697 | /// If the Flag pointer is NULL, no flag is used. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4698 | void RegsForValue::getCopyToRegs(SDValue Val, SelectionDAG &DAG, DebugLoc dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4699 | SDValue &Chain, SDValue *Flag) const { |
| 4700 | // Get the list of the values's legal parts. |
| 4701 | unsigned NumRegs = Regs.size(); |
| 4702 | SmallVector<SDValue, 8> Parts(NumRegs); |
| 4703 | for (unsigned Value = 0, Part = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4704 | MVT ValueVT = ValueVTs[Value]; |
| 4705 | unsigned NumParts = TLI->getNumRegisters(ValueVT); |
| 4706 | MVT RegisterVT = RegVTs[Value]; |
| 4707 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4708 | getCopyToParts(DAG, dl, Val.getValue(Val.getResNo() + Value), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4709 | &Parts[Part], NumParts, RegisterVT); |
| 4710 | Part += NumParts; |
| 4711 | } |
| 4712 | |
| 4713 | // Copy the parts into the registers. |
| 4714 | SmallVector<SDValue, 8> Chains(NumRegs); |
| 4715 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4716 | SDValue Part; |
| 4717 | if (Flag == 0) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4718 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i]); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4719 | else { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 4720 | Part = DAG.getCopyToReg(Chain, dl, Regs[i], Parts[i], *Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4721 | *Flag = Part.getValue(1); |
| 4722 | } |
| 4723 | Chains[i] = Part.getValue(0); |
| 4724 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4725 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4726 | if (NumRegs == 1 || Flag) |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4727 | // 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] | 4728 | // flagged to it. That is the CopyToReg nodes and the user are considered |
| 4729 | // a single scheduling unit. If we create a TokenFactor and return it as |
| 4730 | // chain, then the TokenFactor is both a predecessor (operand) of the |
| 4731 | // user as well as a successor (the TF operands are flagged to the user). |
| 4732 | // c1, f1 = CopyToReg |
| 4733 | // c2, f2 = CopyToReg |
| 4734 | // c3 = TokenFactor c1, c2 |
| 4735 | // ... |
| 4736 | // = op c3, ..., f2 |
| 4737 | Chain = Chains[NumRegs-1]; |
| 4738 | else |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4739 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0], NumRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4740 | } |
| 4741 | |
| 4742 | /// AddInlineAsmOperands - Add this value to the specified inlineasm node |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4743 | /// operand list. This adds the code marker and includes the number of |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4744 | /// values added into it. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4745 | void RegsForValue::AddInlineAsmOperands(unsigned Code, |
| 4746 | bool HasMatching,unsigned MatchingIdx, |
| 4747 | SelectionDAG &DAG, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4748 | std::vector<SDValue> &Ops) const { |
| 4749 | MVT IntPtrTy = DAG.getTargetLoweringInfo().getPointerTy(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 4750 | assert(Regs.size() < (1 << 13) && "Too many inline asm outputs!"); |
| 4751 | unsigned Flag = Code | (Regs.size() << 3); |
| 4752 | if (HasMatching) |
| 4753 | Flag |= 0x80000000 | (MatchingIdx << 16); |
| 4754 | Ops.push_back(DAG.getTargetConstant(Flag, IntPtrTy)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4755 | for (unsigned Value = 0, Reg = 0, e = ValueVTs.size(); Value != e; ++Value) { |
| 4756 | unsigned NumRegs = TLI->getNumRegisters(ValueVTs[Value]); |
| 4757 | MVT RegisterVT = RegVTs[Value]; |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4758 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 4759 | assert(Reg < Regs.size() && "Mismatch in # registers expected"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4760 | Ops.push_back(DAG.getRegister(Regs[Reg++], RegisterVT)); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 4761 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4762 | } |
| 4763 | } |
| 4764 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4765 | /// isAllocatableRegister - If the specified register is safe to allocate, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4766 | /// i.e. it isn't a stack pointer or some other special register, return the |
| 4767 | /// register class for the register. Otherwise, return null. |
| 4768 | static const TargetRegisterClass * |
| 4769 | isAllocatableRegister(unsigned Reg, MachineFunction &MF, |
| 4770 | const TargetLowering &TLI, |
| 4771 | const TargetRegisterInfo *TRI) { |
| 4772 | MVT FoundVT = MVT::Other; |
| 4773 | const TargetRegisterClass *FoundRC = 0; |
| 4774 | for (TargetRegisterInfo::regclass_iterator RCI = TRI->regclass_begin(), |
| 4775 | E = TRI->regclass_end(); RCI != E; ++RCI) { |
| 4776 | MVT ThisVT = MVT::Other; |
| 4777 | |
| 4778 | const TargetRegisterClass *RC = *RCI; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4779 | // 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] | 4780 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
| 4781 | for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end(); |
| 4782 | I != E; ++I) { |
| 4783 | if (TLI.isTypeLegal(*I)) { |
| 4784 | // If we have already found this register in a different register class, |
| 4785 | // choose the one with the largest VT specified. For example, on |
| 4786 | // PowerPC, we favor f64 register classes over f32. |
| 4787 | if (FoundVT == MVT::Other || FoundVT.bitsLT(*I)) { |
| 4788 | ThisVT = *I; |
| 4789 | break; |
| 4790 | } |
| 4791 | } |
| 4792 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4793 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4794 | if (ThisVT == MVT::Other) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4795 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4796 | // NOTE: This isn't ideal. In particular, this might allocate the |
| 4797 | // frame pointer in functions that need it (due to them not being taken |
| 4798 | // out of allocation, because a variable sized allocation hasn't been seen |
| 4799 | // yet). This is a slight code pessimization, but should still work. |
| 4800 | for (TargetRegisterClass::iterator I = RC->allocation_order_begin(MF), |
| 4801 | E = RC->allocation_order_end(MF); I != E; ++I) |
| 4802 | if (*I == Reg) { |
| 4803 | // We found a matching register class. Keep looking at others in case |
| 4804 | // we find one with larger registers that this physreg is also in. |
| 4805 | FoundRC = RC; |
| 4806 | FoundVT = ThisVT; |
| 4807 | break; |
| 4808 | } |
| 4809 | } |
| 4810 | return FoundRC; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4811 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4812 | |
| 4813 | |
| 4814 | namespace llvm { |
| 4815 | /// AsmOperandInfo - This contains information for each constraint that we are |
| 4816 | /// lowering. |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4817 | class VISIBILITY_HIDDEN SDISelAsmOperandInfo : |
Daniel Dunbar | c0c3b9a | 2008-09-10 04:16:29 +0000 | [diff] [blame] | 4818 | public TargetLowering::AsmOperandInfo { |
Cedric Venet | aff9c27 | 2009-02-14 16:06:42 +0000 | [diff] [blame] | 4819 | public: |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4820 | /// CallOperand - If this is the result output operand or a clobber |
| 4821 | /// this is null, otherwise it is the incoming operand to the CallInst. |
| 4822 | /// This gets modified as the asm is processed. |
| 4823 | SDValue CallOperand; |
| 4824 | |
| 4825 | /// AssignedRegs - If this is a register or register class operand, this |
| 4826 | /// contains the set of register corresponding to the operand. |
| 4827 | RegsForValue AssignedRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4828 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4829 | explicit SDISelAsmOperandInfo(const InlineAsm::ConstraintInfo &info) |
| 4830 | : TargetLowering::AsmOperandInfo(info), CallOperand(0,0) { |
| 4831 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4832 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4833 | /// MarkAllocatedRegs - Once AssignedRegs is set, mark the assigned registers |
| 4834 | /// busy in OutputRegs/InputRegs. |
| 4835 | void MarkAllocatedRegs(bool isOutReg, bool isInReg, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4836 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4837 | std::set<unsigned> &InputRegs, |
| 4838 | const TargetRegisterInfo &TRI) const { |
| 4839 | if (isOutReg) { |
| 4840 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4841 | MarkRegAndAliases(AssignedRegs.Regs[i], OutputRegs, TRI); |
| 4842 | } |
| 4843 | if (isInReg) { |
| 4844 | for (unsigned i = 0, e = AssignedRegs.Regs.size(); i != e; ++i) |
| 4845 | MarkRegAndAliases(AssignedRegs.Regs[i], InputRegs, TRI); |
| 4846 | } |
| 4847 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4848 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4849 | /// getCallOperandValMVT - Return the MVT of the Value* that this operand |
| 4850 | /// corresponds to. If there is no Value* for this operand, it returns |
| 4851 | /// MVT::Other. |
| 4852 | MVT getCallOperandValMVT(const TargetLowering &TLI, |
| 4853 | const TargetData *TD) const { |
| 4854 | if (CallOperandVal == 0) return MVT::Other; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4855 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4856 | if (isa<BasicBlock>(CallOperandVal)) |
| 4857 | return TLI.getPointerTy(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4858 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4859 | const llvm::Type *OpTy = CallOperandVal->getType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4860 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4861 | // If this is an indirect operand, the operand is a pointer to the |
| 4862 | // accessed type. |
| 4863 | if (isIndirect) |
| 4864 | OpTy = cast<PointerType>(OpTy)->getElementType(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4865 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4866 | // If OpTy is not a single value, it may be a struct/union that we |
| 4867 | // can tile with integers. |
| 4868 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
| 4869 | unsigned BitSize = TD->getTypeSizeInBits(OpTy); |
| 4870 | switch (BitSize) { |
| 4871 | default: break; |
| 4872 | case 1: |
| 4873 | case 8: |
| 4874 | case 16: |
| 4875 | case 32: |
| 4876 | case 64: |
Chris Lattner | cfc14c1 | 2008-10-17 19:59:51 +0000 | [diff] [blame] | 4877 | case 128: |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4878 | OpTy = IntegerType::get(BitSize); |
| 4879 | break; |
| 4880 | } |
| 4881 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4882 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 4883 | return TLI.getValueType(OpTy, true); |
| 4884 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4885 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4886 | private: |
| 4887 | /// MarkRegAndAliases - Mark the specified register and all aliases in the |
| 4888 | /// specified set. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4889 | static void MarkRegAndAliases(unsigned Reg, std::set<unsigned> &Regs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4890 | const TargetRegisterInfo &TRI) { |
| 4891 | assert(TargetRegisterInfo::isPhysicalRegister(Reg) && "Isn't a physreg"); |
| 4892 | Regs.insert(Reg); |
| 4893 | if (const unsigned *Aliases = TRI.getAliasSet(Reg)) |
| 4894 | for (; *Aliases; ++Aliases) |
| 4895 | Regs.insert(*Aliases); |
| 4896 | } |
| 4897 | }; |
| 4898 | } // end llvm namespace. |
| 4899 | |
| 4900 | |
| 4901 | /// GetRegistersForValue - Assign registers (virtual or physical) for the |
| 4902 | /// specified operand. We prefer to assign virtual registers, to allow the |
| 4903 | /// register allocator handle the assignment process. However, if the asm uses |
| 4904 | /// features that we can't model on machineinstrs, we have SDISel do the |
| 4905 | /// allocation. This produces generally horrible, but correct, code. |
| 4906 | /// |
| 4907 | /// OpInfo describes the operand. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4908 | /// Input and OutputRegs are the set of already allocated physical registers. |
| 4909 | /// |
| 4910 | void SelectionDAGLowering:: |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 4911 | GetRegistersForValue(SDISelAsmOperandInfo &OpInfo, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4912 | std::set<unsigned> &OutputRegs, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4913 | std::set<unsigned> &InputRegs) { |
| 4914 | // Compute whether this value requires an input register, an output register, |
| 4915 | // or both. |
| 4916 | bool isOutReg = false; |
| 4917 | bool isInReg = false; |
| 4918 | switch (OpInfo.Type) { |
| 4919 | case InlineAsm::isOutput: |
| 4920 | isOutReg = true; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4921 | |
| 4922 | // 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] | 4923 | // the input register so no other inputs allocate to it. |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 4924 | isInReg = OpInfo.hasMatchingInput(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4925 | break; |
| 4926 | case InlineAsm::isInput: |
| 4927 | isInReg = true; |
| 4928 | isOutReg = false; |
| 4929 | break; |
| 4930 | case InlineAsm::isClobber: |
| 4931 | isOutReg = true; |
| 4932 | isInReg = true; |
| 4933 | break; |
| 4934 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4935 | |
| 4936 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4937 | MachineFunction &MF = DAG.getMachineFunction(); |
| 4938 | SmallVector<unsigned, 4> Regs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4939 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4940 | // If this is a constraint for a single physreg, or a constraint for a |
| 4941 | // register class, find it. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4942 | std::pair<unsigned, const TargetRegisterClass*> PhysReg = |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4943 | TLI.getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 4944 | OpInfo.ConstraintVT); |
| 4945 | |
| 4946 | unsigned NumRegs = 1; |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4947 | if (OpInfo.ConstraintVT != MVT::Other) { |
| 4948 | // If this is a FP input in an integer register (or visa versa) insert a bit |
| 4949 | // cast of the input value. More generally, handle any case where the input |
| 4950 | // value disagrees with the register class we plan to stick this in. |
| 4951 | if (OpInfo.Type == InlineAsm::isInput && |
| 4952 | PhysReg.second && !PhysReg.second->hasType(OpInfo.ConstraintVT)) { |
| 4953 | // Try to convert to the first MVT that the reg class contains. If the |
| 4954 | // types are identical size, use a bitcast to convert (e.g. two differing |
| 4955 | // vector types). |
| 4956 | MVT RegVT = *PhysReg.second->vt_begin(); |
| 4957 | if (RegVT.getSizeInBits() == OpInfo.ConstraintVT.getSizeInBits()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4958 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4959 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4960 | OpInfo.ConstraintVT = RegVT; |
| 4961 | } else if (RegVT.isInteger() && OpInfo.ConstraintVT.isFloatingPoint()) { |
| 4962 | // If the input is a FP value and we want it in FP registers, do a |
| 4963 | // bitcast to the corresponding integer type. This turns an f64 value |
| 4964 | // into i64, which can be passed with two i32 values on a 32-bit |
| 4965 | // machine. |
| 4966 | RegVT = MVT::getIntegerVT(OpInfo.ConstraintVT.getSizeInBits()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 4967 | OpInfo.CallOperand = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 4968 | RegVT, OpInfo.CallOperand); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4969 | OpInfo.ConstraintVT = RegVT; |
| 4970 | } |
| 4971 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4972 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4973 | NumRegs = TLI.getNumRegisters(OpInfo.ConstraintVT); |
Chris Lattner | 01426e1 | 2008-10-21 00:45:36 +0000 | [diff] [blame] | 4974 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4975 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4976 | MVT RegVT; |
| 4977 | MVT ValueVT = OpInfo.ConstraintVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4978 | |
| 4979 | // If this is a constraint for a specific physical register, like {r17}, |
| 4980 | // assign it now. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4981 | if (unsigned AssignedReg = PhysReg.first) { |
| 4982 | const TargetRegisterClass *RC = PhysReg.second; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4983 | if (OpInfo.ConstraintVT == MVT::Other) |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4984 | ValueVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4985 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4986 | // Get the actual register value type. This is important, because the user |
| 4987 | // may have asked for (e.g.) the AX register in i32 type. We need to |
| 4988 | // remember that AX is actually i16 to get the right extension. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4989 | RegVT = *RC->vt_begin(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 4990 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4991 | // This is a explicit reference to a physical register. |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4992 | Regs.push_back(AssignedReg); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 4993 | |
| 4994 | // If this is an expanded reference, add the rest of the regs to Regs. |
| 4995 | if (NumRegs != 1) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 4996 | TargetRegisterClass::iterator I = RC->begin(); |
| 4997 | for (; *I != AssignedReg; ++I) |
| 4998 | assert(I != RC->end() && "Didn't find reg!"); |
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 | // Already added the first reg. |
| 5001 | --NumRegs; ++I; |
| 5002 | for (; NumRegs; --NumRegs, ++I) { |
Chris Lattner | e2f7bf8 | 2009-03-24 15:27:37 +0000 | [diff] [blame] | 5003 | assert(I != RC->end() && "Ran out of registers to allocate!"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5004 | Regs.push_back(*I); |
| 5005 | } |
| 5006 | } |
| 5007 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 5008 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 5009 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 5010 | return; |
| 5011 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5012 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5013 | // Otherwise, if this was a reference to an LLVM register class, create vregs |
| 5014 | // for this reference. |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 5015 | if (const TargetRegisterClass *RC = PhysReg.second) { |
| 5016 | RegVT = *RC->vt_begin(); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5017 | if (OpInfo.ConstraintVT == MVT::Other) |
| 5018 | ValueVT = RegVT; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5019 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5020 | // Create the appropriate number of virtual registers. |
| 5021 | MachineRegisterInfo &RegInfo = MF.getRegInfo(); |
| 5022 | for (; NumRegs; --NumRegs) |
Chris Lattner | b3b4484 | 2009-03-24 15:25:07 +0000 | [diff] [blame] | 5023 | Regs.push_back(RegInfo.createVirtualRegister(RC)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5024 | |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5025 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, RegVT, ValueVT); |
| 5026 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5027 | } |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 5028 | |
| 5029 | // This is a reference to a register class that doesn't directly correspond |
| 5030 | // to an LLVM register class. Allocate NumRegs consecutive, available, |
| 5031 | // registers from the class. |
| 5032 | std::vector<unsigned> RegClassRegs |
| 5033 | = TLI.getRegClassForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 5034 | OpInfo.ConstraintVT); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5035 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5036 | const TargetRegisterInfo *TRI = DAG.getTarget().getRegisterInfo(); |
| 5037 | unsigned NumAllocated = 0; |
| 5038 | for (unsigned i = 0, e = RegClassRegs.size(); i != e; ++i) { |
| 5039 | unsigned Reg = RegClassRegs[i]; |
| 5040 | // See if this register is available. |
| 5041 | if ((isOutReg && OutputRegs.count(Reg)) || // Already used. |
| 5042 | (isInReg && InputRegs.count(Reg))) { // Already used. |
| 5043 | // Make sure we find consecutive registers. |
| 5044 | NumAllocated = 0; |
| 5045 | continue; |
| 5046 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5047 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5048 | // Check to see if this register is allocatable (i.e. don't give out the |
| 5049 | // stack pointer). |
Chris Lattner | fc9d161 | 2009-03-24 15:22:11 +0000 | [diff] [blame] | 5050 | const TargetRegisterClass *RC = isAllocatableRegister(Reg, MF, TLI, TRI); |
| 5051 | if (!RC) { // Couldn't allocate this register. |
| 5052 | // Reset NumAllocated to make sure we return consecutive registers. |
| 5053 | NumAllocated = 0; |
| 5054 | continue; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 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 | // Okay, this register is good, we can use it. |
| 5058 | ++NumAllocated; |
| 5059 | |
| 5060 | // If we allocated enough consecutive registers, succeed. |
| 5061 | if (NumAllocated == NumRegs) { |
| 5062 | unsigned RegStart = (i-NumAllocated)+1; |
| 5063 | unsigned RegEnd = i+1; |
| 5064 | // Mark all of the allocated registers used. |
| 5065 | for (unsigned i = RegStart; i != RegEnd; ++i) |
| 5066 | Regs.push_back(RegClassRegs[i]); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5067 | |
| 5068 | OpInfo.AssignedRegs = RegsForValue(TLI, Regs, *RC->vt_begin(), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5069 | OpInfo.ConstraintVT); |
| 5070 | OpInfo.MarkAllocatedRegs(isOutReg, isInReg, OutputRegs, InputRegs, *TRI); |
| 5071 | return; |
| 5072 | } |
| 5073 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5074 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5075 | // Otherwise, we couldn't allocate enough registers for this. |
| 5076 | } |
| 5077 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5078 | /// hasInlineAsmMemConstraint - Return true if the inline asm instruction being |
| 5079 | /// processed uses a memory 'm' constraint. |
| 5080 | static bool |
| 5081 | hasInlineAsmMemConstraint(std::vector<InlineAsm::ConstraintInfo> &CInfos, |
Dan Gohman | e9530ec | 2009-01-15 16:58:17 +0000 | [diff] [blame] | 5082 | const TargetLowering &TLI) { |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5083 | for (unsigned i = 0, e = CInfos.size(); i != e; ++i) { |
| 5084 | InlineAsm::ConstraintInfo &CI = CInfos[i]; |
| 5085 | for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) { |
| 5086 | TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); |
| 5087 | if (CType == TargetLowering::C_Memory) |
| 5088 | return true; |
| 5089 | } |
| 5090 | } |
| 5091 | |
| 5092 | return false; |
| 5093 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5094 | |
| 5095 | /// visitInlineAsm - Handle a call to an InlineAsm object. |
| 5096 | /// |
| 5097 | void SelectionDAGLowering::visitInlineAsm(CallSite CS) { |
| 5098 | InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
| 5099 | |
| 5100 | /// ConstraintOperands - Information about all of the constraints. |
| 5101 | std::vector<SDISelAsmOperandInfo> ConstraintOperands; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5102 | |
Dale Johannesen | 97d14fc | 2009-04-18 00:09:40 +0000 | [diff] [blame] | 5103 | // We won't need to flush pending loads if this asm doesn't touch |
| 5104 | // memory and is nonvolatile. |
| 5105 | SDValue Chain = IA->hasSideEffects() ? getRoot() : DAG.getRoot(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5106 | SDValue Flag; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5107 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5108 | std::set<unsigned> OutputRegs, InputRegs; |
| 5109 | |
| 5110 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 5111 | // ConstraintOperands list. |
| 5112 | std::vector<InlineAsm::ConstraintInfo> |
| 5113 | ConstraintInfos = IA->ParseConstraints(); |
| 5114 | |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5115 | bool hasMemory = hasInlineAsmMemConstraint(ConstraintInfos, TLI); |
Dale Johannesen | 97d14fc | 2009-04-18 00:09:40 +0000 | [diff] [blame] | 5116 | // Flush pending loads if this touches memory (includes clobbering it). |
| 5117 | // It's possible this is overly conservative. |
| 5118 | if (hasMemory) |
| 5119 | Chain = getRoot(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5120 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5121 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 5122 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 5123 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5124 | ConstraintOperands.push_back(SDISelAsmOperandInfo(ConstraintInfos[i])); |
| 5125 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands.back(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5126 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5127 | MVT OpVT = MVT::Other; |
| 5128 | |
| 5129 | // Compute the value type for each operand. |
| 5130 | switch (OpInfo.Type) { |
| 5131 | case InlineAsm::isOutput: |
| 5132 | // Indirect outputs just consume an argument. |
| 5133 | if (OpInfo.isIndirect) { |
| 5134 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5135 | break; |
| 5136 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5137 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5138 | // The return value of the call is this value. As such, there is no |
| 5139 | // corresponding argument. |
| 5140 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5141 | if (const StructType *STy = dyn_cast<StructType>(CS.getType())) { |
| 5142 | OpVT = TLI.getValueType(STy->getElementType(ResNo)); |
| 5143 | } else { |
| 5144 | assert(ResNo == 0 && "Asm only has one result!"); |
| 5145 | OpVT = TLI.getValueType(CS.getType()); |
| 5146 | } |
| 5147 | ++ResNo; |
| 5148 | break; |
| 5149 | case InlineAsm::isInput: |
| 5150 | OpInfo.CallOperandVal = CS.getArgument(ArgNo++); |
| 5151 | break; |
| 5152 | case InlineAsm::isClobber: |
| 5153 | // Nothing to do. |
| 5154 | break; |
| 5155 | } |
| 5156 | |
| 5157 | // If this is an input or an indirect output, process the call argument. |
| 5158 | // BasicBlocks are labels, currently appearing only in asm's. |
| 5159 | if (OpInfo.CallOperandVal) { |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5160 | if (BasicBlock *BB = dyn_cast<BasicBlock>(OpInfo.CallOperandVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5161 | OpInfo.CallOperand = DAG.getBasicBlock(FuncInfo.MBBMap[BB]); |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5162 | } else { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5163 | OpInfo.CallOperand = getValue(OpInfo.CallOperandVal); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5164 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5165 | |
Chris Lattner | 81249c9 | 2008-10-17 17:05:25 +0000 | [diff] [blame] | 5166 | OpVT = OpInfo.getCallOperandValMVT(TLI, TD); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5167 | } |
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 | OpInfo.ConstraintVT = OpVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5170 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5171 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5172 | // Second pass over the constraints: compute which constraint option to use |
| 5173 | // and assign registers to constraints that want a specific physreg. |
| 5174 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 5175 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5176 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5177 | // 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] | 5178 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 5179 | // other is floating point, or their sizes are different, flag it as an |
| 5180 | // error. |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5181 | if (OpInfo.hasMatchingInput()) { |
| 5182 | SDISelAsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
| 5183 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5184 | if ((OpInfo.ConstraintVT.isInteger() != |
| 5185 | Input.ConstraintVT.isInteger()) || |
| 5186 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 5187 | Input.ConstraintVT.getSizeInBits())) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5188 | cerr << "llvm: error: Unsupported asm: input constraint with a " |
| 5189 | << "matching output constraint of incompatible type!\n"; |
Evan Cheng | 09dc9c0 | 2008-12-16 18:21:39 +0000 | [diff] [blame] | 5190 | exit(1); |
| 5191 | } |
| 5192 | Input.ConstraintVT = OpInfo.ConstraintVT; |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5193 | } |
| 5194 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5195 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5196 | // Compute the constraint code and ConstraintType to use. |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5197 | TLI.ComputeConstraintToUse(OpInfo, OpInfo.CallOperand, hasMemory, &DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5198 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5199 | // If this is a memory input, and if the operand is not indirect, do what we |
| 5200 | // need to to provide an address for the memory input. |
| 5201 | if (OpInfo.ConstraintType == TargetLowering::C_Memory && |
| 5202 | !OpInfo.isIndirect) { |
| 5203 | assert(OpInfo.Type == InlineAsm::isInput && |
| 5204 | "Can only indirectify direct input operands!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5205 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5206 | // Memory operands really want the address of the value. If we don't have |
| 5207 | // an indirect input, put it in the constpool if we can, otherwise spill |
| 5208 | // it to a stack slot. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5209 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5210 | // If the operand is a float, integer, or vector constant, spill to a |
| 5211 | // constant pool entry to get its address. |
| 5212 | Value *OpVal = OpInfo.CallOperandVal; |
| 5213 | if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || |
| 5214 | isa<ConstantVector>(OpVal)) { |
| 5215 | OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal), |
| 5216 | TLI.getPointerTy()); |
| 5217 | } else { |
| 5218 | // Otherwise, create a stack slot and emit a store to it before the |
| 5219 | // asm. |
| 5220 | const Type *Ty = OpVal->getType(); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5221 | uint64_t TySize = TLI.getTargetData()->getTypePaddedSize(Ty); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5222 | unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty); |
| 5223 | MachineFunction &MF = DAG.getMachineFunction(); |
| 5224 | int SSFI = MF.getFrameInfo()->CreateStackObject(TySize, Align); |
| 5225 | SDValue StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy()); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5226 | Chain = DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5227 | OpInfo.CallOperand, StackSlot, NULL, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5228 | OpInfo.CallOperand = StackSlot; |
| 5229 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5230 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5231 | // There is no longer a Value* corresponding to this operand. |
| 5232 | OpInfo.CallOperandVal = 0; |
| 5233 | // It is now an indirect operand. |
| 5234 | OpInfo.isIndirect = true; |
| 5235 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5236 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5237 | // If this constraint is for a specific register, allocate it before |
| 5238 | // anything else. |
| 5239 | if (OpInfo.ConstraintType == TargetLowering::C_Register) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5240 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5241 | } |
| 5242 | ConstraintInfos.clear(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5243 | |
| 5244 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5245 | // Second pass - Loop over all of the operands, assigning virtual or physregs |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5246 | // to register class operands. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5247 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5248 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5249 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5250 | // C_Register operands have already been allocated, Other/Memory don't need |
| 5251 | // to be. |
| 5252 | if (OpInfo.ConstraintType == TargetLowering::C_RegisterClass) |
Dale Johannesen | 8e3455b | 2008-09-24 23:13:09 +0000 | [diff] [blame] | 5253 | GetRegistersForValue(OpInfo, OutputRegs, InputRegs); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5254 | } |
| 5255 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5256 | // AsmNodeOperands - The operands for the ISD::INLINEASM node. |
| 5257 | std::vector<SDValue> AsmNodeOperands; |
| 5258 | AsmNodeOperands.push_back(SDValue()); // reserve space for input chain |
| 5259 | AsmNodeOperands.push_back( |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 5260 | DAG.getTargetExternalSymbol(IA->getAsmString().c_str(), MVT::Other)); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5261 | |
| 5262 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5263 | // Loop over all of the inputs, copying the operand values into the |
| 5264 | // appropriate registers and processing the output regs. |
| 5265 | RegsForValue RetValRegs; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5266 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5267 | // IndirectStoresToEmit - The set of stores to emit after the inline asm node. |
| 5268 | std::vector<std::pair<RegsForValue, Value*> > IndirectStoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5269 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5270 | for (unsigned i = 0, e = ConstraintOperands.size(); i != e; ++i) { |
| 5271 | SDISelAsmOperandInfo &OpInfo = ConstraintOperands[i]; |
| 5272 | |
| 5273 | switch (OpInfo.Type) { |
| 5274 | case InlineAsm::isOutput: { |
| 5275 | if (OpInfo.ConstraintType != TargetLowering::C_RegisterClass && |
| 5276 | OpInfo.ConstraintType != TargetLowering::C_Register) { |
| 5277 | // Memory output, or 'other' output (e.g. 'X' constraint). |
| 5278 | assert(OpInfo.isIndirect && "Memory output must be indirect operand"); |
| 5279 | |
| 5280 | // Add information to the INLINEASM node to know about this output. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5281 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5282 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5283 | TLI.getPointerTy())); |
| 5284 | AsmNodeOperands.push_back(OpInfo.CallOperand); |
| 5285 | break; |
| 5286 | } |
| 5287 | |
| 5288 | // Otherwise, this is a register or register class output. |
| 5289 | |
| 5290 | // Copy the output from the appropriate register. Find a register that |
| 5291 | // we can use. |
| 5292 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5293 | cerr << "llvm: error: Couldn't allocate output reg for constraint '" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5294 | << OpInfo.ConstraintCode << "'!\n"; |
| 5295 | exit(1); |
| 5296 | } |
| 5297 | |
| 5298 | // If this is an indirect operand, store through the pointer after the |
| 5299 | // asm. |
| 5300 | if (OpInfo.isIndirect) { |
| 5301 | IndirectStoresToEmit.push_back(std::make_pair(OpInfo.AssignedRegs, |
| 5302 | OpInfo.CallOperandVal)); |
| 5303 | } else { |
| 5304 | // This is the result value of the call. |
| 5305 | assert(CS.getType() != Type::VoidTy && "Bad inline asm!"); |
| 5306 | // Concatenate this output onto the outputs list. |
| 5307 | RetValRegs.append(OpInfo.AssignedRegs); |
| 5308 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5309 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5310 | // Add information to the INLINEASM node to know that this register is |
| 5311 | // set. |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5312 | OpInfo.AssignedRegs.AddInlineAsmOperands(OpInfo.isEarlyClobber ? |
| 5313 | 6 /* EARLYCLOBBER REGDEF */ : |
| 5314 | 2 /* REGDEF */ , |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5315 | false, |
| 5316 | 0, |
Dale Johannesen | 913d3df | 2008-09-12 17:49:03 +0000 | [diff] [blame] | 5317 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5318 | break; |
| 5319 | } |
| 5320 | case InlineAsm::isInput: { |
| 5321 | SDValue InOperandVal = OpInfo.CallOperand; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5322 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 5323 | if (OpInfo.isMatchingInputConstraint()) { // Matching constraint? |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5324 | // If this is required to match an output register we have already set, |
| 5325 | // just use its register. |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 5326 | unsigned OperandNo = OpInfo.getMatchedOperand(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5327 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5328 | // Scan until we find the definition we already emitted of this operand. |
| 5329 | // When we find it, create a RegsForValue operand. |
| 5330 | unsigned CurOp = 2; // The first operand. |
| 5331 | for (; OperandNo; --OperandNo) { |
| 5332 | // Advance to the next operand. |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5333 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5334 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5335 | assert(((OpFlag & 7) == 2 /*REGDEF*/ || |
| 5336 | (OpFlag & 7) == 6 /*EARLYCLOBBER REGDEF*/ || |
| 5337 | (OpFlag & 7) == 4 /*MEM*/) && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5338 | "Skipped past definitions?"); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5339 | CurOp += InlineAsm::getNumOperandRegisters(OpFlag)+1; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5340 | } |
| 5341 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5342 | unsigned OpFlag = |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 5343 | cast<ConstantSDNode>(AsmNodeOperands[CurOp])->getZExtValue(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5344 | if ((OpFlag & 7) == 2 /*REGDEF*/ |
| 5345 | || (OpFlag & 7) == 6 /* EARLYCLOBBER REGDEF */) { |
| 5346 | // Add (OpFlag&0xffff)>>3 registers to MatchedRegs. |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5347 | RegsForValue MatchedRegs; |
| 5348 | MatchedRegs.TLI = &TLI; |
| 5349 | MatchedRegs.ValueVTs.push_back(InOperandVal.getValueType()); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5350 | MVT RegVT = AsmNodeOperands[CurOp+1].getValueType(); |
| 5351 | MatchedRegs.RegVTs.push_back(RegVT); |
| 5352 | MachineRegisterInfo &RegInfo = DAG.getMachineFunction().getRegInfo(); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5353 | for (unsigned i = 0, e = InlineAsm::getNumOperandRegisters(OpFlag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5354 | i != e; ++i) |
| 5355 | MatchedRegs.Regs. |
| 5356 | push_back(RegInfo.createVirtualRegister(TLI.getRegClassFor(RegVT))); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5357 | |
| 5358 | // Use the produced MatchedRegs object to |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5359 | MatchedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5360 | Chain, &Flag); |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5361 | MatchedRegs.AddInlineAsmOperands(1 /*REGUSE*/, |
| 5362 | true, OpInfo.getMatchedOperand(), |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5363 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5364 | break; |
| 5365 | } else { |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5366 | assert(((OpFlag & 7) == 4) && "Unknown matching constraint!"); |
| 5367 | assert((InlineAsm::getNumOperandRegisters(OpFlag)) == 1 && |
| 5368 | "Unexpected number of operands"); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5369 | // Add information to the INLINEASM node to know about this input. |
Evan Cheng | fb11288 | 2009-03-23 08:01:15 +0000 | [diff] [blame] | 5370 | // See InlineAsm.h isUseOperandTiedToDef. |
| 5371 | OpFlag |= 0x80000000 | (OpInfo.getMatchedOperand() << 16); |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5372 | AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlag, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5373 | TLI.getPointerTy())); |
| 5374 | AsmNodeOperands.push_back(AsmNodeOperands[CurOp+1]); |
| 5375 | break; |
| 5376 | } |
| 5377 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5378 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5379 | if (OpInfo.ConstraintType == TargetLowering::C_Other) { |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5380 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5381 | "Don't know how to handle indirect other inputs yet!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5382 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5383 | std::vector<SDValue> Ops; |
| 5384 | TLI.LowerAsmOperandForConstraint(InOperandVal, OpInfo.ConstraintCode[0], |
Evan Cheng | da43bcf | 2008-09-24 00:05:32 +0000 | [diff] [blame] | 5385 | hasMemory, Ops, DAG); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5386 | if (Ops.empty()) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5387 | cerr << "llvm: error: Invalid operand for inline asm constraint '" |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5388 | << OpInfo.ConstraintCode << "'!\n"; |
| 5389 | exit(1); |
| 5390 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5391 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5392 | // Add information to the INLINEASM node to know about this input. |
| 5393 | unsigned ResOpType = 3 /*IMM*/ | (Ops.size() << 3); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5394 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5395 | TLI.getPointerTy())); |
| 5396 | AsmNodeOperands.insert(AsmNodeOperands.end(), Ops.begin(), Ops.end()); |
| 5397 | break; |
| 5398 | } else if (OpInfo.ConstraintType == TargetLowering::C_Memory) { |
| 5399 | assert(OpInfo.isIndirect && "Operand must be indirect to be a mem!"); |
| 5400 | assert(InOperandVal.getValueType() == TLI.getPointerTy() && |
| 5401 | "Memory operands expect pointer values"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5402 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5403 | // Add information to the INLINEASM node to know about this input. |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5404 | unsigned ResOpType = 4/*MEM*/ | (1<<3); |
| 5405 | AsmNodeOperands.push_back(DAG.getTargetConstant(ResOpType, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5406 | TLI.getPointerTy())); |
| 5407 | AsmNodeOperands.push_back(InOperandVal); |
| 5408 | break; |
| 5409 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5410 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5411 | assert((OpInfo.ConstraintType == TargetLowering::C_RegisterClass || |
| 5412 | OpInfo.ConstraintType == TargetLowering::C_Register) && |
| 5413 | "Unknown constraint type!"); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5414 | assert(!OpInfo.isIndirect && |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5415 | "Don't know how to handle indirect register inputs yet!"); |
| 5416 | |
| 5417 | // Copy the input into the appropriate registers. |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5418 | if (OpInfo.AssignedRegs.Regs.empty()) { |
Daniel Dunbar | 4cbb173 | 2009-04-13 22:26:09 +0000 | [diff] [blame] | 5419 | cerr << "llvm: error: Couldn't allocate output reg for constraint '" |
Evan Cheng | aa765b8 | 2008-09-25 00:14:04 +0000 | [diff] [blame] | 5420 | << OpInfo.ConstraintCode << "'!\n"; |
| 5421 | exit(1); |
| 5422 | } |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5423 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5424 | OpInfo.AssignedRegs.getCopyToRegs(InOperandVal, DAG, getCurDebugLoc(), |
| 5425 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5426 | |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5427 | OpInfo.AssignedRegs.AddInlineAsmOperands(1/*REGUSE*/, false, 0, |
Dale Johannesen | 86b49f8 | 2008-09-24 01:07:17 +0000 | [diff] [blame] | 5428 | DAG, AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5429 | break; |
| 5430 | } |
| 5431 | case InlineAsm::isClobber: { |
| 5432 | // Add the clobbered value to the operand list, so that the register |
| 5433 | // allocator is aware that the physreg got clobbered. |
| 5434 | if (!OpInfo.AssignedRegs.Regs.empty()) |
Dale Johannesen | 91aac10 | 2008-09-17 21:13:11 +0000 | [diff] [blame] | 5435 | OpInfo.AssignedRegs.AddInlineAsmOperands(6 /* EARLYCLOBBER REGDEF */, |
Evan Cheng | 697cbbf | 2009-03-20 18:03:34 +0000 | [diff] [blame] | 5436 | false, 0, DAG,AsmNodeOperands); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5437 | break; |
| 5438 | } |
| 5439 | } |
| 5440 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5441 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5442 | // Finish up input operands. |
| 5443 | AsmNodeOperands[0] = Chain; |
| 5444 | if (Flag.getNode()) AsmNodeOperands.push_back(Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5445 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5446 | Chain = DAG.getNode(ISD::INLINEASM, getCurDebugLoc(), |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5447 | DAG.getVTList(MVT::Other, MVT::Flag), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5448 | &AsmNodeOperands[0], AsmNodeOperands.size()); |
| 5449 | Flag = Chain.getValue(1); |
| 5450 | |
| 5451 | // If this asm returns a register value, copy the result from that register |
| 5452 | // and set it as the value of the call. |
| 5453 | if (!RetValRegs.Regs.empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5454 | SDValue Val = RetValRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5455 | Chain, &Flag); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5456 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5457 | // FIXME: Why don't we do this for inline asms with MRVs? |
| 5458 | if (CS.getType()->isSingleValueType() && CS.getType()->isSized()) { |
| 5459 | MVT ResultType = TLI.getValueType(CS.getType()); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5460 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5461 | // If any of the results of the inline asm is a vector, it may have the |
| 5462 | // wrong width/num elts. This can happen for register classes that can |
| 5463 | // contain multiple different value types. The preg or vreg allocated may |
| 5464 | // not have the same VT as was expected. Convert it to the right type |
| 5465 | // with bit_convert. |
| 5466 | if (ResultType != Val.getValueType() && Val.getValueType().isVector()) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5467 | Val = DAG.getNode(ISD::BIT_CONVERT, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5468 | ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5469 | |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5470 | } else if (ResultType != Val.getValueType() && |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5471 | ResultType.isInteger() && Val.getValueType().isInteger()) { |
| 5472 | // If a result value was tied to an input value, the computed result may |
| 5473 | // have a wider width than the expected result. Extract the relevant |
| 5474 | // portion. |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5475 | Val = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), ResultType, Val); |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5476 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5477 | |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5478 | assert(ResultType == Val.getValueType() && "Asm result value mismatch!"); |
Chris Lattner | 0c52644 | 2008-10-17 17:52:49 +0000 | [diff] [blame] | 5479 | } |
Dan Gohman | 9591573 | 2008-10-18 01:03:45 +0000 | [diff] [blame] | 5480 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5481 | setValue(CS.getInstruction(), Val); |
Dale Johannesen | ec65a7d | 2009-04-14 00:56:56 +0000 | [diff] [blame] | 5482 | // Don't need to use this as a chain in this case. |
| 5483 | if (!IA->hasSideEffects() && !hasMemory && IndirectStoresToEmit.empty()) |
| 5484 | return; |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5485 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5486 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5487 | std::vector<std::pair<SDValue, Value*> > StoresToEmit; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5488 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5489 | // Process indirect outputs, first output all of the flagged copies out of |
| 5490 | // physregs. |
| 5491 | for (unsigned i = 0, e = IndirectStoresToEmit.size(); i != e; ++i) { |
| 5492 | RegsForValue &OutRegs = IndirectStoresToEmit[i].first; |
| 5493 | Value *Ptr = IndirectStoresToEmit[i].second; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5494 | SDValue OutVal = OutRegs.getCopyFromRegs(DAG, getCurDebugLoc(), |
| 5495 | Chain, &Flag); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5496 | StoresToEmit.push_back(std::make_pair(OutVal, Ptr)); |
| 5497 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5498 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5499 | // Emit the non-flagged stores from the physregs. |
| 5500 | SmallVector<SDValue, 8> OutChains; |
| 5501 | for (unsigned i = 0, e = StoresToEmit.size(); i != e; ++i) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5502 | OutChains.push_back(DAG.getStore(Chain, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5503 | StoresToEmit[i].first, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5504 | getValue(StoresToEmit[i].second), |
| 5505 | StoresToEmit[i].second, 0)); |
| 5506 | if (!OutChains.empty()) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5507 | Chain = DAG.getNode(ISD::TokenFactor, getCurDebugLoc(), MVT::Other, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5508 | &OutChains[0], OutChains.size()); |
| 5509 | DAG.setRoot(Chain); |
| 5510 | } |
| 5511 | |
| 5512 | |
| 5513 | void SelectionDAGLowering::visitMalloc(MallocInst &I) { |
| 5514 | SDValue Src = getValue(I.getOperand(0)); |
| 5515 | |
Chris Lattner | 0b18e59 | 2009-03-17 19:36:00 +0000 | [diff] [blame] | 5516 | // Scale up by the type size in the original i32 type width. Various |
| 5517 | // mid-level optimizers may make assumptions about demanded bits etc from the |
| 5518 | // i32-ness of the optimizer: we do not want to promote to i64 and then |
| 5519 | // multiply on 64-bit targets. |
| 5520 | // FIXME: Malloc inst should go away: PR715. |
| 5521 | uint64_t ElementSize = TD->getTypePaddedSize(I.getType()->getElementType()); |
| 5522 | if (ElementSize != 1) |
| 5523 | Src = DAG.getNode(ISD::MUL, getCurDebugLoc(), Src.getValueType(), |
| 5524 | Src, DAG.getConstant(ElementSize, Src.getValueType())); |
| 5525 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5526 | MVT IntPtr = TLI.getPointerTy(); |
| 5527 | |
| 5528 | if (IntPtr.bitsLT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5529 | Src = DAG.getNode(ISD::TRUNCATE, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5530 | else if (IntPtr.bitsGT(Src.getValueType())) |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5531 | Src = DAG.getNode(ISD::ZERO_EXTEND, getCurDebugLoc(), IntPtr, Src); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5532 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5533 | TargetLowering::ArgListTy Args; |
| 5534 | TargetLowering::ArgListEntry Entry; |
| 5535 | Entry.Node = Src; |
| 5536 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5537 | Args.push_back(Entry); |
| 5538 | |
| 5539 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5540 | TLI.LowerCallTo(getRoot(), I.getType(), false, false, false, false, |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5541 | CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5542 | DAG.getExternalSymbol("malloc", IntPtr), |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5543 | Args, DAG, getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5544 | setValue(&I, Result.first); // Pointers always fit in registers |
| 5545 | DAG.setRoot(Result.second); |
| 5546 | } |
| 5547 | |
| 5548 | void SelectionDAGLowering::visitFree(FreeInst &I) { |
| 5549 | TargetLowering::ArgListTy Args; |
| 5550 | TargetLowering::ArgListEntry Entry; |
| 5551 | Entry.Node = getValue(I.getOperand(0)); |
| 5552 | Entry.Ty = TLI.getTargetData()->getIntPtrType(); |
| 5553 | Args.push_back(Entry); |
| 5554 | MVT IntPtr = TLI.getPointerTy(); |
| 5555 | std::pair<SDValue,SDValue> Result = |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5556 | TLI.LowerCallTo(getRoot(), Type::VoidTy, false, false, false, false, |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5557 | CallingConv::C, PerformTailCallOpt, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5558 | DAG.getExternalSymbol("free", IntPtr), Args, DAG, |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5559 | getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5560 | DAG.setRoot(Result.second); |
| 5561 | } |
| 5562 | |
| 5563 | void SelectionDAGLowering::visitVAStart(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5564 | DAG.setRoot(DAG.getNode(ISD::VASTART, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5565 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5566 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5567 | DAG.getSrcValue(I.getOperand(1)))); |
| 5568 | } |
| 5569 | |
| 5570 | void SelectionDAGLowering::visitVAArg(VAArgInst &I) { |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 5571 | SDValue V = DAG.getVAArg(TLI.getValueType(I.getType()), getCurDebugLoc(), |
| 5572 | getRoot(), getValue(I.getOperand(0)), |
| 5573 | DAG.getSrcValue(I.getOperand(0))); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5574 | setValue(&I, V); |
| 5575 | DAG.setRoot(V.getValue(1)); |
| 5576 | } |
| 5577 | |
| 5578 | void SelectionDAGLowering::visitVAEnd(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5579 | DAG.setRoot(DAG.getNode(ISD::VAEND, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5580 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5581 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5582 | DAG.getSrcValue(I.getOperand(1)))); |
| 5583 | } |
| 5584 | |
| 5585 | void SelectionDAGLowering::visitVACopy(CallInst &I) { |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5586 | DAG.setRoot(DAG.getNode(ISD::VACOPY, getCurDebugLoc(), |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5587 | MVT::Other, getRoot(), |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5588 | getValue(I.getOperand(1)), |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5589 | getValue(I.getOperand(2)), |
| 5590 | DAG.getSrcValue(I.getOperand(1)), |
| 5591 | DAG.getSrcValue(I.getOperand(2)))); |
| 5592 | } |
| 5593 | |
| 5594 | /// TargetLowering::LowerArguments - This is the default LowerArguments |
| 5595 | /// implementation, which just inserts a FORMAL_ARGUMENTS node. FIXME: When all |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5596 | /// targets are migrated to using FORMAL_ARGUMENTS, this hook should be |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5597 | /// integrated into SDISel. |
| 5598 | void TargetLowering::LowerArguments(Function &F, SelectionDAG &DAG, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5599 | SmallVectorImpl<SDValue> &ArgValues, |
| 5600 | DebugLoc dl) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5601 | // Add CC# and isVararg as operands to the FORMAL_ARGUMENTS node. |
| 5602 | SmallVector<SDValue, 3+16> Ops; |
| 5603 | Ops.push_back(DAG.getRoot()); |
| 5604 | Ops.push_back(DAG.getConstant(F.getCallingConv(), getPointerTy())); |
| 5605 | Ops.push_back(DAG.getConstant(F.isVarArg(), getPointerTy())); |
| 5606 | |
| 5607 | // Add one result value for each formal argument. |
| 5608 | SmallVector<MVT, 16> RetVals; |
| 5609 | unsigned j = 1; |
| 5610 | for (Function::arg_iterator I = F.arg_begin(), E = F.arg_end(); |
| 5611 | I != E; ++I, ++j) { |
| 5612 | SmallVector<MVT, 4> ValueVTs; |
| 5613 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5614 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5615 | Value != NumValues; ++Value) { |
| 5616 | MVT VT = ValueVTs[Value]; |
| 5617 | const Type *ArgTy = VT.getTypeForMVT(); |
| 5618 | ISD::ArgFlagsTy Flags; |
| 5619 | unsigned OriginalAlignment = |
| 5620 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5621 | |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5622 | if (F.paramHasAttr(j, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5623 | Flags.setZExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5624 | if (F.paramHasAttr(j, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5625 | Flags.setSExt(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5626 | if (F.paramHasAttr(j, Attribute::InReg)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5627 | Flags.setInReg(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5628 | if (F.paramHasAttr(j, Attribute::StructRet)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5629 | Flags.setSRet(); |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5630 | if (F.paramHasAttr(j, Attribute::ByVal)) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5631 | Flags.setByVal(); |
| 5632 | const PointerType *Ty = cast<PointerType>(I->getType()); |
| 5633 | const Type *ElementTy = Ty->getElementType(); |
| 5634 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5635 | unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5636 | // For ByVal, alignment should be passed from FE. BE will guess if |
| 5637 | // this info is not there but there are cases it cannot get right. |
| 5638 | if (F.getParamAlignment(j)) |
| 5639 | FrameAlign = F.getParamAlignment(j); |
| 5640 | Flags.setByValAlign(FrameAlign); |
| 5641 | Flags.setByValSize(FrameSize); |
| 5642 | } |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5643 | if (F.paramHasAttr(j, Attribute::Nest)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5644 | Flags.setNest(); |
| 5645 | Flags.setOrigAlign(OriginalAlignment); |
| 5646 | |
| 5647 | MVT RegisterVT = getRegisterType(VT); |
| 5648 | unsigned NumRegs = getNumRegisters(VT); |
| 5649 | for (unsigned i = 0; i != NumRegs; ++i) { |
| 5650 | RetVals.push_back(RegisterVT); |
| 5651 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5652 | if (NumRegs > 1 && i == 0) |
| 5653 | MyFlags.setSplit(); |
| 5654 | // if it isn't first piece, alignment must be 1 |
| 5655 | else if (i > 0) |
| 5656 | MyFlags.setOrigAlign(1); |
| 5657 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5658 | } |
| 5659 | } |
| 5660 | } |
| 5661 | |
| 5662 | RetVals.push_back(MVT::Other); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5663 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5664 | // Create the node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5665 | SDNode *Result = DAG.getNode(ISD::FORMAL_ARGUMENTS, dl, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5666 | DAG.getVTList(&RetVals[0], RetVals.size()), |
| 5667 | &Ops[0], Ops.size()).getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5668 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5669 | // Prelower FORMAL_ARGUMENTS. This isn't required for functionality, but |
| 5670 | // allows exposing the loads that may be part of the argument access to the |
| 5671 | // first DAGCombiner pass. |
| 5672 | SDValue TmpRes = LowerOperation(SDValue(Result, 0), DAG); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5673 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5674 | // The number of results should match up, except that the lowered one may have |
| 5675 | // an extra flag result. |
| 5676 | assert((Result->getNumValues() == TmpRes.getNode()->getNumValues() || |
| 5677 | (Result->getNumValues()+1 == TmpRes.getNode()->getNumValues() && |
| 5678 | TmpRes.getValue(Result->getNumValues()).getValueType() == MVT::Flag)) |
| 5679 | && "Lowering produced unexpected number of results!"); |
| 5680 | |
| 5681 | // The FORMAL_ARGUMENTS node itself is likely no longer needed. |
| 5682 | if (Result != TmpRes.getNode() && Result->use_empty()) { |
| 5683 | HandleSDNode Dummy(DAG.getRoot()); |
| 5684 | DAG.RemoveDeadNode(Result); |
| 5685 | } |
| 5686 | |
| 5687 | Result = TmpRes.getNode(); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5688 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5689 | unsigned NumArgRegs = Result->getNumValues() - 1; |
| 5690 | DAG.setRoot(SDValue(Result, NumArgRegs)); |
| 5691 | |
| 5692 | // Set up the return result vector. |
| 5693 | unsigned i = 0; |
| 5694 | unsigned Idx = 1; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5695 | 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] | 5696 | ++I, ++Idx) { |
| 5697 | SmallVector<MVT, 4> ValueVTs; |
| 5698 | ComputeValueVTs(*this, I->getType(), ValueVTs); |
| 5699 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5700 | Value != NumValues; ++Value) { |
| 5701 | MVT VT = ValueVTs[Value]; |
| 5702 | MVT PartVT = getRegisterType(VT); |
| 5703 | |
| 5704 | unsigned NumParts = getNumRegisters(VT); |
| 5705 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5706 | for (unsigned j = 0; j != NumParts; ++j) |
| 5707 | Parts[j] = SDValue(Result, i++); |
| 5708 | |
| 5709 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5710 | if (F.paramHasAttr(Idx, Attribute::SExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5711 | AssertOp = ISD::AssertSext; |
Devang Patel | 0598866 | 2008-09-25 21:00:45 +0000 | [diff] [blame] | 5712 | else if (F.paramHasAttr(Idx, Attribute::ZExt)) |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5713 | AssertOp = ISD::AssertZext; |
| 5714 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5715 | ArgValues.push_back(getCopyFromParts(DAG, dl, &Parts[0], NumParts, |
| 5716 | PartVT, VT, AssertOp)); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5717 | } |
| 5718 | } |
| 5719 | assert(i == NumArgRegs && "Argument register count mismatch!"); |
| 5720 | } |
| 5721 | |
| 5722 | |
| 5723 | /// TargetLowering::LowerCallTo - This is the default LowerCallTo |
| 5724 | /// implementation, which just inserts an ISD::CALL node, which is later custom |
| 5725 | /// lowered by the target to something concrete. FIXME: When all targets are |
| 5726 | /// migrated to using ISD::CALL, this hook should be integrated into SDISel. |
| 5727 | std::pair<SDValue, SDValue> |
| 5728 | TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy, |
| 5729 | bool RetSExt, bool RetZExt, bool isVarArg, |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5730 | bool isInreg, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5731 | unsigned CallingConv, bool isTailCall, |
| 5732 | SDValue Callee, |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5733 | ArgListTy &Args, SelectionDAG &DAG, DebugLoc dl) { |
Dan Gohman | 1937e2f | 2008-09-16 01:42:28 +0000 | [diff] [blame] | 5734 | assert((!isTailCall || PerformTailCallOpt) && |
| 5735 | "isTailCall set when tail-call optimizations are disabled!"); |
| 5736 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5737 | SmallVector<SDValue, 32> Ops; |
| 5738 | Ops.push_back(Chain); // Op#0 - Chain |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5739 | Ops.push_back(Callee); |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5740 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5741 | // Handle all of the outgoing arguments. |
| 5742 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
| 5743 | SmallVector<MVT, 4> ValueVTs; |
| 5744 | ComputeValueVTs(*this, Args[i].Ty, ValueVTs); |
| 5745 | for (unsigned Value = 0, NumValues = ValueVTs.size(); |
| 5746 | Value != NumValues; ++Value) { |
| 5747 | MVT VT = ValueVTs[Value]; |
| 5748 | const Type *ArgTy = VT.getTypeForMVT(); |
Chris Lattner | 2a0b96c | 2008-10-18 18:49:30 +0000 | [diff] [blame] | 5749 | SDValue Op = SDValue(Args[i].Node.getNode(), |
| 5750 | Args[i].Node.getResNo() + Value); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5751 | ISD::ArgFlagsTy Flags; |
| 5752 | unsigned OriginalAlignment = |
| 5753 | getTargetData()->getABITypeAlignment(ArgTy); |
| 5754 | |
| 5755 | if (Args[i].isZExt) |
| 5756 | Flags.setZExt(); |
| 5757 | if (Args[i].isSExt) |
| 5758 | Flags.setSExt(); |
| 5759 | if (Args[i].isInReg) |
| 5760 | Flags.setInReg(); |
| 5761 | if (Args[i].isSRet) |
| 5762 | Flags.setSRet(); |
| 5763 | if (Args[i].isByVal) { |
| 5764 | Flags.setByVal(); |
| 5765 | const PointerType *Ty = cast<PointerType>(Args[i].Ty); |
| 5766 | const Type *ElementTy = Ty->getElementType(); |
| 5767 | unsigned FrameAlign = getByValTypeAlignment(ElementTy); |
Duncan Sands | ceb4d1a | 2009-01-12 20:38:59 +0000 | [diff] [blame] | 5768 | unsigned FrameSize = getTargetData()->getTypePaddedSize(ElementTy); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5769 | // For ByVal, alignment should come from FE. BE will guess if this |
| 5770 | // info is not there but there are cases it cannot get right. |
| 5771 | if (Args[i].Alignment) |
| 5772 | FrameAlign = Args[i].Alignment; |
| 5773 | Flags.setByValAlign(FrameAlign); |
| 5774 | Flags.setByValSize(FrameSize); |
| 5775 | } |
| 5776 | if (Args[i].isNest) |
| 5777 | Flags.setNest(); |
| 5778 | Flags.setOrigAlign(OriginalAlignment); |
| 5779 | |
| 5780 | MVT PartVT = getRegisterType(VT); |
| 5781 | unsigned NumParts = getNumRegisters(VT); |
| 5782 | SmallVector<SDValue, 4> Parts(NumParts); |
| 5783 | ISD::NodeType ExtendKind = ISD::ANY_EXTEND; |
| 5784 | |
| 5785 | if (Args[i].isSExt) |
| 5786 | ExtendKind = ISD::SIGN_EXTEND; |
| 5787 | else if (Args[i].isZExt) |
| 5788 | ExtendKind = ISD::ZERO_EXTEND; |
| 5789 | |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5790 | getCopyToParts(DAG, dl, Op, &Parts[0], NumParts, PartVT, ExtendKind); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5791 | |
| 5792 | for (unsigned i = 0; i != NumParts; ++i) { |
| 5793 | // if it isn't first piece, alignment must be 1 |
| 5794 | ISD::ArgFlagsTy MyFlags = Flags; |
| 5795 | if (NumParts > 1 && i == 0) |
| 5796 | MyFlags.setSplit(); |
| 5797 | else if (i != 0) |
| 5798 | MyFlags.setOrigAlign(1); |
| 5799 | |
| 5800 | Ops.push_back(Parts[i]); |
| 5801 | Ops.push_back(DAG.getArgFlags(MyFlags)); |
| 5802 | } |
| 5803 | } |
| 5804 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5805 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5806 | // Figure out the result value types. We start by making a list of |
| 5807 | // the potentially illegal return value types. |
| 5808 | SmallVector<MVT, 4> LoweredRetTys; |
| 5809 | SmallVector<MVT, 4> RetTys; |
| 5810 | ComputeValueVTs(*this, RetTy, RetTys); |
| 5811 | |
| 5812 | // Then we translate that to a list of legal types. |
| 5813 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5814 | MVT VT = RetTys[I]; |
| 5815 | MVT RegisterVT = getRegisterType(VT); |
| 5816 | unsigned NumRegs = getNumRegisters(VT); |
| 5817 | for (unsigned i = 0; i != NumRegs; ++i) |
| 5818 | LoweredRetTys.push_back(RegisterVT); |
| 5819 | } |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5820 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5821 | LoweredRetTys.push_back(MVT::Other); // Always has a chain. |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5822 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5823 | // Create the CALL node. |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5824 | SDValue Res = DAG.getCall(CallingConv, dl, |
Dale Johannesen | fa42dea | 2009-01-30 01:34:22 +0000 | [diff] [blame] | 5825 | isVarArg, isTailCall, isInreg, |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5826 | DAG.getVTList(&LoweredRetTys[0], |
| 5827 | LoweredRetTys.size()), |
Dale Johannesen | 86098bd | 2008-09-26 19:31:26 +0000 | [diff] [blame] | 5828 | &Ops[0], Ops.size() |
| 5829 | ); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5830 | Chain = Res.getValue(LoweredRetTys.size() - 1); |
| 5831 | |
| 5832 | // Gather up the call result into a single value. |
Dan Gohman | b5cc34d | 2008-10-07 00:12:37 +0000 | [diff] [blame] | 5833 | if (RetTy != Type::VoidTy && !RetTys.empty()) { |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5834 | ISD::NodeType AssertOp = ISD::DELETED_NODE; |
| 5835 | |
| 5836 | if (RetSExt) |
| 5837 | AssertOp = ISD::AssertSext; |
| 5838 | else if (RetZExt) |
| 5839 | AssertOp = ISD::AssertZext; |
| 5840 | |
| 5841 | SmallVector<SDValue, 4> ReturnValues; |
| 5842 | unsigned RegNo = 0; |
| 5843 | for (unsigned I = 0, E = RetTys.size(); I != E; ++I) { |
| 5844 | MVT VT = RetTys[I]; |
| 5845 | MVT RegisterVT = getRegisterType(VT); |
| 5846 | unsigned NumRegs = getNumRegisters(VT); |
| 5847 | unsigned RegNoEnd = NumRegs + RegNo; |
| 5848 | SmallVector<SDValue, 4> Results; |
| 5849 | for (; RegNo != RegNoEnd; ++RegNo) |
| 5850 | Results.push_back(Res.getValue(RegNo)); |
| 5851 | SDValue ReturnValue = |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5852 | getCopyFromParts(DAG, dl, &Results[0], NumRegs, RegisterVT, VT, |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5853 | AssertOp); |
| 5854 | ReturnValues.push_back(ReturnValue); |
| 5855 | } |
Dale Johannesen | 7d2ad62 | 2009-01-30 23:10:59 +0000 | [diff] [blame] | 5856 | Res = DAG.getNode(ISD::MERGE_VALUES, dl, |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 5857 | DAG.getVTList(&RetTys[0], RetTys.size()), |
| 5858 | &ReturnValues[0], ReturnValues.size()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5859 | } |
| 5860 | |
| 5861 | return std::make_pair(Res, Chain); |
| 5862 | } |
| 5863 | |
Duncan Sands | 9fbc7e2 | 2009-01-21 09:00:29 +0000 | [diff] [blame] | 5864 | void TargetLowering::LowerOperationWrapper(SDNode *N, |
| 5865 | SmallVectorImpl<SDValue> &Results, |
| 5866 | SelectionDAG &DAG) { |
| 5867 | SDValue Res = LowerOperation(SDValue(N, 0), DAG); |
Sanjiv Gupta | bb326bb | 2009-01-21 04:48:39 +0000 | [diff] [blame] | 5868 | if (Res.getNode()) |
| 5869 | Results.push_back(Res); |
| 5870 | } |
| 5871 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5872 | SDValue TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) { |
| 5873 | assert(0 && "LowerOperation not implemented for this target!"); |
| 5874 | abort(); |
| 5875 | return SDValue(); |
| 5876 | } |
| 5877 | |
| 5878 | |
| 5879 | void SelectionDAGLowering::CopyValueToVirtualRegister(Value *V, unsigned Reg) { |
| 5880 | SDValue Op = getValue(V); |
| 5881 | assert((Op.getOpcode() != ISD::CopyFromReg || |
| 5882 | cast<RegisterSDNode>(Op.getOperand(1))->getReg() != Reg) && |
| 5883 | "Copy from a reg to the same reg!"); |
| 5884 | assert(!TargetRegisterInfo::isPhysicalRegister(Reg) && "Is a physreg"); |
| 5885 | |
| 5886 | RegsForValue RFV(TLI, Reg, V->getType()); |
| 5887 | SDValue Chain = DAG.getEntryNode(); |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5888 | RFV.getCopyToRegs(Op, DAG, getCurDebugLoc(), Chain, 0); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5889 | PendingExports.push_back(Chain); |
| 5890 | } |
| 5891 | |
| 5892 | #include "llvm/CodeGen/SelectionDAGISel.h" |
| 5893 | |
| 5894 | void SelectionDAGISel:: |
| 5895 | LowerArguments(BasicBlock *LLVMBB) { |
| 5896 | // If this is the entry block, emit arguments. |
| 5897 | Function &F = *LLVMBB->getParent(); |
| 5898 | SDValue OldRoot = SDL->DAG.getRoot(); |
| 5899 | SmallVector<SDValue, 16> Args; |
Dale Johannesen | 66978ee | 2009-01-31 02:22:37 +0000 | [diff] [blame] | 5900 | TLI.LowerArguments(F, SDL->DAG, Args, SDL->getCurDebugLoc()); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5901 | |
| 5902 | unsigned a = 0; |
| 5903 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); |
| 5904 | AI != E; ++AI) { |
| 5905 | SmallVector<MVT, 4> ValueVTs; |
| 5906 | ComputeValueVTs(TLI, AI->getType(), ValueVTs); |
| 5907 | unsigned NumValues = ValueVTs.size(); |
| 5908 | if (!AI->use_empty()) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5909 | SDL->setValue(AI, SDL->DAG.getMergeValues(&Args[a], NumValues, |
Dale Johannesen | 4be0bdf | 2009-02-05 00:20:09 +0000 | [diff] [blame] | 5910 | SDL->getCurDebugLoc())); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5911 | // If this argument is live outside of the entry block, insert a copy from |
| 5912 | // whereever we got it to the vreg that other BB's will reference it as. |
Dan Gohman | ad62f53 | 2009-04-23 23:13:24 +0000 | [diff] [blame] | 5913 | SDL->CopyToExportRegsIfNeeded(AI); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5914 | } |
| 5915 | a += NumValues; |
| 5916 | } |
| 5917 | |
| 5918 | // Finally, if the target has anything special to do, allow it to do so. |
| 5919 | // FIXME: this should insert code into the DAG! |
| 5920 | EmitFunctionEntryCode(F, SDL->DAG.getMachineFunction()); |
| 5921 | } |
| 5922 | |
| 5923 | /// Handle PHI nodes in successor blocks. Emit code into the SelectionDAG to |
| 5924 | /// ensure constants are generated when needed. Remember the virtual registers |
| 5925 | /// that need to be added to the Machine PHI nodes as input. We cannot just |
| 5926 | /// directly add them, because expansion might result in multiple MBB's for one |
| 5927 | /// BB. As such, the start of the BB might correspond to a different MBB than |
| 5928 | /// the end. |
| 5929 | /// |
| 5930 | void |
| 5931 | SelectionDAGISel::HandlePHINodesInSuccessorBlocks(BasicBlock *LLVMBB) { |
| 5932 | TerminatorInst *TI = LLVMBB->getTerminator(); |
| 5933 | |
| 5934 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 5935 | |
| 5936 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 5937 | // from this block. |
| 5938 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 5939 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 5940 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 5941 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5942 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5943 | // If this terminator has multiple identical successors (common for |
| 5944 | // switches), only handle each succ once. |
| 5945 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 5946 | |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5947 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 5948 | PHINode *PN; |
| 5949 | |
| 5950 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 5951 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 5952 | // emitted yet. |
| 5953 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 5954 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 5955 | // Ignore dead phi's. |
| 5956 | if (PN->use_empty()) continue; |
| 5957 | |
| 5958 | unsigned Reg; |
| 5959 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 5960 | |
| 5961 | if (Constant *C = dyn_cast<Constant>(PHIOp)) { |
| 5962 | unsigned &RegOut = SDL->ConstantsOut[C]; |
| 5963 | if (RegOut == 0) { |
| 5964 | RegOut = FuncInfo->CreateRegForValue(C); |
| 5965 | SDL->CopyValueToVirtualRegister(C, RegOut); |
| 5966 | } |
| 5967 | Reg = RegOut; |
| 5968 | } else { |
| 5969 | Reg = FuncInfo->ValueMap[PHIOp]; |
| 5970 | if (Reg == 0) { |
| 5971 | assert(isa<AllocaInst>(PHIOp) && |
| 5972 | FuncInfo->StaticAllocaMap.count(cast<AllocaInst>(PHIOp)) && |
| 5973 | "Didn't codegen value into a register!??"); |
| 5974 | Reg = FuncInfo->CreateRegForValue(PHIOp); |
| 5975 | SDL->CopyValueToVirtualRegister(PHIOp, Reg); |
| 5976 | } |
| 5977 | } |
| 5978 | |
| 5979 | // Remember that this register needs to added to the machine PHI node as |
| 5980 | // the input for this MBB. |
| 5981 | SmallVector<MVT, 4> ValueVTs; |
| 5982 | ComputeValueVTs(TLI, PN->getType(), ValueVTs); |
| 5983 | for (unsigned vti = 0, vte = ValueVTs.size(); vti != vte; ++vti) { |
| 5984 | MVT VT = ValueVTs[vti]; |
| 5985 | unsigned NumRegisters = TLI.getNumRegisters(VT); |
| 5986 | for (unsigned i = 0, e = NumRegisters; i != e; ++i) |
| 5987 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg+i)); |
| 5988 | Reg += NumRegisters; |
| 5989 | } |
| 5990 | } |
| 5991 | } |
| 5992 | SDL->ConstantsOut.clear(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 5993 | } |
| 5994 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 5995 | /// This is the Fast-ISel version of HandlePHINodesInSuccessorBlocks. It only |
| 5996 | /// supports legal types, and it emits MachineInstrs directly instead of |
| 5997 | /// creating SelectionDAG nodes. |
| 5998 | /// |
| 5999 | bool |
| 6000 | SelectionDAGISel::HandlePHINodesInSuccessorBlocksFast(BasicBlock *LLVMBB, |
| 6001 | FastISel *F) { |
| 6002 | TerminatorInst *TI = LLVMBB->getTerminator(); |
Dan Gohman | f0cbcd4 | 2008-09-03 16:12:24 +0000 | [diff] [blame] | 6003 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6004 | SmallPtrSet<MachineBasicBlock *, 4> SuccsHandled; |
| 6005 | unsigned OrigNumPHINodesToUpdate = SDL->PHINodesToUpdate.size(); |
| 6006 | |
| 6007 | // Check successor nodes' PHI nodes that expect a constant to be available |
| 6008 | // from this block. |
| 6009 | for (unsigned succ = 0, e = TI->getNumSuccessors(); succ != e; ++succ) { |
| 6010 | BasicBlock *SuccBB = TI->getSuccessor(succ); |
| 6011 | if (!isa<PHINode>(SuccBB->begin())) continue; |
| 6012 | MachineBasicBlock *SuccMBB = FuncInfo->MBBMap[SuccBB]; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6013 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6014 | // If this terminator has multiple identical successors (common for |
| 6015 | // switches), only handle each succ once. |
| 6016 | if (!SuccsHandled.insert(SuccMBB)) continue; |
Mikhail Glushenkov | 5c1799b | 2009-01-16 06:53:46 +0000 | [diff] [blame] | 6017 | |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6018 | MachineBasicBlock::iterator MBBI = SuccMBB->begin(); |
| 6019 | PHINode *PN; |
| 6020 | |
| 6021 | // At this point we know that there is a 1-1 correspondence between LLVM PHI |
| 6022 | // nodes and Machine PHI nodes, but the incoming operands have not been |
| 6023 | // emitted yet. |
| 6024 | for (BasicBlock::iterator I = SuccBB->begin(); |
| 6025 | (PN = dyn_cast<PHINode>(I)); ++I) { |
| 6026 | // Ignore dead phi's. |
| 6027 | if (PN->use_empty()) continue; |
| 6028 | |
| 6029 | // Only handle legal types. Two interesting things to note here. First, |
| 6030 | // by bailing out early, we may leave behind some dead instructions, |
| 6031 | // since SelectionDAG's HandlePHINodesInSuccessorBlocks will insert its |
| 6032 | // own moves. Second, this check is necessary becuase FastISel doesn't |
| 6033 | // use CreateRegForValue to create registers, so it always creates |
| 6034 | // exactly one register for each non-void instruction. |
| 6035 | MVT VT = TLI.getValueType(PN->getType(), /*AllowUnknown=*/true); |
| 6036 | if (VT == MVT::Other || !TLI.isTypeLegal(VT)) { |
Dan Gohman | 74321ab | 2008-09-10 21:01:31 +0000 | [diff] [blame] | 6037 | // Promote MVT::i1. |
| 6038 | if (VT == MVT::i1) |
| 6039 | VT = TLI.getTypeToTransformTo(VT); |
| 6040 | else { |
| 6041 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6042 | return false; |
| 6043 | } |
Dan Gohman | 3df24e6 | 2008-09-03 23:12:08 +0000 | [diff] [blame] | 6044 | } |
| 6045 | |
| 6046 | Value *PHIOp = PN->getIncomingValueForBlock(LLVMBB); |
| 6047 | |
| 6048 | unsigned Reg = F->getRegForValue(PHIOp); |
| 6049 | if (Reg == 0) { |
| 6050 | SDL->PHINodesToUpdate.resize(OrigNumPHINodesToUpdate); |
| 6051 | return false; |
| 6052 | } |
| 6053 | SDL->PHINodesToUpdate.push_back(std::make_pair(MBBI++, Reg)); |
| 6054 | } |
| 6055 | } |
| 6056 | |
| 6057 | return true; |
| 6058 | } |