1 //===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===// 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 file implements the SelectionDAG::Legalize method. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/CodeGen/SelectionDAG.h" 15 #include "llvm/ADT/SetVector.h" 16 #include "llvm/ADT/SmallPtrSet.h" 17 #include "llvm/ADT/SmallSet.h" 18 #include "llvm/ADT/SmallVector.h" 19 #include "llvm/ADT/Triple.h" 20 #include "llvm/CodeGen/Analysis.h" 21 #include "llvm/CodeGen/MachineFunction.h" 22 #include "llvm/CodeGen/MachineJumpTableInfo.h" 23 #include "llvm/IR/CallingConv.h" 24 #include "llvm/IR/Constants.h" 25 #include "llvm/IR/DataLayout.h" 26 #include "llvm/IR/DebugInfo.h" 27 #include "llvm/IR/DerivedTypes.h" 28 #include "llvm/IR/Function.h" 29 #include "llvm/IR/LLVMContext.h" 30 #include "llvm/Support/Debug.h" 31 #include "llvm/Support/ErrorHandling.h" 32 #include "llvm/Support/MathExtras.h" 33 #include "llvm/Support/raw_ostream.h" 34 #include "llvm/Target/TargetFrameLowering.h" 35 #include "llvm/Target/TargetLowering.h" 36 #include "llvm/Target/TargetMachine.h" 37 #include "llvm/Target/TargetSubtargetInfo.h" 38 using namespace llvm; 39 40 #define DEBUG_TYPE "legalizedag" 41 42 //===----------------------------------------------------------------------===// 43 /// This takes an arbitrary SelectionDAG as input and 44 /// hacks on it until the target machine can handle it. This involves 45 /// eliminating value sizes the machine cannot handle (promoting small sizes to 46 /// large sizes or splitting up large values into small values) as well as 47 /// eliminating operations the machine cannot handle. 48 /// 49 /// This code also does a small amount of optimization and recognition of idioms 50 /// as part of its processing. For example, if a target does not support a 51 /// 'setcc' instruction efficiently, but does support 'brcc' instruction, this 52 /// will attempt merge setcc and brc instructions into brcc's. 53 /// 54 namespace { 55 class SelectionDAGLegalize { 56 const TargetMachine &TM; 57 const TargetLowering &TLI; 58 SelectionDAG &DAG; 59 60 /// \brief The set of nodes which have already been legalized. We hold a 61 /// reference to it in order to update as necessary on node deletion. 62 SmallPtrSetImpl<SDNode *> &LegalizedNodes; 63 64 /// \brief A set of all the nodes updated during legalization. 65 SmallSetVector<SDNode *, 16> *UpdatedNodes; 66 67 EVT getSetCCResultType(EVT VT) const { 68 return TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT); 69 } 70 71 // Libcall insertion helpers. 72 73 public: 74 SelectionDAGLegalize(SelectionDAG &DAG, 75 SmallPtrSetImpl<SDNode *> &LegalizedNodes, 76 SmallSetVector<SDNode *, 16> *UpdatedNodes = nullptr) 77 : TM(DAG.getTarget()), TLI(DAG.getTargetLoweringInfo()), DAG(DAG), 78 LegalizedNodes(LegalizedNodes), UpdatedNodes(UpdatedNodes) {} 79 80 /// \brief Legalizes the given operation. 81 void LegalizeOp(SDNode *Node); 82 83 private: 84 SDValue OptimizeFloatStore(StoreSDNode *ST); 85 86 void LegalizeLoadOps(SDNode *Node); 87 void LegalizeStoreOps(SDNode *Node); 88 89 /// Some targets cannot handle a variable 90 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it 91 /// is necessary to spill the vector being inserted into to memory, perform 92 /// the insert there, and then read the result back. 93 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, 94 SDValue Idx, SDLoc dl); 95 SDValue ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, 96 SDValue Idx, SDLoc dl); 97 98 /// Return a vector shuffle operation which 99 /// performs the same shuffe in terms of order or result bytes, but on a type 100 /// whose vector element type is narrower than the original shuffle type. 101 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3> 102 SDValue ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl, 103 SDValue N1, SDValue N2, 104 ArrayRef<int> Mask) const; 105 106 bool LegalizeSetCCCondCode(EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC, 107 bool &NeedInvert, SDLoc dl); 108 109 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned); 110 SDValue ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, const SDValue *Ops, 111 unsigned NumOps, bool isSigned, SDLoc dl); 112 113 std::pair<SDValue, SDValue> ExpandChainLibCall(RTLIB::Libcall LC, 114 SDNode *Node, bool isSigned); 115 SDValue ExpandFPLibCall(SDNode *Node, RTLIB::Libcall Call_F32, 116 RTLIB::Libcall Call_F64, RTLIB::Libcall Call_F80, 117 RTLIB::Libcall Call_F128, 118 RTLIB::Libcall Call_PPCF128); 119 SDValue ExpandIntLibCall(SDNode *Node, bool isSigned, 120 RTLIB::Libcall Call_I8, 121 RTLIB::Libcall Call_I16, 122 RTLIB::Libcall Call_I32, 123 RTLIB::Libcall Call_I64, 124 RTLIB::Libcall Call_I128); 125 void ExpandDivRemLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results); 126 void ExpandSinCosLibCall(SDNode *Node, SmallVectorImpl<SDValue> &Results); 127 128 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl); 129 SDValue ExpandBUILD_VECTOR(SDNode *Node); 130 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node); 131 void ExpandDYNAMIC_STACKALLOC(SDNode *Node, 132 SmallVectorImpl<SDValue> &Results); 133 SDValue ExpandFCOPYSIGN(SDNode *Node); 134 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, EVT DestVT, 135 SDLoc dl); 136 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, EVT DestVT, bool isSigned, 137 SDLoc dl); 138 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, EVT DestVT, bool isSigned, 139 SDLoc dl); 140 141 SDValue ExpandBSWAP(SDValue Op, SDLoc dl); 142 SDValue ExpandBitCount(unsigned Opc, SDValue Op, SDLoc dl); 143 144 SDValue ExpandExtractFromVectorThroughStack(SDValue Op); 145 SDValue ExpandInsertToVectorThroughStack(SDValue Op); 146 SDValue ExpandVectorBuildThroughStack(SDNode* Node); 147 148 SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP); 149 150 std::pair<SDValue, SDValue> ExpandAtomic(SDNode *Node); 151 152 void ExpandNode(SDNode *Node); 153 void PromoteNode(SDNode *Node); 154 155 public: 156 // Node replacement helpers 157 void ReplacedNode(SDNode *N) { 158 LegalizedNodes.erase(N); 159 if (UpdatedNodes) 160 UpdatedNodes->insert(N); 161 } 162 void ReplaceNode(SDNode *Old, SDNode *New) { 163 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG); 164 dbgs() << " with: "; New->dump(&DAG)); 165 166 assert(Old->getNumValues() == New->getNumValues() && 167 "Replacing one node with another that produces a different number " 168 "of values!"); 169 DAG.ReplaceAllUsesWith(Old, New); 170 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i) 171 DAG.TransferDbgValues(SDValue(Old, i), SDValue(New, i)); 172 if (UpdatedNodes) 173 UpdatedNodes->insert(New); 174 ReplacedNode(Old); 175 } 176 void ReplaceNode(SDValue Old, SDValue New) { 177 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG); 178 dbgs() << " with: "; New->dump(&DAG)); 179 180 DAG.ReplaceAllUsesWith(Old, New); 181 DAG.TransferDbgValues(Old, New); 182 if (UpdatedNodes) 183 UpdatedNodes->insert(New.getNode()); 184 ReplacedNode(Old.getNode()); 185 } 186 void ReplaceNode(SDNode *Old, const SDValue *New) { 187 DEBUG(dbgs() << " ... replacing: "; Old->dump(&DAG)); 188 189 DAG.ReplaceAllUsesWith(Old, New); 190 for (unsigned i = 0, e = Old->getNumValues(); i != e; ++i) { 191 DEBUG(dbgs() << (i == 0 ? " with: " 192 : " and: "); 193 New[i]->dump(&DAG)); 194 DAG.TransferDbgValues(SDValue(Old, i), New[i]); 195 if (UpdatedNodes) 196 UpdatedNodes->insert(New[i].getNode()); 197 } 198 ReplacedNode(Old); 199 } 200 }; 201 } 202 203 /// Return a vector shuffle operation which 204 /// performs the same shuffe in terms of order or result bytes, but on a type 205 /// whose vector element type is narrower than the original shuffle type. 206 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3> 207 SDValue 208 SelectionDAGLegalize::ShuffleWithNarrowerEltType(EVT NVT, EVT VT, SDLoc dl, 209 SDValue N1, SDValue N2, 210 ArrayRef<int> Mask) const { 211 unsigned NumMaskElts = VT.getVectorNumElements(); 212 unsigned NumDestElts = NVT.getVectorNumElements(); 213 unsigned NumEltsGrowth = NumDestElts / NumMaskElts; 214 215 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!"); 216 217 if (NumEltsGrowth == 1) 218 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]); 219 220 SmallVector<int, 8> NewMask; 221 for (unsigned i = 0; i != NumMaskElts; ++i) { 222 int Idx = Mask[i]; 223 for (unsigned j = 0; j != NumEltsGrowth; ++j) { 224 if (Idx < 0) 225 NewMask.push_back(-1); 226 else 227 NewMask.push_back(Idx * NumEltsGrowth + j); 228 } 229 } 230 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?"); 231 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?"); 232 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]); 233 } 234 235 /// Expands the ConstantFP node to an integer constant or 236 /// a load from the constant pool. 237 SDValue 238 SelectionDAGLegalize::ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP) { 239 bool Extend = false; 240 SDLoc dl(CFP); 241 242 // If a FP immediate is precise when represented as a float and if the 243 // target can do an extending load from float to double, we put it into 244 // the constant pool as a float, even if it's is statically typed as a 245 // double. This shrinks FP constants and canonicalizes them for targets where 246 // an FP extending load is the same cost as a normal load (such as on the x87 247 // fp stack or PPC FP unit). 248 EVT VT = CFP->getValueType(0); 249 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue()); 250 if (!UseCP) { 251 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion"); 252 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(), dl, 253 (VT == MVT::f64) ? MVT::i64 : MVT::i32); 254 } 255 256 EVT OrigVT = VT; 257 EVT SVT = VT; 258 while (SVT != MVT::f32 && SVT != MVT::f16) { 259 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT().SimpleTy - 1); 260 if (ConstantFPSDNode::isValueValidForType(SVT, CFP->getValueAPF()) && 261 // Only do this if the target has a native EXTLOAD instruction from 262 // smaller type. 263 TLI.isLoadExtLegal(ISD::EXTLOAD, OrigVT, SVT) && 264 TLI.ShouldShrinkFPConstant(OrigVT)) { 265 Type *SType = SVT.getTypeForEVT(*DAG.getContext()); 266 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType)); 267 VT = SVT; 268 Extend = true; 269 } 270 } 271 272 SDValue CPIdx = 273 DAG.getConstantPool(LLVMC, TLI.getPointerTy(DAG.getDataLayout())); 274 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); 275 if (Extend) { 276 SDValue Result = 277 DAG.getExtLoad(ISD::EXTLOAD, dl, OrigVT, 278 DAG.getEntryNode(), 279 CPIdx, MachinePointerInfo::getConstantPool(), 280 VT, false, false, false, Alignment); 281 return Result; 282 } 283 SDValue Result = 284 DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx, 285 MachinePointerInfo::getConstantPool(), false, false, false, 286 Alignment); 287 return Result; 288 } 289 290 /// Expands an unaligned store to 2 half-size stores. 291 static void ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG, 292 const TargetLowering &TLI, 293 SelectionDAGLegalize *DAGLegalize) { 294 assert(ST->getAddressingMode() == ISD::UNINDEXED && 295 "unaligned indexed stores not implemented!"); 296 SDValue Chain = ST->getChain(); 297 SDValue Ptr = ST->getBasePtr(); 298 SDValue Val = ST->getValue(); 299 EVT VT = Val.getValueType(); 300 int Alignment = ST->getAlignment(); 301 unsigned AS = ST->getAddressSpace(); 302 303 SDLoc dl(ST); 304 if (ST->getMemoryVT().isFloatingPoint() || 305 ST->getMemoryVT().isVector()) { 306 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits()); 307 if (TLI.isTypeLegal(intVT)) { 308 // Expand to a bitconvert of the value to the integer type of the 309 // same size, then a (misaligned) int store. 310 // FIXME: Does not handle truncating floating point stores! 311 SDValue Result = DAG.getNode(ISD::BITCAST, dl, intVT, Val); 312 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(), 313 ST->isVolatile(), ST->isNonTemporal(), Alignment); 314 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result); 315 return; 316 } 317 // Do a (aligned) store to a stack slot, then copy from the stack slot 318 // to the final destination using (unaligned) integer loads and stores. 319 EVT StoredVT = ST->getMemoryVT(); 320 MVT RegVT = 321 TLI.getRegisterType(*DAG.getContext(), 322 EVT::getIntegerVT(*DAG.getContext(), 323 StoredVT.getSizeInBits())); 324 unsigned StoredBytes = StoredVT.getSizeInBits() / 8; 325 unsigned RegBytes = RegVT.getSizeInBits() / 8; 326 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes; 327 328 // Make sure the stack slot is also aligned for the register type. 329 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT); 330 331 // Perform the original store, only redirected to the stack slot. 332 SDValue Store = DAG.getTruncStore(Chain, dl, 333 Val, StackPtr, MachinePointerInfo(), 334 StoredVT, false, false, 0); 335 SDValue Increment = DAG.getConstant( 336 RegBytes, dl, TLI.getPointerTy(DAG.getDataLayout(), AS)); 337 SmallVector<SDValue, 8> Stores; 338 unsigned Offset = 0; 339 340 // Do all but one copies using the full register width. 341 for (unsigned i = 1; i < NumRegs; i++) { 342 // Load one integer register's worth from the stack slot. 343 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, 344 MachinePointerInfo(), 345 false, false, false, 0); 346 // Store it to the final location. Remember the store. 347 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr, 348 ST->getPointerInfo().getWithOffset(Offset), 349 ST->isVolatile(), ST->isNonTemporal(), 350 MinAlign(ST->getAlignment(), Offset))); 351 // Increment the pointers. 352 Offset += RegBytes; 353 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr, 354 Increment); 355 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment); 356 } 357 358 // The last store may be partial. Do a truncating store. On big-endian 359 // machines this requires an extending load from the stack slot to ensure 360 // that the bits are in the right place. 361 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), 362 8 * (StoredBytes - Offset)); 363 364 // Load from the stack slot. 365 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr, 366 MachinePointerInfo(), 367 MemVT, false, false, false, 0); 368 369 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr, 370 ST->getPointerInfo() 371 .getWithOffset(Offset), 372 MemVT, ST->isVolatile(), 373 ST->isNonTemporal(), 374 MinAlign(ST->getAlignment(), Offset), 375 ST->getAAInfo())); 376 // The order of the stores doesn't matter - say it with a TokenFactor. 377 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 378 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result); 379 return; 380 } 381 assert(ST->getMemoryVT().isInteger() && 382 !ST->getMemoryVT().isVector() && 383 "Unaligned store of unknown type."); 384 // Get the half-size VT 385 EVT NewStoredVT = ST->getMemoryVT().getHalfSizedIntegerVT(*DAG.getContext()); 386 int NumBits = NewStoredVT.getSizeInBits(); 387 int IncrementSize = NumBits / 8; 388 389 // Divide the stored value in two parts. 390 SDValue ShiftAmount = 391 DAG.getConstant(NumBits, dl, TLI.getShiftAmountTy(Val.getValueType(), 392 DAG.getDataLayout())); 393 SDValue Lo = Val; 394 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount); 395 396 // Store the two parts 397 SDValue Store1, Store2; 398 Store1 = DAG.getTruncStore(Chain, dl, 399 DAG.getDataLayout().isLittleEndian() ? Lo : Hi, 400 Ptr, ST->getPointerInfo(), NewStoredVT, 401 ST->isVolatile(), ST->isNonTemporal(), Alignment); 402 403 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 404 DAG.getConstant(IncrementSize, dl, 405 TLI.getPointerTy(DAG.getDataLayout(), AS))); 406 Alignment = MinAlign(Alignment, IncrementSize); 407 Store2 = DAG.getTruncStore( 408 Chain, dl, DAG.getDataLayout().isLittleEndian() ? Hi : Lo, Ptr, 409 ST->getPointerInfo().getWithOffset(IncrementSize), NewStoredVT, 410 ST->isVolatile(), ST->isNonTemporal(), Alignment, ST->getAAInfo()); 411 412 SDValue Result = 413 DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2); 414 DAGLegalize->ReplaceNode(SDValue(ST, 0), Result); 415 } 416 417 /// Expands an unaligned load to 2 half-size loads. 418 static void 419 ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG, 420 const TargetLowering &TLI, 421 SDValue &ValResult, SDValue &ChainResult) { 422 assert(LD->getAddressingMode() == ISD::UNINDEXED && 423 "unaligned indexed loads not implemented!"); 424 SDValue Chain = LD->getChain(); 425 SDValue Ptr = LD->getBasePtr(); 426 EVT VT = LD->getValueType(0); 427 EVT LoadedVT = LD->getMemoryVT(); 428 SDLoc dl(LD); 429 if (VT.isFloatingPoint() || VT.isVector()) { 430 EVT intVT = EVT::getIntegerVT(*DAG.getContext(), LoadedVT.getSizeInBits()); 431 if (TLI.isTypeLegal(intVT) && TLI.isTypeLegal(LoadedVT)) { 432 // Expand to a (misaligned) integer load of the same size, 433 // then bitconvert to floating point or vector. 434 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, 435 LD->getMemOperand()); 436 SDValue Result = DAG.getNode(ISD::BITCAST, dl, LoadedVT, newLoad); 437 if (LoadedVT != VT) 438 Result = DAG.getNode(VT.isFloatingPoint() ? ISD::FP_EXTEND : 439 ISD::ANY_EXTEND, dl, VT, Result); 440 441 ValResult = Result; 442 ChainResult = Chain; 443 return; 444 } 445 446 // Copy the value to a (aligned) stack slot using (unaligned) integer 447 // loads and stores, then do a (aligned) load from the stack slot. 448 MVT RegVT = TLI.getRegisterType(*DAG.getContext(), intVT); 449 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8; 450 unsigned RegBytes = RegVT.getSizeInBits() / 8; 451 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes; 452 453 // Make sure the stack slot is also aligned for the register type. 454 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT); 455 456 SDValue Increment = 457 DAG.getConstant(RegBytes, dl, TLI.getPointerTy(DAG.getDataLayout())); 458 SmallVector<SDValue, 8> Stores; 459 SDValue StackPtr = StackBase; 460 unsigned Offset = 0; 461 462 // Do all but one copies using the full register width. 463 for (unsigned i = 1; i < NumRegs; i++) { 464 // Load one integer register's worth from the original location. 465 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, 466 LD->getPointerInfo().getWithOffset(Offset), 467 LD->isVolatile(), LD->isNonTemporal(), 468 LD->isInvariant(), 469 MinAlign(LD->getAlignment(), Offset), 470 LD->getAAInfo()); 471 // Follow the load with a store to the stack slot. Remember the store. 472 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr, 473 MachinePointerInfo(), false, false, 0)); 474 // Increment the pointers. 475 Offset += RegBytes; 476 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment); 477 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr, 478 Increment); 479 } 480 481 // The last copy may be partial. Do an extending load. 482 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), 483 8 * (LoadedBytes - Offset)); 484 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr, 485 LD->getPointerInfo().getWithOffset(Offset), 486 MemVT, LD->isVolatile(), 487 LD->isNonTemporal(), 488 LD->isInvariant(), 489 MinAlign(LD->getAlignment(), Offset), 490 LD->getAAInfo()); 491 // Follow the load with a store to the stack slot. Remember the store. 492 // On big-endian machines this requires a truncating store to ensure 493 // that the bits end up in the right place. 494 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr, 495 MachinePointerInfo(), MemVT, 496 false, false, 0)); 497 498 // The order of the stores doesn't matter - say it with a TokenFactor. 499 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 500 501 // Finally, perform the original load only redirected to the stack slot. 502 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase, 503 MachinePointerInfo(), LoadedVT, false,false, false, 504 0); 505 506 // Callers expect a MERGE_VALUES node. 507 ValResult = Load; 508 ChainResult = TF; 509 return; 510 } 511 assert(LoadedVT.isInteger() && !LoadedVT.isVector() && 512 "Unaligned load of unsupported type."); 513 514 // Compute the new VT that is half the size of the old one. This is an 515 // integer MVT. 516 unsigned NumBits = LoadedVT.getSizeInBits(); 517 EVT NewLoadedVT; 518 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2); 519 NumBits >>= 1; 520 521 unsigned Alignment = LD->getAlignment(); 522 unsigned IncrementSize = NumBits / 8; 523 ISD::LoadExtType HiExtType = LD->getExtensionType(); 524 525 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD. 526 if (HiExtType == ISD::NON_EXTLOAD) 527 HiExtType = ISD::ZEXTLOAD; 528 529 // Load the value in two parts 530 SDValue Lo, Hi; 531 if (DAG.getDataLayout().isLittleEndian()) { 532 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getPointerInfo(), 533 NewLoadedVT, LD->isVolatile(), 534 LD->isNonTemporal(), LD->isInvariant(), Alignment, 535 LD->getAAInfo()); 536 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 537 DAG.getConstant(IncrementSize, dl, Ptr.getValueType())); 538 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, 539 LD->getPointerInfo().getWithOffset(IncrementSize), 540 NewLoadedVT, LD->isVolatile(), 541 LD->isNonTemporal(),LD->isInvariant(), 542 MinAlign(Alignment, IncrementSize), LD->getAAInfo()); 543 } else { 544 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getPointerInfo(), 545 NewLoadedVT, LD->isVolatile(), 546 LD->isNonTemporal(), LD->isInvariant(), Alignment, 547 LD->getAAInfo()); 548 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 549 DAG.getConstant(IncrementSize, dl, Ptr.getValueType())); 550 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, 551 LD->getPointerInfo().getWithOffset(IncrementSize), 552 NewLoadedVT, LD->isVolatile(), 553 LD->isNonTemporal(), LD->isInvariant(), 554 MinAlign(Alignment, IncrementSize), LD->getAAInfo()); 555 } 556 557 // aggregate the two parts 558 SDValue ShiftAmount = 559 DAG.getConstant(NumBits, dl, TLI.getShiftAmountTy(Hi.getValueType(), 560 DAG.getDataLayout())); 561 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount); 562 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo); 563 564 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), 565 Hi.getValue(1)); 566 567 ValResult = Result; 568 ChainResult = TF; 569 } 570 571 /// Some target cannot handle a variable insertion index for the 572 /// INSERT_VECTOR_ELT instruction. In this case, it 573 /// is necessary to spill the vector being inserted into to memory, perform 574 /// the insert there, and then read the result back. 575 SDValue SelectionDAGLegalize:: 576 PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx, 577 SDLoc dl) { 578 SDValue Tmp1 = Vec; 579 SDValue Tmp2 = Val; 580 SDValue Tmp3 = Idx; 581 582 // If the target doesn't support this, we have to spill the input vector 583 // to a temporary stack slot, update the element, then reload it. This is 584 // badness. We could also load the value into a vector register (either 585 // with a "move to register" or "extload into register" instruction, then 586 // permute it into place, if the idx is a constant and if the idx is 587 // supported by the target. 588 EVT VT = Tmp1.getValueType(); 589 EVT EltVT = VT.getVectorElementType(); 590 EVT IdxVT = Tmp3.getValueType(); 591 EVT PtrVT = TLI.getPointerTy(DAG.getDataLayout()); 592 SDValue StackPtr = DAG.CreateStackTemporary(VT); 593 594 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex(); 595 596 // Store the vector. 597 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr, 598 MachinePointerInfo::getFixedStack(SPFI), 599 false, false, 0); 600 601 // Truncate or zero extend offset to target pointer type. 602 Tmp3 = DAG.getZExtOrTrunc(Tmp3, dl, PtrVT); 603 // Add the offset to the index. 604 unsigned EltSize = EltVT.getSizeInBits()/8; 605 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3, 606 DAG.getConstant(EltSize, dl, IdxVT)); 607 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr); 608 // Store the scalar value. 609 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2, MachinePointerInfo(), EltVT, 610 false, false, 0); 611 // Load the updated vector. 612 return DAG.getLoad(VT, dl, Ch, StackPtr, 613 MachinePointerInfo::getFixedStack(SPFI), false, false, 614 false, 0); 615 } 616 617 618 SDValue SelectionDAGLegalize:: 619 ExpandINSERT_VECTOR_ELT(SDValue Vec, SDValue Val, SDValue Idx, SDLoc dl) { 620 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Idx)) { 621 // SCALAR_TO_VECTOR requires that the type of the value being inserted 622 // match the element type of the vector being created, except for 623 // integers in which case the inserted value can be over width. 624 EVT EltVT = Vec.getValueType().getVectorElementType(); 625 if (Val.getValueType() == EltVT || 626 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) { 627 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, 628 Vec.getValueType(), Val); 629 630 unsigned NumElts = Vec.getValueType().getVectorNumElements(); 631 // We generate a shuffle of InVec and ScVec, so the shuffle mask 632 // should be 0,1,2,3,4,5... with the appropriate element replaced with 633 // elt 0 of the RHS. 634 SmallVector<int, 8> ShufOps; 635 for (unsigned i = 0; i != NumElts; ++i) 636 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts); 637 638 return DAG.getVectorShuffle(Vec.getValueType(), dl, Vec, ScVec, 639 &ShufOps[0]); 640 } 641 } 642 return PerformInsertVectorEltInMemory(Vec, Val, Idx, dl); 643 } 644 645 SDValue SelectionDAGLegalize::OptimizeFloatStore(StoreSDNode* ST) { 646 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr' 647 // FIXME: We shouldn't do this for TargetConstantFP's. 648 // FIXME: move this to the DAG Combiner! Note that we can't regress due 649 // to phase ordering between legalized code and the dag combiner. This 650 // probably means that we need to integrate dag combiner and legalizer 651 // together. 652 // We generally can't do this one for long doubles. 653 SDValue Chain = ST->getChain(); 654 SDValue Ptr = ST->getBasePtr(); 655 unsigned Alignment = ST->getAlignment(); 656 bool isVolatile = ST->isVolatile(); 657 bool isNonTemporal = ST->isNonTemporal(); 658 AAMDNodes AAInfo = ST->getAAInfo(); 659 SDLoc dl(ST); 660 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) { 661 if (CFP->getValueType(0) == MVT::f32 && 662 TLI.isTypeLegal(MVT::i32)) { 663 SDValue Con = DAG.getConstant(CFP->getValueAPF(). 664 bitcastToAPInt().zextOrTrunc(32), 665 SDLoc(CFP), MVT::i32); 666 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(), 667 isVolatile, isNonTemporal, Alignment, AAInfo); 668 } 669 670 if (CFP->getValueType(0) == MVT::f64) { 671 // If this target supports 64-bit registers, do a single 64-bit store. 672 if (TLI.isTypeLegal(MVT::i64)) { 673 SDValue Con = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt(). 674 zextOrTrunc(64), SDLoc(CFP), MVT::i64); 675 return DAG.getStore(Chain, dl, Con, Ptr, ST->getPointerInfo(), 676 isVolatile, isNonTemporal, Alignment, AAInfo); 677 } 678 679 if (TLI.isTypeLegal(MVT::i32) && !ST->isVolatile()) { 680 // Otherwise, if the target supports 32-bit registers, use 2 32-bit 681 // stores. If the target supports neither 32- nor 64-bits, this 682 // xform is certainly not worth it. 683 const APInt &IntVal = CFP->getValueAPF().bitcastToAPInt(); 684 SDValue Lo = DAG.getConstant(IntVal.trunc(32), dl, MVT::i32); 685 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), dl, MVT::i32); 686 if (DAG.getDataLayout().isBigEndian()) 687 std::swap(Lo, Hi); 688 689 Lo = DAG.getStore(Chain, dl, Lo, Ptr, ST->getPointerInfo(), isVolatile, 690 isNonTemporal, Alignment, AAInfo); 691 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 692 DAG.getConstant(4, dl, Ptr.getValueType())); 693 Hi = DAG.getStore(Chain, dl, Hi, Ptr, 694 ST->getPointerInfo().getWithOffset(4), 695 isVolatile, isNonTemporal, MinAlign(Alignment, 4U), 696 AAInfo); 697 698 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi); 699 } 700 } 701 } 702 return SDValue(nullptr, 0); 703 } 704 705 void SelectionDAGLegalize::LegalizeStoreOps(SDNode *Node) { 706 StoreSDNode *ST = cast<StoreSDNode>(Node); 707 SDValue Chain = ST->getChain(); 708 SDValue Ptr = ST->getBasePtr(); 709 SDLoc dl(Node); 710 711 unsigned Alignment = ST->getAlignment(); 712 bool isVolatile = ST->isVolatile(); 713 bool isNonTemporal = ST->isNonTemporal(); 714 AAMDNodes AAInfo = ST->getAAInfo(); 715 716 if (!ST->isTruncatingStore()) { 717 if (SDNode *OptStore = OptimizeFloatStore(ST).getNode()) { 718 ReplaceNode(ST, OptStore); 719 return; 720 } 721 722 { 723 SDValue Value = ST->getValue(); 724 MVT VT = Value.getSimpleValueType(); 725 switch (TLI.getOperationAction(ISD::STORE, VT)) { 726 default: llvm_unreachable("This action is not supported yet!"); 727 case TargetLowering::Legal: { 728 // If this is an unaligned store and the target doesn't support it, 729 // expand it. 730 unsigned AS = ST->getAddressSpace(); 731 unsigned Align = ST->getAlignment(); 732 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) { 733 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext()); 734 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty); 735 if (Align < ABIAlignment) 736 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this); 737 } 738 break; 739 } 740 case TargetLowering::Custom: { 741 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG); 742 if (Res && Res != SDValue(Node, 0)) 743 ReplaceNode(SDValue(Node, 0), Res); 744 return; 745 } 746 case TargetLowering::Promote: { 747 MVT NVT = TLI.getTypeToPromoteTo(ISD::STORE, VT); 748 assert(NVT.getSizeInBits() == VT.getSizeInBits() && 749 "Can only promote stores to same size type"); 750 Value = DAG.getNode(ISD::BITCAST, dl, NVT, Value); 751 SDValue Result = 752 DAG.getStore(Chain, dl, Value, Ptr, 753 ST->getPointerInfo(), isVolatile, 754 isNonTemporal, Alignment, AAInfo); 755 ReplaceNode(SDValue(Node, 0), Result); 756 break; 757 } 758 } 759 return; 760 } 761 } else { 762 SDValue Value = ST->getValue(); 763 764 EVT StVT = ST->getMemoryVT(); 765 unsigned StWidth = StVT.getSizeInBits(); 766 auto &DL = DAG.getDataLayout(); 767 768 if (StWidth != StVT.getStoreSizeInBits()) { 769 // Promote to a byte-sized store with upper bits zero if not 770 // storing an integral number of bytes. For example, promote 771 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1) 772 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), 773 StVT.getStoreSizeInBits()); 774 Value = DAG.getZeroExtendInReg(Value, dl, StVT); 775 SDValue Result = 776 DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(), 777 NVT, isVolatile, isNonTemporal, Alignment, AAInfo); 778 ReplaceNode(SDValue(Node, 0), Result); 779 } else if (StWidth & (StWidth - 1)) { 780 // If not storing a power-of-2 number of bits, expand as two stores. 781 assert(!StVT.isVector() && "Unsupported truncstore!"); 782 unsigned RoundWidth = 1 << Log2_32(StWidth); 783 assert(RoundWidth < StWidth); 784 unsigned ExtraWidth = StWidth - RoundWidth; 785 assert(ExtraWidth < RoundWidth); 786 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && 787 "Store size not an integral number of bytes!"); 788 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth); 789 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth); 790 SDValue Lo, Hi; 791 unsigned IncrementSize; 792 793 if (DL.isLittleEndian()) { 794 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16) 795 // Store the bottom RoundWidth bits. 796 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, ST->getPointerInfo(), 797 RoundVT, 798 isVolatile, isNonTemporal, Alignment, 799 AAInfo); 800 801 // Store the remaining ExtraWidth bits. 802 IncrementSize = RoundWidth / 8; 803 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 804 DAG.getConstant(IncrementSize, dl, 805 Ptr.getValueType())); 806 Hi = DAG.getNode( 807 ISD::SRL, dl, Value.getValueType(), Value, 808 DAG.getConstant(RoundWidth, dl, 809 TLI.getShiftAmountTy(Value.getValueType(), DL))); 810 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, 811 ST->getPointerInfo().getWithOffset(IncrementSize), 812 ExtraVT, isVolatile, isNonTemporal, 813 MinAlign(Alignment, IncrementSize), AAInfo); 814 } else { 815 // Big endian - avoid unaligned stores. 816 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X 817 // Store the top RoundWidth bits. 818 Hi = DAG.getNode( 819 ISD::SRL, dl, Value.getValueType(), Value, 820 DAG.getConstant(ExtraWidth, dl, 821 TLI.getShiftAmountTy(Value.getValueType(), DL))); 822 Hi = DAG.getTruncStore(Chain, dl, Hi, Ptr, ST->getPointerInfo(), 823 RoundVT, isVolatile, isNonTemporal, Alignment, 824 AAInfo); 825 826 // Store the remaining ExtraWidth bits. 827 IncrementSize = RoundWidth / 8; 828 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 829 DAG.getConstant(IncrementSize, dl, 830 Ptr.getValueType())); 831 Lo = DAG.getTruncStore(Chain, dl, Value, Ptr, 832 ST->getPointerInfo().getWithOffset(IncrementSize), 833 ExtraVT, isVolatile, isNonTemporal, 834 MinAlign(Alignment, IncrementSize), AAInfo); 835 } 836 837 // The order of the stores doesn't matter. 838 SDValue Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi); 839 ReplaceNode(SDValue(Node, 0), Result); 840 } else { 841 switch (TLI.getTruncStoreAction(ST->getValue().getSimpleValueType(), 842 StVT.getSimpleVT())) { 843 default: llvm_unreachable("This action is not supported yet!"); 844 case TargetLowering::Legal: { 845 unsigned AS = ST->getAddressSpace(); 846 unsigned Align = ST->getAlignment(); 847 // If this is an unaligned store and the target doesn't support it, 848 // expand it. 849 if (!TLI.allowsMisalignedMemoryAccesses(ST->getMemoryVT(), AS, Align)) { 850 Type *Ty = ST->getMemoryVT().getTypeForEVT(*DAG.getContext()); 851 unsigned ABIAlignment = DL.getABITypeAlignment(Ty); 852 if (Align < ABIAlignment) 853 ExpandUnalignedStore(cast<StoreSDNode>(Node), DAG, TLI, this); 854 } 855 break; 856 } 857 case TargetLowering::Custom: { 858 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG); 859 if (Res && Res != SDValue(Node, 0)) 860 ReplaceNode(SDValue(Node, 0), Res); 861 return; 862 } 863 case TargetLowering::Expand: 864 assert(!StVT.isVector() && 865 "Vector Stores are handled in LegalizeVectorOps"); 866 867 // TRUNCSTORE:i16 i32 -> STORE i16 868 assert(TLI.isTypeLegal(StVT) && 869 "Do not know how to expand this store!"); 870 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value); 871 SDValue Result = 872 DAG.getStore(Chain, dl, Value, Ptr, ST->getPointerInfo(), 873 isVolatile, isNonTemporal, Alignment, AAInfo); 874 ReplaceNode(SDValue(Node, 0), Result); 875 break; 876 } 877 } 878 } 879 } 880 881 void SelectionDAGLegalize::LegalizeLoadOps(SDNode *Node) { 882 LoadSDNode *LD = cast<LoadSDNode>(Node); 883 SDValue Chain = LD->getChain(); // The chain. 884 SDValue Ptr = LD->getBasePtr(); // The base pointer. 885 SDValue Value; // The value returned by the load op. 886 SDLoc dl(Node); 887 888 ISD::LoadExtType ExtType = LD->getExtensionType(); 889 if (ExtType == ISD::NON_EXTLOAD) { 890 MVT VT = Node->getSimpleValueType(0); 891 SDValue RVal = SDValue(Node, 0); 892 SDValue RChain = SDValue(Node, 1); 893 894 switch (TLI.getOperationAction(Node->getOpcode(), VT)) { 895 default: llvm_unreachable("This action is not supported yet!"); 896 case TargetLowering::Legal: { 897 unsigned AS = LD->getAddressSpace(); 898 unsigned Align = LD->getAlignment(); 899 // If this is an unaligned load and the target doesn't support it, 900 // expand it. 901 if (!TLI.allowsMisalignedMemoryAccesses(LD->getMemoryVT(), AS, Align)) { 902 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext()); 903 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty); 904 if (Align < ABIAlignment){ 905 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, RVal, RChain); 906 } 907 } 908 break; 909 } 910 case TargetLowering::Custom: { 911 SDValue Res = TLI.LowerOperation(RVal, DAG); 912 if (Res.getNode()) { 913 RVal = Res; 914 RChain = Res.getValue(1); 915 } 916 break; 917 } 918 case TargetLowering::Promote: { 919 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT); 920 assert(NVT.getSizeInBits() == VT.getSizeInBits() && 921 "Can only promote loads to same size type"); 922 923 SDValue Res = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getMemOperand()); 924 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res); 925 RChain = Res.getValue(1); 926 break; 927 } 928 } 929 if (RChain.getNode() != Node) { 930 assert(RVal.getNode() != Node && "Load must be completely replaced"); 931 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal); 932 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), RChain); 933 if (UpdatedNodes) { 934 UpdatedNodes->insert(RVal.getNode()); 935 UpdatedNodes->insert(RChain.getNode()); 936 } 937 ReplacedNode(Node); 938 } 939 return; 940 } 941 942 EVT SrcVT = LD->getMemoryVT(); 943 unsigned SrcWidth = SrcVT.getSizeInBits(); 944 unsigned Alignment = LD->getAlignment(); 945 bool isVolatile = LD->isVolatile(); 946 bool isNonTemporal = LD->isNonTemporal(); 947 bool isInvariant = LD->isInvariant(); 948 AAMDNodes AAInfo = LD->getAAInfo(); 949 950 if (SrcWidth != SrcVT.getStoreSizeInBits() && 951 // Some targets pretend to have an i1 loading operation, and actually 952 // load an i8. This trick is correct for ZEXTLOAD because the top 7 953 // bits are guaranteed to be zero; it helps the optimizers understand 954 // that these bits are zero. It is also useful for EXTLOAD, since it 955 // tells the optimizers that those bits are undefined. It would be 956 // nice to have an effective generic way of getting these benefits... 957 // Until such a way is found, don't insist on promoting i1 here. 958 (SrcVT != MVT::i1 || 959 TLI.getLoadExtAction(ExtType, Node->getValueType(0), MVT::i1) == 960 TargetLowering::Promote)) { 961 // Promote to a byte-sized load if not loading an integral number of 962 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24. 963 unsigned NewWidth = SrcVT.getStoreSizeInBits(); 964 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth); 965 SDValue Ch; 966 967 // The extra bits are guaranteed to be zero, since we stored them that 968 // way. A zext load from NVT thus automatically gives zext from SrcVT. 969 970 ISD::LoadExtType NewExtType = 971 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD; 972 973 SDValue Result = 974 DAG.getExtLoad(NewExtType, dl, Node->getValueType(0), 975 Chain, Ptr, LD->getPointerInfo(), 976 NVT, isVolatile, isNonTemporal, isInvariant, Alignment, 977 AAInfo); 978 979 Ch = Result.getValue(1); // The chain. 980 981 if (ExtType == ISD::SEXTLOAD) 982 // Having the top bits zero doesn't help when sign extending. 983 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, 984 Result.getValueType(), 985 Result, DAG.getValueType(SrcVT)); 986 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType()) 987 // All the top bits are guaranteed to be zero - inform the optimizers. 988 Result = DAG.getNode(ISD::AssertZext, dl, 989 Result.getValueType(), Result, 990 DAG.getValueType(SrcVT)); 991 992 Value = Result; 993 Chain = Ch; 994 } else if (SrcWidth & (SrcWidth - 1)) { 995 // If not loading a power-of-2 number of bits, expand as two loads. 996 assert(!SrcVT.isVector() && "Unsupported extload!"); 997 unsigned RoundWidth = 1 << Log2_32(SrcWidth); 998 assert(RoundWidth < SrcWidth); 999 unsigned ExtraWidth = SrcWidth - RoundWidth; 1000 assert(ExtraWidth < RoundWidth); 1001 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) && 1002 "Load size not an integral number of bytes!"); 1003 EVT RoundVT = EVT::getIntegerVT(*DAG.getContext(), RoundWidth); 1004 EVT ExtraVT = EVT::getIntegerVT(*DAG.getContext(), ExtraWidth); 1005 SDValue Lo, Hi, Ch; 1006 unsigned IncrementSize; 1007 auto &DL = DAG.getDataLayout(); 1008 1009 if (DL.isLittleEndian()) { 1010 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16) 1011 // Load the bottom RoundWidth bits. 1012 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, Node->getValueType(0), 1013 Chain, Ptr, 1014 LD->getPointerInfo(), RoundVT, isVolatile, 1015 isNonTemporal, isInvariant, Alignment, AAInfo); 1016 1017 // Load the remaining ExtraWidth bits. 1018 IncrementSize = RoundWidth / 8; 1019 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 1020 DAG.getConstant(IncrementSize, dl, 1021 Ptr.getValueType())); 1022 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr, 1023 LD->getPointerInfo().getWithOffset(IncrementSize), 1024 ExtraVT, isVolatile, isNonTemporal, isInvariant, 1025 MinAlign(Alignment, IncrementSize), AAInfo); 1026 1027 // Build a factor node to remember that this load is independent of 1028 // the other one. 1029 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), 1030 Hi.getValue(1)); 1031 1032 // Move the top bits to the right place. 1033 Hi = DAG.getNode( 1034 ISD::SHL, dl, Hi.getValueType(), Hi, 1035 DAG.getConstant(RoundWidth, dl, 1036 TLI.getShiftAmountTy(Hi.getValueType(), DL))); 1037 1038 // Join the hi and lo parts. 1039 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi); 1040 } else { 1041 // Big endian - avoid unaligned loads. 1042 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8 1043 // Load the top RoundWidth bits. 1044 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Chain, Ptr, 1045 LD->getPointerInfo(), RoundVT, isVolatile, 1046 isNonTemporal, isInvariant, Alignment, AAInfo); 1047 1048 // Load the remaining ExtraWidth bits. 1049 IncrementSize = RoundWidth / 8; 1050 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, 1051 DAG.getConstant(IncrementSize, dl, 1052 Ptr.getValueType())); 1053 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, 1054 dl, Node->getValueType(0), Chain, Ptr, 1055 LD->getPointerInfo().getWithOffset(IncrementSize), 1056 ExtraVT, isVolatile, isNonTemporal, isInvariant, 1057 MinAlign(Alignment, IncrementSize), AAInfo); 1058 1059 // Build a factor node to remember that this load is independent of 1060 // the other one. 1061 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1), 1062 Hi.getValue(1)); 1063 1064 // Move the top bits to the right place. 1065 Hi = DAG.getNode( 1066 ISD::SHL, dl, Hi.getValueType(), Hi, 1067 DAG.getConstant(ExtraWidth, dl, 1068 TLI.getShiftAmountTy(Hi.getValueType(), DL))); 1069 1070 // Join the hi and lo parts. 1071 Value = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi); 1072 } 1073 1074 Chain = Ch; 1075 } else { 1076 bool isCustom = false; 1077 switch (TLI.getLoadExtAction(ExtType, Node->getValueType(0), 1078 SrcVT.getSimpleVT())) { 1079 default: llvm_unreachable("This action is not supported yet!"); 1080 case TargetLowering::Custom: 1081 isCustom = true; 1082 // FALLTHROUGH 1083 case TargetLowering::Legal: { 1084 Value = SDValue(Node, 0); 1085 Chain = SDValue(Node, 1); 1086 1087 if (isCustom) { 1088 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG); 1089 if (Res.getNode()) { 1090 Value = Res; 1091 Chain = Res.getValue(1); 1092 } 1093 } else { 1094 // If this is an unaligned load and the target doesn't support 1095 // it, expand it. 1096 EVT MemVT = LD->getMemoryVT(); 1097 unsigned AS = LD->getAddressSpace(); 1098 unsigned Align = LD->getAlignment(); 1099 if (!TLI.allowsMisalignedMemoryAccesses(MemVT, AS, Align)) { 1100 Type *Ty = LD->getMemoryVT().getTypeForEVT(*DAG.getContext()); 1101 unsigned ABIAlignment = DAG.getDataLayout().getABITypeAlignment(Ty); 1102 if (Align < ABIAlignment){ 1103 ExpandUnalignedLoad(cast<LoadSDNode>(Node), DAG, TLI, Value, Chain); 1104 } 1105 } 1106 } 1107 break; 1108 } 1109 case TargetLowering::Expand: 1110 if (!TLI.isLoadExtLegal(ISD::EXTLOAD, Node->getValueType(0), SrcVT)) { 1111 // If the source type is not legal, see if there is a legal extload to 1112 // an intermediate type that we can then extend further. 1113 EVT LoadVT = TLI.getRegisterType(SrcVT.getSimpleVT()); 1114 if (TLI.isTypeLegal(SrcVT) || // Same as SrcVT == LoadVT? 1115 TLI.isLoadExtLegal(ExtType, LoadVT, SrcVT)) { 1116 // If we are loading a legal type, this is a non-extload followed by a 1117 // full extend. 1118 ISD::LoadExtType MidExtType = 1119 (LoadVT == SrcVT) ? ISD::NON_EXTLOAD : ExtType; 1120 1121 SDValue Load = DAG.getExtLoad(MidExtType, dl, LoadVT, Chain, Ptr, 1122 SrcVT, LD->getMemOperand()); 1123 unsigned ExtendOp = 1124 ISD::getExtForLoadExtType(SrcVT.isFloatingPoint(), ExtType); 1125 Value = DAG.getNode(ExtendOp, dl, Node->getValueType(0), Load); 1126 Chain = Load.getValue(1); 1127 break; 1128 } 1129 } 1130 1131 assert(!SrcVT.isVector() && 1132 "Vector Loads are handled in LegalizeVectorOps"); 1133 1134 // FIXME: This does not work for vectors on most targets. Sign- 1135 // and zero-extend operations are currently folded into extending 1136 // loads, whether they are legal or not, and then we end up here 1137 // without any support for legalizing them. 1138 assert(ExtType != ISD::EXTLOAD && 1139 "EXTLOAD should always be supported!"); 1140 // Turn the unsupported load into an EXTLOAD followed by an 1141 // explicit zero/sign extend inreg. 1142 SDValue Result = DAG.getExtLoad(ISD::EXTLOAD, dl, 1143 Node->getValueType(0), 1144 Chain, Ptr, SrcVT, 1145 LD->getMemOperand()); 1146 SDValue ValRes; 1147 if (ExtType == ISD::SEXTLOAD) 1148 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, 1149 Result.getValueType(), 1150 Result, DAG.getValueType(SrcVT)); 1151 else 1152 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT.getScalarType()); 1153 Value = ValRes; 1154 Chain = Result.getValue(1); 1155 break; 1156 } 1157 } 1158 1159 // Since loads produce two values, make sure to remember that we legalized 1160 // both of them. 1161 if (Chain.getNode() != Node) { 1162 assert(Value.getNode() != Node && "Load must be completely replaced"); 1163 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Value); 1164 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain); 1165 if (UpdatedNodes) { 1166 UpdatedNodes->insert(Value.getNode()); 1167 UpdatedNodes->insert(Chain.getNode()); 1168 } 1169 ReplacedNode(Node); 1170 } 1171 } 1172 1173 /// Return a legal replacement for the given operation, with all legal operands. 1174 void SelectionDAGLegalize::LegalizeOp(SDNode *Node) { 1175 DEBUG(dbgs() << "\nLegalizing: "; Node->dump(&DAG)); 1176 1177 if (Node->getOpcode() == ISD::TargetConstant) // Allow illegal target nodes. 1178 return; 1179 1180 #ifndef NDEBUG 1181 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) 1182 assert(TLI.getTypeAction(*DAG.getContext(), Node->getValueType(i)) == 1183 TargetLowering::TypeLegal && 1184 "Unexpected illegal type!"); 1185 1186 for (const SDValue &Op : Node->op_values()) 1187 assert((TLI.getTypeAction(*DAG.getContext(), 1188 Op.getValueType()) == TargetLowering::TypeLegal || 1189 Op.getOpcode() == ISD::TargetConstant) && 1190 "Unexpected illegal type!"); 1191 #endif 1192 1193 // Figure out the correct action; the way to query this varies by opcode 1194 TargetLowering::LegalizeAction Action = TargetLowering::Legal; 1195 bool SimpleFinishLegalizing = true; 1196 switch (Node->getOpcode()) { 1197 case ISD::INTRINSIC_W_CHAIN: 1198 case ISD::INTRINSIC_WO_CHAIN: 1199 case ISD::INTRINSIC_VOID: 1200 case ISD::STACKSAVE: 1201 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other); 1202 break; 1203 case ISD::VAARG: 1204 Action = TLI.getOperationAction(Node->getOpcode(), 1205 Node->getValueType(0)); 1206 if (Action != TargetLowering::Promote) 1207 Action = TLI.getOperationAction(Node->getOpcode(), MVT::Other); 1208 break; 1209 case ISD::FP_TO_FP16: 1210 case ISD::SINT_TO_FP: 1211 case ISD::UINT_TO_FP: 1212 case ISD::EXTRACT_VECTOR_ELT: 1213 Action = TLI.getOperationAction(Node->getOpcode(), 1214 Node->getOperand(0).getValueType()); 1215 break; 1216 case ISD::FP_ROUND_INREG: 1217 case ISD::SIGN_EXTEND_INREG: { 1218 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); 1219 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); 1220 break; 1221 } 1222 case ISD::ATOMIC_STORE: { 1223 Action = TLI.getOperationAction(Node->getOpcode(), 1224 Node->getOperand(2).getValueType()); 1225 break; 1226 } 1227 case ISD::SELECT_CC: 1228 case ISD::SETCC: 1229 case ISD::BR_CC: { 1230 unsigned CCOperand = Node->getOpcode() == ISD::SELECT_CC ? 4 : 1231 Node->getOpcode() == ISD::SETCC ? 2 : 1; 1232 unsigned CompareOperand = Node->getOpcode() == ISD::BR_CC ? 2 : 0; 1233 MVT OpVT = Node->getOperand(CompareOperand).getSimpleValueType(); 1234 ISD::CondCode CCCode = 1235 cast<CondCodeSDNode>(Node->getOperand(CCOperand))->get(); 1236 Action = TLI.getCondCodeAction(CCCode, OpVT); 1237 if (Action == TargetLowering::Legal) { 1238 if (Node->getOpcode() == ISD::SELECT_CC) 1239 Action = TLI.getOperationAction(Node->getOpcode(), 1240 Node->getValueType(0)); 1241 else 1242 Action = TLI.getOperationAction(Node->getOpcode(), OpVT); 1243 } 1244 break; 1245 } 1246 case ISD::LOAD: 1247 case ISD::STORE: 1248 // FIXME: Model these properly. LOAD and STORE are complicated, and 1249 // STORE expects the unlegalized operand in some cases. 1250 SimpleFinishLegalizing = false; 1251 break; 1252 case ISD::CALLSEQ_START: 1253 case ISD::CALLSEQ_END: 1254 // FIXME: This shouldn't be necessary. These nodes have special properties 1255 // dealing with the recursive nature of legalization. Removing this 1256 // special case should be done as part of making LegalizeDAG non-recursive. 1257 SimpleFinishLegalizing = false; 1258 break; 1259 case ISD::EXTRACT_ELEMENT: 1260 case ISD::FLT_ROUNDS_: 1261 case ISD::FPOWI: 1262 case ISD::MERGE_VALUES: 1263 case ISD::EH_RETURN: 1264 case ISD::FRAME_TO_ARGS_OFFSET: 1265 case ISD::EH_SJLJ_SETJMP: 1266 case ISD::EH_SJLJ_LONGJMP: 1267 // These operations lie about being legal: when they claim to be legal, 1268 // they should actually be expanded. 1269 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); 1270 if (Action == TargetLowering::Legal) 1271 Action = TargetLowering::Expand; 1272 break; 1273 case ISD::INIT_TRAMPOLINE: 1274 case ISD::ADJUST_TRAMPOLINE: 1275 case ISD::FRAMEADDR: 1276 case ISD::RETURNADDR: 1277 // These operations lie about being legal: when they claim to be legal, 1278 // they should actually be custom-lowered. 1279 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); 1280 if (Action == TargetLowering::Legal) 1281 Action = TargetLowering::Custom; 1282 break; 1283 case ISD::READ_REGISTER: 1284 case ISD::WRITE_REGISTER: 1285 // Named register is legal in the DAG, but blocked by register name 1286 // selection if not implemented by target (to chose the correct register) 1287 // They'll be converted to Copy(To/From)Reg. 1288 Action = TargetLowering::Legal; 1289 break; 1290 case ISD::DEBUGTRAP: 1291 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); 1292 if (Action == TargetLowering::Expand) { 1293 // replace ISD::DEBUGTRAP with ISD::TRAP 1294 SDValue NewVal; 1295 NewVal = DAG.getNode(ISD::TRAP, SDLoc(Node), Node->getVTList(), 1296 Node->getOperand(0)); 1297 ReplaceNode(Node, NewVal.getNode()); 1298 LegalizeOp(NewVal.getNode()); 1299 return; 1300 } 1301 break; 1302 1303 default: 1304 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) { 1305 Action = TargetLowering::Legal; 1306 } else { 1307 Action = TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)); 1308 } 1309 break; 1310 } 1311 1312 if (SimpleFinishLegalizing) { 1313 SDNode *NewNode = Node; 1314 switch (Node->getOpcode()) { 1315 default: break; 1316 case ISD::SHL: 1317 case ISD::SRL: 1318 case ISD::SRA: 1319 case ISD::ROTL: 1320 case ISD::ROTR: 1321 // Legalizing shifts/rotates requires adjusting the shift amount 1322 // to the appropriate width. 1323 if (!Node->getOperand(1).getValueType().isVector()) { 1324 SDValue SAO = 1325 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(), 1326 Node->getOperand(1)); 1327 HandleSDNode Handle(SAO); 1328 LegalizeOp(SAO.getNode()); 1329 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0), 1330 Handle.getValue()); 1331 } 1332 break; 1333 case ISD::SRL_PARTS: 1334 case ISD::SRA_PARTS: 1335 case ISD::SHL_PARTS: 1336 // Legalizing shifts/rotates requires adjusting the shift amount 1337 // to the appropriate width. 1338 if (!Node->getOperand(2).getValueType().isVector()) { 1339 SDValue SAO = 1340 DAG.getShiftAmountOperand(Node->getOperand(0).getValueType(), 1341 Node->getOperand(2)); 1342 HandleSDNode Handle(SAO); 1343 LegalizeOp(SAO.getNode()); 1344 NewNode = DAG.UpdateNodeOperands(Node, Node->getOperand(0), 1345 Node->getOperand(1), 1346 Handle.getValue()); 1347 } 1348 break; 1349 } 1350 1351 if (NewNode != Node) { 1352 ReplaceNode(Node, NewNode); 1353 Node = NewNode; 1354 } 1355 switch (Action) { 1356 case TargetLowering::Legal: 1357 return; 1358 case TargetLowering::Custom: { 1359 // FIXME: The handling for custom lowering with multiple results is 1360 // a complete mess. 1361 SDValue Res = TLI.LowerOperation(SDValue(Node, 0), DAG); 1362 if (Res.getNode()) { 1363 if (!(Res.getNode() != Node || Res.getResNo() != 0)) 1364 return; 1365 1366 if (Node->getNumValues() == 1) { 1367 // We can just directly replace this node with the lowered value. 1368 ReplaceNode(SDValue(Node, 0), Res); 1369 return; 1370 } 1371 1372 SmallVector<SDValue, 8> ResultVals; 1373 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) 1374 ResultVals.push_back(Res.getValue(i)); 1375 ReplaceNode(Node, ResultVals.data()); 1376 return; 1377 } 1378 } 1379 // FALL THROUGH 1380 case TargetLowering::Expand: 1381 ExpandNode(Node); 1382 return; 1383 case TargetLowering::Promote: 1384 PromoteNode(Node); 1385 return; 1386 } 1387 } 1388 1389 switch (Node->getOpcode()) { 1390 default: 1391 #ifndef NDEBUG 1392 dbgs() << "NODE: "; 1393 Node->dump( &DAG); 1394 dbgs() << "\n"; 1395 #endif 1396 llvm_unreachable("Do not know how to legalize this operator!"); 1397 1398 case ISD::CALLSEQ_START: 1399 case ISD::CALLSEQ_END: 1400 break; 1401 case ISD::LOAD: { 1402 return LegalizeLoadOps(Node); 1403 } 1404 case ISD::STORE: { 1405 return LegalizeStoreOps(Node); 1406 } 1407 } 1408 } 1409 1410 SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) { 1411 SDValue Vec = Op.getOperand(0); 1412 SDValue Idx = Op.getOperand(1); 1413 SDLoc dl(Op); 1414 1415 // Before we generate a new store to a temporary stack slot, see if there is 1416 // already one that we can use. There often is because when we scalarize 1417 // vector operations (using SelectionDAG::UnrollVectorOp for example) a whole 1418 // series of EXTRACT_VECTOR_ELT nodes are generated, one for each element in 1419 // the vector. If all are expanded here, we don't want one store per vector 1420 // element. 1421 SDValue StackPtr, Ch; 1422 for (SDNode::use_iterator UI = Vec.getNode()->use_begin(), 1423 UE = Vec.getNode()->use_end(); UI != UE; ++UI) { 1424 SDNode *User = *UI; 1425 if (StoreSDNode *ST = dyn_cast<StoreSDNode>(User)) { 1426 if (ST->isIndexed() || ST->isTruncatingStore() || 1427 ST->getValue() != Vec) 1428 continue; 1429 1430 // Make sure that nothing else could have stored into the destination of 1431 // this store. 1432 if (!ST->getChain().reachesChainWithoutSideEffects(DAG.getEntryNode())) 1433 continue; 1434 1435 StackPtr = ST->getBasePtr(); 1436 Ch = SDValue(ST, 0); 1437 break; 1438 } 1439 } 1440 1441 if (!Ch.getNode()) { 1442 // Store the value to a temporary stack slot, then LOAD the returned part. 1443 StackPtr = DAG.CreateStackTemporary(Vec.getValueType()); 1444 Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, 1445 MachinePointerInfo(), false, false, 0); 1446 } 1447 1448 // Add the offset to the index. 1449 unsigned EltSize = 1450 Vec.getValueType().getVectorElementType().getSizeInBits()/8; 1451 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx, 1452 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType())); 1453 1454 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout())); 1455 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr); 1456 1457 SDValue NewLoad; 1458 1459 if (Op.getValueType().isVector()) 1460 NewLoad = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, 1461 MachinePointerInfo(), false, false, false, 0); 1462 else 1463 NewLoad = DAG.getExtLoad( 1464 ISD::EXTLOAD, dl, Op.getValueType(), Ch, StackPtr, MachinePointerInfo(), 1465 Vec.getValueType().getVectorElementType(), false, false, false, 0); 1466 1467 // Replace the chain going out of the store, by the one out of the load. 1468 DAG.ReplaceAllUsesOfValueWith(Ch, SDValue(NewLoad.getNode(), 1)); 1469 1470 // We introduced a cycle though, so update the loads operands, making sure 1471 // to use the original store's chain as an incoming chain. 1472 SmallVector<SDValue, 6> NewLoadOperands(NewLoad->op_begin(), 1473 NewLoad->op_end()); 1474 NewLoadOperands[0] = Ch; 1475 NewLoad = 1476 SDValue(DAG.UpdateNodeOperands(NewLoad.getNode(), NewLoadOperands), 0); 1477 return NewLoad; 1478 } 1479 1480 SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) { 1481 assert(Op.getValueType().isVector() && "Non-vector insert subvector!"); 1482 1483 SDValue Vec = Op.getOperand(0); 1484 SDValue Part = Op.getOperand(1); 1485 SDValue Idx = Op.getOperand(2); 1486 SDLoc dl(Op); 1487 1488 // Store the value to a temporary stack slot, then LOAD the returned part. 1489 1490 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType()); 1491 int FI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex(); 1492 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI); 1493 1494 // First store the whole vector. 1495 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, PtrInfo, 1496 false, false, 0); 1497 1498 // Then store the inserted part. 1499 1500 // Add the offset to the index. 1501 unsigned EltSize = 1502 Vec.getValueType().getVectorElementType().getSizeInBits()/8; 1503 1504 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx, 1505 DAG.getConstant(EltSize, SDLoc(Vec), Idx.getValueType())); 1506 Idx = DAG.getZExtOrTrunc(Idx, dl, TLI.getPointerTy(DAG.getDataLayout())); 1507 1508 SDValue SubStackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, 1509 StackPtr); 1510 1511 // Store the subvector. 1512 Ch = DAG.getStore(Ch, dl, Part, SubStackPtr, 1513 MachinePointerInfo(), false, false, 0); 1514 1515 // Finally, load the updated vector. 1516 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, PtrInfo, 1517 false, false, false, 0); 1518 } 1519 1520 SDValue SelectionDAGLegalize::ExpandVectorBuildThroughStack(SDNode* Node) { 1521 // We can't handle this case efficiently. Allocate a sufficiently 1522 // aligned object on the stack, store each element into it, then load 1523 // the result as a vector. 1524 // Create the stack frame object. 1525 EVT VT = Node->getValueType(0); 1526 EVT EltVT = VT.getVectorElementType(); 1527 SDLoc dl(Node); 1528 SDValue FIPtr = DAG.CreateStackTemporary(VT); 1529 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex(); 1530 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(FI); 1531 1532 // Emit a store of each element to the stack slot. 1533 SmallVector<SDValue, 8> Stores; 1534 unsigned TypeByteSize = EltVT.getSizeInBits() / 8; 1535 // Store (in the right endianness) the elements to memory. 1536 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) { 1537 // Ignore undef elements. 1538 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue; 1539 1540 unsigned Offset = TypeByteSize*i; 1541 1542 SDValue Idx = DAG.getConstant(Offset, dl, FIPtr.getValueType()); 1543 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx); 1544 1545 // If the destination vector element type is narrower than the source 1546 // element type, only store the bits necessary. 1547 if (EltVT.bitsLT(Node->getOperand(i).getValueType().getScalarType())) { 1548 Stores.push_back(DAG.getTruncStore(DAG.getEntryNode(), dl, 1549 Node->getOperand(i), Idx, 1550 PtrInfo.getWithOffset(Offset), 1551 EltVT, false, false, 0)); 1552 } else 1553 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, 1554 Node->getOperand(i), Idx, 1555 PtrInfo.getWithOffset(Offset), 1556 false, false, 0)); 1557 } 1558 1559 SDValue StoreChain; 1560 if (!Stores.empty()) // Not all undef elements? 1561 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Stores); 1562 else 1563 StoreChain = DAG.getEntryNode(); 1564 1565 // Result is a load from the stack slot. 1566 return DAG.getLoad(VT, dl, StoreChain, FIPtr, PtrInfo, 1567 false, false, false, 0); 1568 } 1569 1570 SDValue SelectionDAGLegalize::ExpandFCOPYSIGN(SDNode* Node) { 1571 SDLoc dl(Node); 1572 SDValue Tmp1 = Node->getOperand(0); 1573 SDValue Tmp2 = Node->getOperand(1); 1574 1575 // Get the sign bit of the RHS. First obtain a value that has the same 1576 // sign as the sign bit, i.e. negative if and only if the sign bit is 1. 1577 SDValue SignBit; 1578 EVT FloatVT = Tmp2.getValueType(); 1579 EVT IVT = EVT::getIntegerVT(*DAG.getContext(), FloatVT.getSizeInBits()); 1580 if (TLI.isTypeLegal(IVT)) { 1581 // Convert to an integer with the same sign bit. 1582 SignBit = DAG.getNode(ISD::BITCAST, dl, IVT, Tmp2); 1583 } else { 1584 auto &DL = DAG.getDataLayout(); 1585 // Store the float to memory, then load the sign part out as an integer. 1586 MVT LoadTy = TLI.getPointerTy(DL); 1587 // First create a temporary that is aligned for both the load and store. 1588 SDValue StackPtr = DAG.CreateStackTemporary(FloatVT, LoadTy); 1589 // Then store the float to it. 1590 SDValue Ch = 1591 DAG.getStore(DAG.getEntryNode(), dl, Tmp2, StackPtr, MachinePointerInfo(), 1592 false, false, 0); 1593 if (DL.isBigEndian()) { 1594 assert(FloatVT.isByteSized() && "Unsupported floating point type!"); 1595 // Load out a legal integer with the same sign bit as the float. 1596 SignBit = DAG.getLoad(LoadTy, dl, Ch, StackPtr, MachinePointerInfo(), 1597 false, false, false, 0); 1598 } else { // Little endian 1599 SDValue LoadPtr = StackPtr; 1600 // The float may be wider than the integer we are going to load. Advance 1601 // the pointer so that the loaded integer will contain the sign bit. 1602 unsigned Strides = (FloatVT.getSizeInBits()-1)/LoadTy.getSizeInBits(); 1603 unsigned ByteOffset = (Strides * LoadTy.getSizeInBits()) / 8; 1604 LoadPtr = DAG.getNode(ISD::ADD, dl, LoadPtr.getValueType(), LoadPtr, 1605 DAG.getConstant(ByteOffset, dl, 1606 LoadPtr.getValueType())); 1607 // Load a legal integer containing the sign bit. 1608 SignBit = DAG.getLoad(LoadTy, dl, Ch, LoadPtr, MachinePointerInfo(), 1609 false, false, false, 0); 1610 // Move the sign bit to the top bit of the loaded integer. 1611 unsigned BitShift = LoadTy.getSizeInBits() - 1612 (FloatVT.getSizeInBits() - 8 * ByteOffset); 1613 assert(BitShift < LoadTy.getSizeInBits() && "Pointer advanced wrong?"); 1614 if (BitShift) 1615 SignBit = DAG.getNode( 1616 ISD::SHL, dl, LoadTy, SignBit, 1617 DAG.getConstant(BitShift, dl, 1618 TLI.getShiftAmountTy(SignBit.getValueType(), DL))); 1619 } 1620 } 1621 // Now get the sign bit proper, by seeing whether the value is negative. 1622 SignBit = DAG.getSetCC(dl, getSetCCResultType(SignBit.getValueType()), 1623 SignBit, 1624 DAG.getConstant(0, dl, SignBit.getValueType()), 1625 ISD::SETLT); 1626 // Get the absolute value of the result. 1627 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1); 1628 // Select between the nabs and abs value based on the sign bit of 1629 // the input. 1630 return DAG.getSelect(dl, AbsVal.getValueType(), SignBit, 1631 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(), AbsVal), 1632 AbsVal); 1633 } 1634 1635 void SelectionDAGLegalize::ExpandDYNAMIC_STACKALLOC(SDNode* Node, 1636 SmallVectorImpl<SDValue> &Results) { 1637 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore(); 1638 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and" 1639 " not tell us which reg is the stack pointer!"); 1640 SDLoc dl(Node); 1641 EVT VT = Node->getValueType(0); 1642 SDValue Tmp1 = SDValue(Node, 0); 1643 SDValue Tmp2 = SDValue(Node, 1); 1644 SDValue Tmp3 = Node->getOperand(2); 1645 SDValue Chain = Tmp1.getOperand(0); 1646 1647 // Chain the dynamic stack allocation so that it doesn't modify the stack 1648 // pointer when other instructions are using the stack. 1649 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, dl, true), dl); 1650 1651 SDValue Size = Tmp2.getOperand(1); 1652 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT); 1653 Chain = SP.getValue(1); 1654 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue(); 1655 unsigned StackAlign = 1656 DAG.getSubtarget().getFrameLowering()->getStackAlignment(); 1657 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value 1658 if (Align > StackAlign) 1659 Tmp1 = DAG.getNode(ISD::AND, dl, VT, Tmp1, 1660 DAG.getConstant(-(uint64_t)Align, dl, VT)); 1661 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain 1662 1663 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, dl, true), 1664 DAG.getIntPtrConstant(0, dl, true), SDValue(), dl); 1665 1666 Results.push_back(Tmp1); 1667 Results.push_back(Tmp2); 1668 } 1669 1670 /// Legalize a SETCC with given LHS and RHS and condition code CC on the current 1671 /// target. 1672 /// 1673 /// If the SETCC has been legalized using AND / OR, then the legalized node 1674 /// will be stored in LHS. RHS and CC will be set to SDValue(). NeedInvert 1675 /// will be set to false. 1676 /// 1677 /// If the SETCC has been legalized by using getSetCCSwappedOperands(), 1678 /// then the values of LHS and RHS will be swapped, CC will be set to the 1679 /// new condition, and NeedInvert will be set to false. 1680 /// 1681 /// If the SETCC has been legalized using the inverse condcode, then LHS and 1682 /// RHS will be unchanged, CC will set to the inverted condcode, and NeedInvert 1683 /// will be set to true. The caller must invert the result of the SETCC with 1684 /// SelectionDAG::getLogicalNOT() or take equivalent action to swap the effect 1685 /// of a true/false result. 1686 /// 1687 /// \returns true if the SetCC has been legalized, false if it hasn't. 1688 bool SelectionDAGLegalize::LegalizeSetCCCondCode(EVT VT, 1689 SDValue &LHS, SDValue &RHS, 1690 SDValue &CC, 1691 bool &NeedInvert, 1692 SDLoc dl) { 1693 MVT OpVT = LHS.getSimpleValueType(); 1694 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get(); 1695 NeedInvert = false; 1696 switch (TLI.getCondCodeAction(CCCode, OpVT)) { 1697 default: llvm_unreachable("Unknown condition code action!"); 1698 case TargetLowering::Legal: 1699 // Nothing to do. 1700 break; 1701 case TargetLowering::Expand: { 1702 ISD::CondCode InvCC = ISD::getSetCCSwappedOperands(CCCode); 1703 if (TLI.isCondCodeLegal(InvCC, OpVT)) { 1704 std::swap(LHS, RHS); 1705 CC = DAG.getCondCode(InvCC); 1706 return true; 1707 } 1708 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID; 1709 unsigned Opc = 0; 1710 switch (CCCode) { 1711 default: llvm_unreachable("Don't know how to expand this condition!"); 1712 case ISD::SETO: 1713 assert(TLI.getCondCodeAction(ISD::SETOEQ, OpVT) 1714 == TargetLowering::Legal 1715 && "If SETO is expanded, SETOEQ must be legal!"); 1716 CC1 = ISD::SETOEQ; CC2 = ISD::SETOEQ; Opc = ISD::AND; break; 1717 case ISD::SETUO: 1718 assert(TLI.getCondCodeAction(ISD::SETUNE, OpVT) 1719 == TargetLowering::Legal 1720 && "If SETUO is expanded, SETUNE must be legal!"); 1721 CC1 = ISD::SETUNE; CC2 = ISD::SETUNE; Opc = ISD::OR; break; 1722 case ISD::SETOEQ: 1723 case ISD::SETOGT: 1724 case ISD::SETOGE: 1725 case ISD::SETOLT: 1726 case ISD::SETOLE: 1727 case ISD::SETONE: 1728 case ISD::SETUEQ: 1729 case ISD::SETUNE: 1730 case ISD::SETUGT: 1731 case ISD::SETUGE: 1732 case ISD::SETULT: 1733 case ISD::SETULE: 1734 // If we are floating point, assign and break, otherwise fall through. 1735 if (!OpVT.isInteger()) { 1736 // We can use the 4th bit to tell if we are the unordered 1737 // or ordered version of the opcode. 1738 CC2 = ((unsigned)CCCode & 0x8U) ? ISD::SETUO : ISD::SETO; 1739 Opc = ((unsigned)CCCode & 0x8U) ? ISD::OR : ISD::AND; 1740 CC1 = (ISD::CondCode)(((int)CCCode & 0x7) | 0x10); 1741 break; 1742 } 1743 // Fallthrough if we are unsigned integer. 1744 case ISD::SETLE: 1745 case ISD::SETGT: 1746 case ISD::SETGE: 1747 case ISD::SETLT: 1748 // We only support using the inverted operation, which is computed above 1749 // and not a different manner of supporting expanding these cases. 1750 llvm_unreachable("Don't know how to expand this condition!"); 1751 case ISD::SETNE: 1752 case ISD::SETEQ: 1753 // Try inverting the result of the inverse condition. 1754 InvCC = CCCode == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ; 1755 if (TLI.isCondCodeLegal(InvCC, OpVT)) { 1756 CC = DAG.getCondCode(InvCC); 1757 NeedInvert = true; 1758 return true; 1759 } 1760 // If inverting the condition didn't work then we have no means to expand 1761 // the condition. 1762 llvm_unreachable("Don't know how to expand this condition!"); 1763 } 1764 1765 SDValue SetCC1, SetCC2; 1766 if (CCCode != ISD::SETO && CCCode != ISD::SETUO) { 1767 // If we aren't the ordered or unorder operation, 1768 // then the pattern is (LHS CC1 RHS) Opc (LHS CC2 RHS). 1769 SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1); 1770 SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2); 1771 } else { 1772 // Otherwise, the pattern is (LHS CC1 LHS) Opc (RHS CC2 RHS) 1773 SetCC1 = DAG.getSetCC(dl, VT, LHS, LHS, CC1); 1774 SetCC2 = DAG.getSetCC(dl, VT, RHS, RHS, CC2); 1775 } 1776 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2); 1777 RHS = SDValue(); 1778 CC = SDValue(); 1779 return true; 1780 } 1781 } 1782 return false; 1783 } 1784 1785 /// Emit a store/load combination to the stack. This stores 1786 /// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does 1787 /// a load from the stack slot to DestVT, extending it if needed. 1788 /// The resultant code need not be legal. 1789 SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp, 1790 EVT SlotVT, 1791 EVT DestVT, 1792 SDLoc dl) { 1793 // Create the stack frame object. 1794 unsigned SrcAlign = DAG.getDataLayout().getPrefTypeAlignment( 1795 SrcOp.getValueType().getTypeForEVT(*DAG.getContext())); 1796 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign); 1797 1798 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr); 1799 int SPFI = StackPtrFI->getIndex(); 1800 MachinePointerInfo PtrInfo = MachinePointerInfo::getFixedStack(SPFI); 1801 1802 unsigned SrcSize = SrcOp.getValueType().getSizeInBits(); 1803 unsigned SlotSize = SlotVT.getSizeInBits(); 1804 unsigned DestSize = DestVT.getSizeInBits(); 1805 Type *DestType = DestVT.getTypeForEVT(*DAG.getContext()); 1806 unsigned DestAlign = DAG.getDataLayout().getPrefTypeAlignment(DestType); 1807 1808 // Emit a store to the stack slot. Use a truncstore if the input value is 1809 // later than DestVT. 1810 SDValue Store; 1811 1812 if (SrcSize > SlotSize) 1813 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, 1814 PtrInfo, SlotVT, false, false, SrcAlign); 1815 else { 1816 assert(SrcSize == SlotSize && "Invalid store"); 1817 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, 1818 PtrInfo, false, false, SrcAlign); 1819 } 1820 1821 // Result is a load from the stack slot. 1822 if (SlotSize == DestSize) 1823 return DAG.getLoad(DestVT, dl, Store, FIPtr, PtrInfo, 1824 false, false, false, DestAlign); 1825 1826 assert(SlotSize < DestSize && "Unknown extension!"); 1827 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, 1828 PtrInfo, SlotVT, false, false, false, DestAlign); 1829 } 1830 1831 SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) { 1832 SDLoc dl(Node); 1833 // Create a vector sized/aligned stack slot, store the value to element #0, 1834 // then load the whole vector back out. 1835 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0)); 1836 1837 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr); 1838 int SPFI = StackPtrFI->getIndex(); 1839 1840 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0), 1841 StackPtr, 1842 MachinePointerInfo::getFixedStack(SPFI), 1843 Node->getValueType(0).getVectorElementType(), 1844 false, false, 0); 1845 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr, 1846 MachinePointerInfo::getFixedStack(SPFI), 1847 false, false, false, 0); 1848 } 1849 1850 static bool 1851 ExpandBVWithShuffles(SDNode *Node, SelectionDAG &DAG, 1852 const TargetLowering &TLI, SDValue &Res) { 1853 unsigned NumElems = Node->getNumOperands(); 1854 SDLoc dl(Node); 1855 EVT VT = Node->getValueType(0); 1856 1857 // Try to group the scalars into pairs, shuffle the pairs together, then 1858 // shuffle the pairs of pairs together, etc. until the vector has 1859 // been built. This will work only if all of the necessary shuffle masks 1860 // are legal. 1861 1862 // We do this in two phases; first to check the legality of the shuffles, 1863 // and next, assuming that all shuffles are legal, to create the new nodes. 1864 for (int Phase = 0; Phase < 2; ++Phase) { 1865 SmallVector<std::pair<SDValue, SmallVector<int, 16> >, 16> IntermedVals, 1866 NewIntermedVals; 1867 for (unsigned i = 0; i < NumElems; ++i) { 1868 SDValue V = Node->getOperand(i); 1869 if (V.getOpcode() == ISD::UNDEF) 1870 continue; 1871 1872 SDValue Vec; 1873 if (Phase) 1874 Vec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, V); 1875 IntermedVals.push_back(std::make_pair(Vec, SmallVector<int, 16>(1, i))); 1876 } 1877 1878 while (IntermedVals.size() > 2) { 1879 NewIntermedVals.clear(); 1880 for (unsigned i = 0, e = (IntermedVals.size() & ~1u); i < e; i += 2) { 1881 // This vector and the next vector are shuffled together (simply to 1882 // append the one to the other). 1883 SmallVector<int, 16> ShuffleVec(NumElems, -1); 1884 1885 SmallVector<int, 16> FinalIndices; 1886 FinalIndices.reserve(IntermedVals[i].second.size() + 1887 IntermedVals[i+1].second.size()); 1888 1889 int k = 0; 1890 for (unsigned j = 0, f = IntermedVals[i].second.size(); j != f; 1891 ++j, ++k) { 1892 ShuffleVec[k] = j; 1893 FinalIndices.push_back(IntermedVals[i].second[j]); 1894 } 1895 for (unsigned j = 0, f = IntermedVals[i+1].second.size(); j != f; 1896 ++j, ++k) { 1897 ShuffleVec[k] = NumElems + j; 1898 FinalIndices.push_back(IntermedVals[i+1].second[j]); 1899 } 1900 1901 SDValue Shuffle; 1902 if (Phase) 1903 Shuffle = DAG.getVectorShuffle(VT, dl, IntermedVals[i].first, 1904 IntermedVals[i+1].first, 1905 ShuffleVec.data()); 1906 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT)) 1907 return false; 1908 NewIntermedVals.push_back( 1909 std::make_pair(Shuffle, std::move(FinalIndices))); 1910 } 1911 1912 // If we had an odd number of defined values, then append the last 1913 // element to the array of new vectors. 1914 if ((IntermedVals.size() & 1) != 0) 1915 NewIntermedVals.push_back(IntermedVals.back()); 1916 1917 IntermedVals.swap(NewIntermedVals); 1918 } 1919 1920 assert(IntermedVals.size() <= 2 && IntermedVals.size() > 0 && 1921 "Invalid number of intermediate vectors"); 1922 SDValue Vec1 = IntermedVals[0].first; 1923 SDValue Vec2; 1924 if (IntermedVals.size() > 1) 1925 Vec2 = IntermedVals[1].first; 1926 else if (Phase) 1927 Vec2 = DAG.getUNDEF(VT); 1928 1929 SmallVector<int, 16> ShuffleVec(NumElems, -1); 1930 for (unsigned i = 0, e = IntermedVals[0].second.size(); i != e; ++i) 1931 ShuffleVec[IntermedVals[0].second[i]] = i; 1932 for (unsigned i = 0, e = IntermedVals[1].second.size(); i != e; ++i) 1933 ShuffleVec[IntermedVals[1].second[i]] = NumElems + i; 1934 1935 if (Phase) 1936 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data()); 1937 else if (!TLI.isShuffleMaskLegal(ShuffleVec, VT)) 1938 return false; 1939 } 1940 1941 return true; 1942 } 1943 1944 /// Expand a BUILD_VECTOR node on targets that don't 1945 /// support the operation, but do support the resultant vector type. 1946 SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) { 1947 unsigned NumElems = Node->getNumOperands(); 1948 SDValue Value1, Value2; 1949 SDLoc dl(Node); 1950 EVT VT = Node->getValueType(0); 1951 EVT OpVT = Node->getOperand(0).getValueType(); 1952 EVT EltVT = VT.getVectorElementType(); 1953 1954 // If the only non-undef value is the low element, turn this into a 1955 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X. 1956 bool isOnlyLowElement = true; 1957 bool MoreThanTwoValues = false; 1958 bool isConstant = true; 1959 for (unsigned i = 0; i < NumElems; ++i) { 1960 SDValue V = Node->getOperand(i); 1961 if (V.getOpcode() == ISD::UNDEF) 1962 continue; 1963 if (i > 0) 1964 isOnlyLowElement = false; 1965 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V)) 1966 isConstant = false; 1967 1968 if (!Value1.getNode()) { 1969 Value1 = V; 1970 } else if (!Value2.getNode()) { 1971 if (V != Value1) 1972 Value2 = V; 1973 } else if (V != Value1 && V != Value2) { 1974 MoreThanTwoValues = true; 1975 } 1976 } 1977 1978 if (!Value1.getNode()) 1979 return DAG.getUNDEF(VT); 1980 1981 if (isOnlyLowElement) 1982 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0)); 1983 1984 // If all elements are constants, create a load from the constant pool. 1985 if (isConstant) { 1986 SmallVector<Constant*, 16> CV; 1987 for (unsigned i = 0, e = NumElems; i != e; ++i) { 1988 if (ConstantFPSDNode *V = 1989 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) { 1990 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue())); 1991 } else if (ConstantSDNode *V = 1992 dyn_cast<ConstantSDNode>(Node->getOperand(i))) { 1993 if (OpVT==EltVT) 1994 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue())); 1995 else { 1996 // If OpVT and EltVT don't match, EltVT is not legal and the 1997 // element values have been promoted/truncated earlier. Undo this; 1998 // we don't want a v16i8 to become a v16i32 for example. 1999 const ConstantInt *CI = V->getConstantIntValue(); 2000 CV.push_back(ConstantInt::get(EltVT.getTypeForEVT(*DAG.getContext()), 2001 CI->getZExtValue())); 2002 } 2003 } else { 2004 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF); 2005 Type *OpNTy = EltVT.getTypeForEVT(*DAG.getContext()); 2006 CV.push_back(UndefValue::get(OpNTy)); 2007 } 2008 } 2009 Constant *CP = ConstantVector::get(CV); 2010 SDValue CPIdx = 2011 DAG.getConstantPool(CP, TLI.getPointerTy(DAG.getDataLayout())); 2012 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); 2013 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx, 2014 MachinePointerInfo::getConstantPool(), 2015 false, false, false, Alignment); 2016 } 2017 2018 SmallSet<SDValue, 16> DefinedValues; 2019 for (unsigned i = 0; i < NumElems; ++i) { 2020 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) 2021 continue; 2022 DefinedValues.insert(Node->getOperand(i)); 2023 } 2024 2025 if (TLI.shouldExpandBuildVectorWithShuffles(VT, DefinedValues.size())) { 2026 if (!MoreThanTwoValues) { 2027 SmallVector<int, 8> ShuffleVec(NumElems, -1); 2028 for (unsigned i = 0; i < NumElems; ++i) { 2029 SDValue V = Node->getOperand(i); 2030 if (V.getOpcode() == ISD::UNDEF) 2031 continue; 2032 ShuffleVec[i] = V == Value1 ? 0 : NumElems; 2033 } 2034 if (TLI.isShuffleMaskLegal(ShuffleVec, Node->getValueType(0))) { 2035 // Get the splatted value into the low element of a vector register. 2036 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1); 2037 SDValue Vec2; 2038 if (Value2.getNode()) 2039 Vec2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value2); 2040 else 2041 Vec2 = DAG.getUNDEF(VT); 2042 2043 // Return shuffle(LowValVec, undef, <0,0,0,0>) 2044 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data()); 2045 } 2046 } else { 2047 SDValue Res; 2048 if (ExpandBVWithShuffles(Node, DAG, TLI, Res)) 2049 return Res; 2050 } 2051 } 2052 2053 // Otherwise, we can't handle this case efficiently. 2054 return ExpandVectorBuildThroughStack(Node); 2055 } 2056 2057 // Expand a node into a call to a libcall. If the result value 2058 // does not fit into a register, return the lo part and set the hi part to the 2059 // by-reg argument. If it does fit into a single register, return the result 2060 // and leave the Hi part unset. 2061 SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, 2062 bool isSigned) { 2063 TargetLowering::ArgListTy Args; 2064 TargetLowering::ArgListEntry Entry; 2065 for (const SDValue &Op : Node->op_values()) { 2066 EVT ArgVT = Op.getValueType(); 2067 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); 2068 Entry.Node = Op; 2069 Entry.Ty = ArgTy; 2070 Entry.isSExt = isSigned; 2071 Entry.isZExt = !isSigned; 2072 Args.push_back(Entry); 2073 } 2074 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), 2075 TLI.getPointerTy(DAG.getDataLayout())); 2076 2077 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext()); 2078 2079 // By default, the input chain to this libcall is the entry node of the 2080 // function. If the libcall is going to be emitted as a tail call then 2081 // TLI.isUsedByReturnOnly will change it to the right chain if the return 2082 // node which is being folded has a non-entry input chain. 2083 SDValue InChain = DAG.getEntryNode(); 2084 2085 // isTailCall may be true since the callee does not reference caller stack 2086 // frame. Check if it's in the right position. 2087 SDValue TCChain = InChain; 2088 bool isTailCall = TLI.isInTailCallPosition(DAG, Node, TCChain); 2089 if (isTailCall) 2090 InChain = TCChain; 2091 2092 TargetLowering::CallLoweringInfo CLI(DAG); 2093 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain) 2094 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) 2095 .setTailCall(isTailCall).setSExtResult(isSigned).setZExtResult(!isSigned); 2096 2097 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); 2098 2099 if (!CallInfo.second.getNode()) 2100 // It's a tailcall, return the chain (which is the DAG root). 2101 return DAG.getRoot(); 2102 2103 return CallInfo.first; 2104 } 2105 2106 /// Generate a libcall taking the given operands as arguments 2107 /// and returning a result of type RetVT. 2108 SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, EVT RetVT, 2109 const SDValue *Ops, unsigned NumOps, 2110 bool isSigned, SDLoc dl) { 2111 TargetLowering::ArgListTy Args; 2112 Args.reserve(NumOps); 2113 2114 TargetLowering::ArgListEntry Entry; 2115 for (unsigned i = 0; i != NumOps; ++i) { 2116 Entry.Node = Ops[i]; 2117 Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext()); 2118 Entry.isSExt = isSigned; 2119 Entry.isZExt = !isSigned; 2120 Args.push_back(Entry); 2121 } 2122 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), 2123 TLI.getPointerTy(DAG.getDataLayout())); 2124 2125 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); 2126 2127 TargetLowering::CallLoweringInfo CLI(DAG); 2128 CLI.setDebugLoc(dl).setChain(DAG.getEntryNode()) 2129 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) 2130 .setSExtResult(isSigned).setZExtResult(!isSigned); 2131 2132 std::pair<SDValue,SDValue> CallInfo = TLI.LowerCallTo(CLI); 2133 2134 return CallInfo.first; 2135 } 2136 2137 // Expand a node into a call to a libcall. Similar to 2138 // ExpandLibCall except that the first operand is the in-chain. 2139 std::pair<SDValue, SDValue> 2140 SelectionDAGLegalize::ExpandChainLibCall(RTLIB::Libcall LC, 2141 SDNode *Node, 2142 bool isSigned) { 2143 SDValue InChain = Node->getOperand(0); 2144 2145 TargetLowering::ArgListTy Args; 2146 TargetLowering::ArgListEntry Entry; 2147 for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i) { 2148 EVT ArgVT = Node->getOperand(i).getValueType(); 2149 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); 2150 Entry.Node = Node->getOperand(i); 2151 Entry.Ty = ArgTy; 2152 Entry.isSExt = isSigned; 2153 Entry.isZExt = !isSigned; 2154 Args.push_back(Entry); 2155 } 2156 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), 2157 TLI.getPointerTy(DAG.getDataLayout())); 2158 2159 Type *RetTy = Node->getValueType(0).getTypeForEVT(*DAG.getContext()); 2160 2161 TargetLowering::CallLoweringInfo CLI(DAG); 2162 CLI.setDebugLoc(SDLoc(Node)).setChain(InChain) 2163 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) 2164 .setSExtResult(isSigned).setZExtResult(!isSigned); 2165 2166 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); 2167 2168 return CallInfo; 2169 } 2170 2171 SDValue SelectionDAGLegalize::ExpandFPLibCall(SDNode* Node, 2172 RTLIB::Libcall Call_F32, 2173 RTLIB::Libcall Call_F64, 2174 RTLIB::Libcall Call_F80, 2175 RTLIB::Libcall Call_F128, 2176 RTLIB::Libcall Call_PPCF128) { 2177 RTLIB::Libcall LC; 2178 switch (Node->getSimpleValueType(0).SimpleTy) { 2179 default: llvm_unreachable("Unexpected request for libcall!"); 2180 case MVT::f32: LC = Call_F32; break; 2181 case MVT::f64: LC = Call_F64; break; 2182 case MVT::f80: LC = Call_F80; break; 2183 case MVT::f128: LC = Call_F128; break; 2184 case MVT::ppcf128: LC = Call_PPCF128; break; 2185 } 2186 return ExpandLibCall(LC, Node, false); 2187 } 2188 2189 SDValue SelectionDAGLegalize::ExpandIntLibCall(SDNode* Node, bool isSigned, 2190 RTLIB::Libcall Call_I8, 2191 RTLIB::Libcall Call_I16, 2192 RTLIB::Libcall Call_I32, 2193 RTLIB::Libcall Call_I64, 2194 RTLIB::Libcall Call_I128) { 2195 RTLIB::Libcall LC; 2196 switch (Node->getSimpleValueType(0).SimpleTy) { 2197 default: llvm_unreachable("Unexpected request for libcall!"); 2198 case MVT::i8: LC = Call_I8; break; 2199 case MVT::i16: LC = Call_I16; break; 2200 case MVT::i32: LC = Call_I32; break; 2201 case MVT::i64: LC = Call_I64; break; 2202 case MVT::i128: LC = Call_I128; break; 2203 } 2204 return ExpandLibCall(LC, Node, isSigned); 2205 } 2206 2207 /// Return true if divmod libcall is available. 2208 static bool isDivRemLibcallAvailable(SDNode *Node, bool isSigned, 2209 const TargetLowering &TLI) { 2210 RTLIB::Libcall LC; 2211 switch (Node->getSimpleValueType(0).SimpleTy) { 2212 default: llvm_unreachable("Unexpected request for libcall!"); 2213 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break; 2214 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break; 2215 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break; 2216 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break; 2217 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break; 2218 } 2219 2220 return TLI.getLibcallName(LC) != nullptr; 2221 } 2222 2223 /// Only issue divrem libcall if both quotient and remainder are needed. 2224 static bool useDivRem(SDNode *Node, bool isSigned, bool isDIV) { 2225 // The other use might have been replaced with a divrem already. 2226 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; 2227 unsigned OtherOpcode = 0; 2228 if (isSigned) 2229 OtherOpcode = isDIV ? ISD::SREM : ISD::SDIV; 2230 else 2231 OtherOpcode = isDIV ? ISD::UREM : ISD::UDIV; 2232 2233 SDValue Op0 = Node->getOperand(0); 2234 SDValue Op1 = Node->getOperand(1); 2235 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(), 2236 UE = Op0.getNode()->use_end(); UI != UE; ++UI) { 2237 SDNode *User = *UI; 2238 if (User == Node) 2239 continue; 2240 if ((User->getOpcode() == OtherOpcode || User->getOpcode() == DivRemOpc) && 2241 User->getOperand(0) == Op0 && 2242 User->getOperand(1) == Op1) 2243 return true; 2244 } 2245 return false; 2246 } 2247 2248 /// Issue libcalls to __{u}divmod to compute div / rem pairs. 2249 void 2250 SelectionDAGLegalize::ExpandDivRemLibCall(SDNode *Node, 2251 SmallVectorImpl<SDValue> &Results) { 2252 unsigned Opcode = Node->getOpcode(); 2253 bool isSigned = Opcode == ISD::SDIVREM; 2254 2255 RTLIB::Libcall LC; 2256 switch (Node->getSimpleValueType(0).SimpleTy) { 2257 default: llvm_unreachable("Unexpected request for libcall!"); 2258 case MVT::i8: LC= isSigned ? RTLIB::SDIVREM_I8 : RTLIB::UDIVREM_I8; break; 2259 case MVT::i16: LC= isSigned ? RTLIB::SDIVREM_I16 : RTLIB::UDIVREM_I16; break; 2260 case MVT::i32: LC= isSigned ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32; break; 2261 case MVT::i64: LC= isSigned ? RTLIB::SDIVREM_I64 : RTLIB::UDIVREM_I64; break; 2262 case MVT::i128: LC= isSigned ? RTLIB::SDIVREM_I128:RTLIB::UDIVREM_I128; break; 2263 } 2264 2265 // The input chain to this libcall is the entry node of the function. 2266 // Legalizing the call will automatically add the previous call to the 2267 // dependence. 2268 SDValue InChain = DAG.getEntryNode(); 2269 2270 EVT RetVT = Node->getValueType(0); 2271 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); 2272 2273 TargetLowering::ArgListTy Args; 2274 TargetLowering::ArgListEntry Entry; 2275 for (const SDValue &Op : Node->op_values()) { 2276 EVT ArgVT = Op.getValueType(); 2277 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext()); 2278 Entry.Node = Op; 2279 Entry.Ty = ArgTy; 2280 Entry.isSExt = isSigned; 2281 Entry.isZExt = !isSigned; 2282 Args.push_back(Entry); 2283 } 2284 2285 // Also pass the return address of the remainder. 2286 SDValue FIPtr = DAG.CreateStackTemporary(RetVT); 2287 Entry.Node = FIPtr; 2288 Entry.Ty = RetTy->getPointerTo(); 2289 Entry.isSExt = isSigned; 2290 Entry.isZExt = !isSigned; 2291 Args.push_back(Entry); 2292 2293 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), 2294 TLI.getPointerTy(DAG.getDataLayout())); 2295 2296 SDLoc dl(Node); 2297 TargetLowering::CallLoweringInfo CLI(DAG); 2298 CLI.setDebugLoc(dl).setChain(InChain) 2299 .setCallee(TLI.getLibcallCallingConv(LC), RetTy, Callee, std::move(Args), 0) 2300 .setSExtResult(isSigned).setZExtResult(!isSigned); 2301 2302 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); 2303 2304 // Remainder is loaded back from the stack frame. 2305 SDValue Rem = DAG.getLoad(RetVT, dl, CallInfo.second, FIPtr, 2306 MachinePointerInfo(), false, false, false, 0); 2307 Results.push_back(CallInfo.first); 2308 Results.push_back(Rem); 2309 } 2310 2311 /// Return true if sincos libcall is available. 2312 static bool isSinCosLibcallAvailable(SDNode *Node, const TargetLowering &TLI) { 2313 RTLIB::Libcall LC; 2314 switch (Node->getSimpleValueType(0).SimpleTy) { 2315 default: llvm_unreachable("Unexpected request for libcall!"); 2316 case MVT::f32: LC = RTLIB::SINCOS_F32; break; 2317 case MVT::f64: LC = RTLIB::SINCOS_F64; break; 2318 case MVT::f80: LC = RTLIB::SINCOS_F80; break; 2319 case MVT::f128: LC = RTLIB::SINCOS_F128; break; 2320 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break; 2321 } 2322 return TLI.getLibcallName(LC) != nullptr; 2323 } 2324 2325 /// Return true if sincos libcall is available and can be used to combine sin 2326 /// and cos. 2327 static bool canCombineSinCosLibcall(SDNode *Node, const TargetLowering &TLI, 2328 const TargetMachine &TM) { 2329 if (!isSinCosLibcallAvailable(Node, TLI)) 2330 return false; 2331 // GNU sin/cos functions set errno while sincos does not. Therefore 2332 // combining sin and cos is only safe if unsafe-fpmath is enabled. 2333 bool isGNU = Triple(TM.getTargetTriple()).getEnvironment() == Triple::GNU; 2334 if (isGNU && !TM.Options.UnsafeFPMath) 2335 return false; 2336 return true; 2337 } 2338 2339 /// Only issue sincos libcall if both sin and cos are needed. 2340 static bool useSinCos(SDNode *Node) { 2341 unsigned OtherOpcode = Node->getOpcode() == ISD::FSIN 2342 ? ISD::FCOS : ISD::FSIN; 2343 2344 SDValue Op0 = Node->getOperand(0); 2345 for (SDNode::use_iterator UI = Op0.getNode()->use_begin(), 2346 UE = Op0.getNode()->use_end(); UI != UE; ++UI) { 2347 SDNode *User = *UI; 2348 if (User == Node) 2349 continue; 2350 // The other user might have been turned into sincos already. 2351 if (User->getOpcode() == OtherOpcode || User->getOpcode() == ISD::FSINCOS) 2352 return true; 2353 } 2354 return false; 2355 } 2356 2357 /// Issue libcalls to sincos to compute sin / cos pairs. 2358 void 2359 SelectionDAGLegalize::ExpandSinCosLibCall(SDNode *Node, 2360 SmallVectorImpl<SDValue> &Results) { 2361 RTLIB::Libcall LC; 2362 switch (Node->getSimpleValueType(0).SimpleTy) { 2363 default: llvm_unreachable("Unexpected request for libcall!"); 2364 case MVT::f32: LC = RTLIB::SINCOS_F32; break; 2365 case MVT::f64: LC = RTLIB::SINCOS_F64; break; 2366 case MVT::f80: LC = RTLIB::SINCOS_F80; break; 2367 case MVT::f128: LC = RTLIB::SINCOS_F128; break; 2368 case MVT::ppcf128: LC = RTLIB::SINCOS_PPCF128; break; 2369 } 2370 2371 // The input chain to this libcall is the entry node of the function. 2372 // Legalizing the call will automatically add the previous call to the 2373 // dependence. 2374 SDValue InChain = DAG.getEntryNode(); 2375 2376 EVT RetVT = Node->getValueType(0); 2377 Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); 2378 2379 TargetLowering::ArgListTy Args; 2380 TargetLowering::ArgListEntry Entry; 2381 2382 // Pass the argument. 2383 Entry.Node = Node->getOperand(0); 2384 Entry.Ty = RetTy; 2385 Entry.isSExt = false; 2386 Entry.isZExt = false; 2387 Args.push_back(Entry); 2388 2389 // Pass the return address of sin. 2390 SDValue SinPtr = DAG.CreateStackTemporary(RetVT); 2391 Entry.Node = SinPtr; 2392 Entry.Ty = RetTy->getPointerTo(); 2393 Entry.isSExt = false; 2394 Entry.isZExt = false; 2395 Args.push_back(Entry); 2396 2397 // Also pass the return address of the cos. 2398 SDValue CosPtr = DAG.CreateStackTemporary(RetVT); 2399 Entry.Node = CosPtr; 2400 Entry.Ty = RetTy->getPointerTo(); 2401 Entry.isSExt = false; 2402 Entry.isZExt = false; 2403 Args.push_back(Entry); 2404 2405 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC), 2406 TLI.getPointerTy(DAG.getDataLayout())); 2407 2408 SDLoc dl(Node); 2409 TargetLowering::CallLoweringInfo CLI(DAG); 2410 CLI.setDebugLoc(dl).setChain(InChain) 2411 .setCallee(TLI.getLibcallCallingConv(LC), 2412 Type::getVoidTy(*DAG.getContext()), Callee, std::move(Args), 0); 2413 2414 std::pair<SDValue, SDValue> CallInfo = TLI.LowerCallTo(CLI); 2415 2416 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, SinPtr, 2417 MachinePointerInfo(), false, false, false, 0)); 2418 Results.push_back(DAG.getLoad(RetVT, dl, CallInfo.second, CosPtr, 2419 MachinePointerInfo(), false, false, false, 0)); 2420 } 2421 2422 /// This function is responsible for legalizing a 2423 /// INT_TO_FP operation of the specified operand when the target requests that 2424 /// we expand it. At this point, we know that the result and operand types are 2425 /// legal for the target. 2426 SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned, 2427 SDValue Op0, 2428 EVT DestVT, 2429 SDLoc dl) { 2430 if (Op0.getValueType() == MVT::i32 && TLI.isTypeLegal(MVT::f64)) { 2431 // simple 32-bit [signed|unsigned] integer to float/double expansion 2432 2433 // Get the stack frame index of a 8 byte buffer. 2434 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64); 2435 2436 // word offset constant for Hi/Lo address computation 2437 SDValue WordOff = DAG.getConstant(sizeof(int), dl, 2438 StackSlot.getValueType()); 2439 // set up Hi and Lo (into buffer) address based on endian 2440 SDValue Hi = StackSlot; 2441 SDValue Lo = DAG.getNode(ISD::ADD, dl, StackSlot.getValueType(), 2442 StackSlot, WordOff); 2443 if (DAG.getDataLayout().isLittleEndian()) 2444 std::swap(Hi, Lo); 2445 2446 // if signed map to unsigned space 2447 SDValue Op0Mapped; 2448 if (isSigned) { 2449 // constant used to invert sign bit (signed to unsigned mapping) 2450 SDValue SignBit = DAG.getConstant(0x80000000u, dl, MVT::i32); 2451 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit); 2452 } else { 2453 Op0Mapped = Op0; 2454 } 2455 // store the lo of the constructed double - based on integer input 2456 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, 2457 Op0Mapped, Lo, MachinePointerInfo(), 2458 false, false, 0); 2459 // initial hi portion of constructed double 2460 SDValue InitialHi = DAG.getConstant(0x43300000u, dl, MVT::i32); 2461 // store the hi of the constructed double - biased exponent 2462 SDValue Store2 = DAG.getStore(Store1, dl, InitialHi, Hi, 2463 MachinePointerInfo(), 2464 false, false, 0); 2465 // load the constructed double 2466 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, 2467 MachinePointerInfo(), false, false, false, 0); 2468 // FP constant to bias correct the final result 2469 SDValue Bias = DAG.getConstantFP(isSigned ? 2470 BitsToDouble(0x4330000080000000ULL) : 2471 BitsToDouble(0x4330000000000000ULL), 2472 dl, MVT::f64); 2473 // subtract the bias 2474 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias); 2475 // final result 2476 SDValue Result; 2477 // handle final rounding 2478 if (DestVT == MVT::f64) { 2479 // do nothing 2480 Result = Sub; 2481 } else if (DestVT.bitsLT(MVT::f64)) { 2482 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub, 2483 DAG.getIntPtrConstant(0, dl)); 2484 } else if (DestVT.bitsGT(MVT::f64)) { 2485 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub); 2486 } 2487 return Result; 2488 } 2489 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet"); 2490 // Code below here assumes !isSigned without checking again. 2491 2492 // Implementation of unsigned i64 to f64 following the algorithm in 2493 // __floatundidf in compiler_rt. This implementation has the advantage 2494 // of performing rounding correctly, both in the default rounding mode 2495 // and in all alternate rounding modes. 2496 // TODO: Generalize this for use with other types. 2497 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f64) { 2498 SDValue TwoP52 = 2499 DAG.getConstant(UINT64_C(0x4330000000000000), dl, MVT::i64); 2500 SDValue TwoP84PlusTwoP52 = 2501 DAG.getConstantFP(BitsToDouble(UINT64_C(0x4530000000100000)), dl, 2502 MVT::f64); 2503 SDValue TwoP84 = 2504 DAG.getConstant(UINT64_C(0x4530000000000000), dl, MVT::i64); 2505 2506 SDValue Lo = DAG.getZeroExtendInReg(Op0, dl, MVT::i32); 2507 SDValue Hi = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, 2508 DAG.getConstant(32, dl, MVT::i64)); 2509 SDValue LoOr = DAG.getNode(ISD::OR, dl, MVT::i64, Lo, TwoP52); 2510 SDValue HiOr = DAG.getNode(ISD::OR, dl, MVT::i64, Hi, TwoP84); 2511 SDValue LoFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, LoOr); 2512 SDValue HiFlt = DAG.getNode(ISD::BITCAST, dl, MVT::f64, HiOr); 2513 SDValue HiSub = DAG.getNode(ISD::FSUB, dl, MVT::f64, HiFlt, 2514 TwoP84PlusTwoP52); 2515 return DAG.getNode(ISD::FADD, dl, MVT::f64, LoFlt, HiSub); 2516 } 2517 2518 // Implementation of unsigned i64 to f32. 2519 // TODO: Generalize this for use with other types. 2520 if (Op0.getValueType() == MVT::i64 && DestVT == MVT::f32) { 2521 // For unsigned conversions, convert them to signed conversions using the 2522 // algorithm from the x86_64 __floatundidf in compiler_rt. 2523 if (!isSigned) { 2524 SDValue Fast = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Op0); 2525 2526 SDValue ShiftConst = DAG.getConstant( 2527 1, dl, TLI.getShiftAmountTy(Op0.getValueType(), DAG.getDataLayout())); 2528 SDValue Shr = DAG.getNode(ISD::SRL, dl, MVT::i64, Op0, ShiftConst); 2529 SDValue AndConst = DAG.getConstant(1, dl, MVT::i64); 2530 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, AndConst); 2531 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, Shr); 2532 2533 SDValue SignCvt = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f32, Or); 2534 SDValue Slow = DAG.getNode(ISD::FADD, dl, MVT::f32, SignCvt, SignCvt); 2535 2536 // TODO: This really should be implemented using a branch rather than a 2537 // select. We happen to get lucky and machinesink does the right 2538 // thing most of the time. This would be a good candidate for a 2539 //pseudo-op, or, even better, for whole-function isel. 2540 SDValue SignBitTest = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), 2541 Op0, DAG.getConstant(0, dl, MVT::i64), ISD::SETLT); 2542 return DAG.getSelect(dl, MVT::f32, SignBitTest, Slow, Fast); 2543 } 2544 2545 // Otherwise, implement the fully general conversion. 2546 2547 SDValue And = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, 2548 DAG.getConstant(UINT64_C(0xfffffffffffff800), dl, MVT::i64)); 2549 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i64, And, 2550 DAG.getConstant(UINT64_C(0x800), dl, MVT::i64)); 2551 SDValue And2 = DAG.getNode(ISD::AND, dl, MVT::i64, Op0, 2552 DAG.getConstant(UINT64_C(0x7ff), dl, MVT::i64)); 2553 SDValue Ne = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), And2, 2554 DAG.getConstant(UINT64_C(0), dl, MVT::i64), 2555 ISD::SETNE); 2556 SDValue Sel = DAG.getSelect(dl, MVT::i64, Ne, Or, Op0); 2557 SDValue Ge = DAG.getSetCC(dl, getSetCCResultType(MVT::i64), Op0, 2558 DAG.getConstant(UINT64_C(0x0020000000000000), dl, 2559 MVT::i64), 2560 ISD::SETUGE); 2561 SDValue Sel2 = DAG.getSelect(dl, MVT::i64, Ge, Sel, Op0); 2562 EVT SHVT = TLI.getShiftAmountTy(Sel2.getValueType(), DAG.getDataLayout()); 2563 2564 SDValue Sh = DAG.getNode(ISD::SRL, dl, MVT::i64, Sel2, 2565 DAG.getConstant(32, dl, SHVT)); 2566 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sh); 2567 SDValue Fcvt = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Trunc); 2568 SDValue TwoP32 = 2569 DAG.getConstantFP(BitsToDouble(UINT64_C(0x41f0000000000000)), dl, 2570 MVT::f64); 2571 SDValue Fmul = DAG.getNode(ISD::FMUL, dl, MVT::f64, TwoP32, Fcvt); 2572 SDValue Lo = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Sel2); 2573 SDValue Fcvt2 = DAG.getNode(ISD::UINT_TO_FP, dl, MVT::f64, Lo); 2574 SDValue Fadd = DAG.getNode(ISD::FADD, dl, MVT::f64, Fmul, Fcvt2); 2575 return DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Fadd, 2576 DAG.getIntPtrConstant(0, dl)); 2577 } 2578 2579 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0); 2580 2581 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(Op0.getValueType()), 2582 Op0, 2583 DAG.getConstant(0, dl, Op0.getValueType()), 2584 ISD::SETLT); 2585 SDValue Zero = DAG.getIntPtrConstant(0, dl), 2586 Four = DAG.getIntPtrConstant(4, dl); 2587 SDValue CstOffset = DAG.getSelect(dl, Zero.getValueType(), 2588 SignSet, Four, Zero); 2589 2590 // If the sign bit of the integer is set, the large number will be treated 2591 // as a negative number. To counteract this, the dynamic code adds an 2592 // offset depending on the data type. 2593 uint64_t FF; 2594 switch (Op0.getSimpleValueType().SimpleTy) { 2595 default: llvm_unreachable("Unsupported integer type!"); 2596 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float) 2597 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float) 2598 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float) 2599 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float) 2600 } 2601 if (DAG.getDataLayout().isLittleEndian()) 2602 FF <<= 32; 2603 Constant *FudgeFactor = ConstantInt::get( 2604 Type::getInt64Ty(*DAG.getContext()), FF); 2605 2606 SDValue CPIdx = 2607 DAG.getConstantPool(FudgeFactor, TLI.getPointerTy(DAG.getDataLayout())); 2608 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); 2609 CPIdx = DAG.getNode(ISD::ADD, dl, CPIdx.getValueType(), CPIdx, CstOffset); 2610 Alignment = std::min(Alignment, 4u); 2611 SDValue FudgeInReg; 2612 if (DestVT == MVT::f32) 2613 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx, 2614 MachinePointerInfo::getConstantPool(), 2615 false, false, false, Alignment); 2616 else { 2617 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, 2618 DAG.getEntryNode(), CPIdx, 2619 MachinePointerInfo::getConstantPool(), 2620 MVT::f32, false, false, false, Alignment); 2621 HandleSDNode Handle(Load); 2622 LegalizeOp(Load.getNode()); 2623 FudgeInReg = Handle.getValue(); 2624 } 2625 2626 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg); 2627 } 2628 2629 /// This function is responsible for legalizing a 2630 /// *INT_TO_FP operation of the specified operand when the target requests that 2631 /// we promote it. At this point, we know that the result and operand types are 2632 /// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP 2633 /// operation that takes a larger input. 2634 SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp, 2635 EVT DestVT, 2636 bool isSigned, 2637 SDLoc dl) { 2638 // First step, figure out the appropriate *INT_TO_FP operation to use. 2639 EVT NewInTy = LegalOp.getValueType(); 2640 2641 unsigned OpToUse = 0; 2642 2643 // Scan for the appropriate larger type to use. 2644 while (1) { 2645 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT().SimpleTy+1); 2646 assert(NewInTy.isInteger() && "Ran out of possibilities!"); 2647 2648 // If the target supports SINT_TO_FP of this type, use it. 2649 if (TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, NewInTy)) { 2650 OpToUse = ISD::SINT_TO_FP; 2651 break; 2652 } 2653 if (isSigned) continue; 2654 2655 // If the target supports UINT_TO_FP of this type, use it. 2656 if (TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, NewInTy)) { 2657 OpToUse = ISD::UINT_TO_FP; 2658 break; 2659 } 2660 2661 // Otherwise, try a larger type. 2662 } 2663 2664 // Okay, we found the operation and type to use. Zero extend our input to the 2665 // desired type then run the operation on it. 2666 return DAG.getNode(OpToUse, dl, DestVT, 2667 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, 2668 dl, NewInTy, LegalOp)); 2669 } 2670 2671 /// This function is responsible for legalizing a 2672 /// FP_TO_*INT operation of the specified operand when the target requests that 2673 /// we promote it. At this point, we know that the result and operand types are 2674 /// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT 2675 /// operation that returns a larger result. 2676 SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp, 2677 EVT DestVT, 2678 bool isSigned, 2679 SDLoc dl) { 2680 // First step, figure out the appropriate FP_TO*INT operation to use. 2681 EVT NewOutTy = DestVT; 2682 2683 unsigned OpToUse = 0; 2684 2685 // Scan for the appropriate larger type to use. 2686 while (1) { 2687 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT().SimpleTy+1); 2688 assert(NewOutTy.isInteger() && "Ran out of possibilities!"); 2689 2690 // A larger signed type can hold all unsigned values of the requested type, 2691 // so using FP_TO_SINT is valid 2692 if (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NewOutTy)) { 2693 OpToUse = ISD::FP_TO_SINT; 2694 break; 2695 } 2696 2697 // However, if the value may be < 0.0, we *must* use some FP_TO_SINT. 2698 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewOutTy)) { 2699 OpToUse = ISD::FP_TO_UINT; 2700 break; 2701 } 2702 2703 // Otherwise, try a larger type. 2704 } 2705 2706 2707 // Okay, we found the operation and type to use. 2708 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp); 2709 2710 // Truncate the result of the extended FP_TO_*INT operation to the desired 2711 // size. 2712 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation); 2713 } 2714 2715 /// Open code the operations for BSWAP of the specified operation. 2716 SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, SDLoc dl) { 2717 EVT VT = Op.getValueType(); 2718 EVT SHVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 2719 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8; 2720 switch (VT.getSimpleVT().SimpleTy) { 2721 default: llvm_unreachable("Unhandled Expand type in BSWAP!"); 2722 case MVT::i16: 2723 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT)); 2724 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT)); 2725 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2); 2726 case MVT::i32: 2727 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT)); 2728 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT)); 2729 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT)); 2730 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT)); 2731 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, 2732 DAG.getConstant(0xFF0000, dl, VT)); 2733 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, dl, VT)); 2734 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3); 2735 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1); 2736 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2); 2737 case MVT::i64: 2738 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, dl, SHVT)); 2739 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, dl, SHVT)); 2740 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, dl, SHVT)); 2741 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, dl, SHVT)); 2742 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, dl, SHVT)); 2743 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, dl, SHVT)); 2744 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, dl, SHVT)); 2745 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, dl, SHVT)); 2746 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, 2747 DAG.getConstant(255ULL<<48, dl, VT)); 2748 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, 2749 DAG.getConstant(255ULL<<40, dl, VT)); 2750 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, 2751 DAG.getConstant(255ULL<<32, dl, VT)); 2752 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, 2753 DAG.getConstant(255ULL<<24, dl, VT)); 2754 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, 2755 DAG.getConstant(255ULL<<16, dl, VT)); 2756 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, 2757 DAG.getConstant(255ULL<<8 , dl, VT)); 2758 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7); 2759 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5); 2760 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3); 2761 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1); 2762 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6); 2763 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2); 2764 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4); 2765 } 2766 } 2767 2768 /// Expand the specified bitcount instruction into operations. 2769 SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op, 2770 SDLoc dl) { 2771 switch (Opc) { 2772 default: llvm_unreachable("Cannot expand this yet!"); 2773 case ISD::CTPOP: { 2774 EVT VT = Op.getValueType(); 2775 EVT ShVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 2776 unsigned Len = VT.getSizeInBits(); 2777 2778 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 && 2779 "CTPOP not implemented for this type."); 2780 2781 // This is the "best" algorithm from 2782 // http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetParallel 2783 2784 SDValue Mask55 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x55)), 2785 dl, VT); 2786 SDValue Mask33 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x33)), 2787 dl, VT); 2788 SDValue Mask0F = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x0F)), 2789 dl, VT); 2790 SDValue Mask01 = DAG.getConstant(APInt::getSplat(Len, APInt(8, 0x01)), 2791 dl, VT); 2792 2793 // v = v - ((v >> 1) & 0x55555555...) 2794 Op = DAG.getNode(ISD::SUB, dl, VT, Op, 2795 DAG.getNode(ISD::AND, dl, VT, 2796 DAG.getNode(ISD::SRL, dl, VT, Op, 2797 DAG.getConstant(1, dl, ShVT)), 2798 Mask55)); 2799 // v = (v & 0x33333333...) + ((v >> 2) & 0x33333333...) 2800 Op = DAG.getNode(ISD::ADD, dl, VT, 2801 DAG.getNode(ISD::AND, dl, VT, Op, Mask33), 2802 DAG.getNode(ISD::AND, dl, VT, 2803 DAG.getNode(ISD::SRL, dl, VT, Op, 2804 DAG.getConstant(2, dl, ShVT)), 2805 Mask33)); 2806 // v = (v + (v >> 4)) & 0x0F0F0F0F... 2807 Op = DAG.getNode(ISD::AND, dl, VT, 2808 DAG.getNode(ISD::ADD, dl, VT, Op, 2809 DAG.getNode(ISD::SRL, dl, VT, Op, 2810 DAG.getConstant(4, dl, ShVT))), 2811 Mask0F); 2812 // v = (v * 0x01010101...) >> (Len - 8) 2813 Op = DAG.getNode(ISD::SRL, dl, VT, 2814 DAG.getNode(ISD::MUL, dl, VT, Op, Mask01), 2815 DAG.getConstant(Len - 8, dl, ShVT)); 2816 2817 return Op; 2818 } 2819 case ISD::CTLZ_ZERO_UNDEF: 2820 // This trivially expands to CTLZ. 2821 return DAG.getNode(ISD::CTLZ, dl, Op.getValueType(), Op); 2822 case ISD::CTLZ: { 2823 // for now, we do this: 2824 // x = x | (x >> 1); 2825 // x = x | (x >> 2); 2826 // ... 2827 // x = x | (x >>16); 2828 // x = x | (x >>32); // for 64-bit input 2829 // return popcount(~x); 2830 // 2831 // Ref: "Hacker's Delight" by Henry Warren 2832 EVT VT = Op.getValueType(); 2833 EVT ShVT = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 2834 unsigned len = VT.getSizeInBits(); 2835 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) { 2836 SDValue Tmp3 = DAG.getConstant(1ULL << i, dl, ShVT); 2837 Op = DAG.getNode(ISD::OR, dl, VT, Op, 2838 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3)); 2839 } 2840 Op = DAG.getNOT(dl, Op, VT); 2841 return DAG.getNode(ISD::CTPOP, dl, VT, Op); 2842 } 2843 case ISD::CTTZ_ZERO_UNDEF: 2844 // This trivially expands to CTTZ. 2845 return DAG.getNode(ISD::CTTZ, dl, Op.getValueType(), Op); 2846 case ISD::CTTZ: { 2847 // for now, we use: { return popcount(~x & (x - 1)); } 2848 // unless the target has ctlz but not ctpop, in which case we use: 2849 // { return 32 - nlz(~x & (x-1)); } 2850 // Ref: "Hacker's Delight" by Henry Warren 2851 EVT VT = Op.getValueType(); 2852 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT, 2853 DAG.getNOT(dl, Op, VT), 2854 DAG.getNode(ISD::SUB, dl, VT, Op, 2855 DAG.getConstant(1, dl, VT))); 2856 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead. 2857 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) && 2858 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT)) 2859 return DAG.getNode(ISD::SUB, dl, VT, 2860 DAG.getConstant(VT.getSizeInBits(), dl, VT), 2861 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3)); 2862 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3); 2863 } 2864 } 2865 } 2866 2867 std::pair <SDValue, SDValue> SelectionDAGLegalize::ExpandAtomic(SDNode *Node) { 2868 unsigned Opc = Node->getOpcode(); 2869 MVT VT = cast<AtomicSDNode>(Node)->getMemoryVT().getSimpleVT(); 2870 RTLIB::Libcall LC = RTLIB::getATOMIC(Opc, VT); 2871 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected atomic op or value type!"); 2872 2873 return ExpandChainLibCall(LC, Node, false); 2874 } 2875 2876 void SelectionDAGLegalize::ExpandNode(SDNode *Node) { 2877 SmallVector<SDValue, 8> Results; 2878 SDLoc dl(Node); 2879 SDValue Tmp1, Tmp2, Tmp3, Tmp4; 2880 bool NeedInvert; 2881 switch (Node->getOpcode()) { 2882 case ISD::CTPOP: 2883 case ISD::CTLZ: 2884 case ISD::CTLZ_ZERO_UNDEF: 2885 case ISD::CTTZ: 2886 case ISD::CTTZ_ZERO_UNDEF: 2887 Tmp1 = ExpandBitCount(Node->getOpcode(), Node->getOperand(0), dl); 2888 Results.push_back(Tmp1); 2889 break; 2890 case ISD::BSWAP: 2891 Results.push_back(ExpandBSWAP(Node->getOperand(0), dl)); 2892 break; 2893 case ISD::FRAMEADDR: 2894 case ISD::RETURNADDR: 2895 case ISD::FRAME_TO_ARGS_OFFSET: 2896 Results.push_back(DAG.getConstant(0, dl, Node->getValueType(0))); 2897 break; 2898 case ISD::FLT_ROUNDS_: 2899 Results.push_back(DAG.getConstant(1, dl, Node->getValueType(0))); 2900 break; 2901 case ISD::EH_RETURN: 2902 case ISD::EH_LABEL: 2903 case ISD::PREFETCH: 2904 case ISD::VAEND: 2905 case ISD::EH_SJLJ_LONGJMP: 2906 // If the target didn't expand these, there's nothing to do, so just 2907 // preserve the chain and be done. 2908 Results.push_back(Node->getOperand(0)); 2909 break; 2910 case ISD::EH_SJLJ_SETJMP: 2911 // If the target didn't expand this, just return 'zero' and preserve the 2912 // chain. 2913 Results.push_back(DAG.getConstant(0, dl, MVT::i32)); 2914 Results.push_back(Node->getOperand(0)); 2915 break; 2916 case ISD::ATOMIC_FENCE: { 2917 // If the target didn't lower this, lower it to '__sync_synchronize()' call 2918 // FIXME: handle "fence singlethread" more efficiently. 2919 TargetLowering::ArgListTy Args; 2920 2921 TargetLowering::CallLoweringInfo CLI(DAG); 2922 CLI.setDebugLoc(dl) 2923 .setChain(Node->getOperand(0)) 2924 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()), 2925 DAG.getExternalSymbol("__sync_synchronize", 2926 TLI.getPointerTy(DAG.getDataLayout())), 2927 std::move(Args), 0); 2928 2929 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI); 2930 2931 Results.push_back(CallResult.second); 2932 break; 2933 } 2934 case ISD::ATOMIC_LOAD: { 2935 // There is no libcall for atomic load; fake it with ATOMIC_CMP_SWAP. 2936 SDValue Zero = DAG.getConstant(0, dl, Node->getValueType(0)); 2937 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other); 2938 SDValue Swap = DAG.getAtomicCmpSwap( 2939 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs, 2940 Node->getOperand(0), Node->getOperand(1), Zero, Zero, 2941 cast<AtomicSDNode>(Node)->getMemOperand(), 2942 cast<AtomicSDNode>(Node)->getOrdering(), 2943 cast<AtomicSDNode>(Node)->getOrdering(), 2944 cast<AtomicSDNode>(Node)->getSynchScope()); 2945 Results.push_back(Swap.getValue(0)); 2946 Results.push_back(Swap.getValue(1)); 2947 break; 2948 } 2949 case ISD::ATOMIC_STORE: { 2950 // There is no libcall for atomic store; fake it with ATOMIC_SWAP. 2951 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl, 2952 cast<AtomicSDNode>(Node)->getMemoryVT(), 2953 Node->getOperand(0), 2954 Node->getOperand(1), Node->getOperand(2), 2955 cast<AtomicSDNode>(Node)->getMemOperand(), 2956 cast<AtomicSDNode>(Node)->getOrdering(), 2957 cast<AtomicSDNode>(Node)->getSynchScope()); 2958 Results.push_back(Swap.getValue(1)); 2959 break; 2960 } 2961 // By default, atomic intrinsics are marked Legal and lowered. Targets 2962 // which don't support them directly, however, may want libcalls, in which 2963 // case they mark them Expand, and we get here. 2964 case ISD::ATOMIC_SWAP: 2965 case ISD::ATOMIC_LOAD_ADD: 2966 case ISD::ATOMIC_LOAD_SUB: 2967 case ISD::ATOMIC_LOAD_AND: 2968 case ISD::ATOMIC_LOAD_OR: 2969 case ISD::ATOMIC_LOAD_XOR: 2970 case ISD::ATOMIC_LOAD_NAND: 2971 case ISD::ATOMIC_LOAD_MIN: 2972 case ISD::ATOMIC_LOAD_MAX: 2973 case ISD::ATOMIC_LOAD_UMIN: 2974 case ISD::ATOMIC_LOAD_UMAX: 2975 case ISD::ATOMIC_CMP_SWAP: { 2976 std::pair<SDValue, SDValue> Tmp = ExpandAtomic(Node); 2977 Results.push_back(Tmp.first); 2978 Results.push_back(Tmp.second); 2979 break; 2980 } 2981 case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS: { 2982 // Expanding an ATOMIC_CMP_SWAP_WITH_SUCCESS produces an ATOMIC_CMP_SWAP and 2983 // splits out the success value as a comparison. Expanding the resulting 2984 // ATOMIC_CMP_SWAP will produce a libcall. 2985 SDVTList VTs = DAG.getVTList(Node->getValueType(0), MVT::Other); 2986 SDValue Res = DAG.getAtomicCmpSwap( 2987 ISD::ATOMIC_CMP_SWAP, dl, cast<AtomicSDNode>(Node)->getMemoryVT(), VTs, 2988 Node->getOperand(0), Node->getOperand(1), Node->getOperand(2), 2989 Node->getOperand(3), cast<MemSDNode>(Node)->getMemOperand(), 2990 cast<AtomicSDNode>(Node)->getSuccessOrdering(), 2991 cast<AtomicSDNode>(Node)->getFailureOrdering(), 2992 cast<AtomicSDNode>(Node)->getSynchScope()); 2993 2994 SDValue Success = DAG.getSetCC(SDLoc(Node), Node->getValueType(1), 2995 Res, Node->getOperand(2), ISD::SETEQ); 2996 2997 Results.push_back(Res.getValue(0)); 2998 Results.push_back(Success); 2999 Results.push_back(Res.getValue(1)); 3000 break; 3001 } 3002 case ISD::DYNAMIC_STACKALLOC: 3003 ExpandDYNAMIC_STACKALLOC(Node, Results); 3004 break; 3005 case ISD::MERGE_VALUES: 3006 for (unsigned i = 0; i < Node->getNumValues(); i++) 3007 Results.push_back(Node->getOperand(i)); 3008 break; 3009 case ISD::UNDEF: { 3010 EVT VT = Node->getValueType(0); 3011 if (VT.isInteger()) 3012 Results.push_back(DAG.getConstant(0, dl, VT)); 3013 else { 3014 assert(VT.isFloatingPoint() && "Unknown value type!"); 3015 Results.push_back(DAG.getConstantFP(0, dl, VT)); 3016 } 3017 break; 3018 } 3019 case ISD::TRAP: { 3020 // If this operation is not supported, lower it to 'abort()' call 3021 TargetLowering::ArgListTy Args; 3022 TargetLowering::CallLoweringInfo CLI(DAG); 3023 CLI.setDebugLoc(dl) 3024 .setChain(Node->getOperand(0)) 3025 .setCallee(CallingConv::C, Type::getVoidTy(*DAG.getContext()), 3026 DAG.getExternalSymbol("abort", 3027 TLI.getPointerTy(DAG.getDataLayout())), 3028 std::move(Args), 0); 3029 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI); 3030 3031 Results.push_back(CallResult.second); 3032 break; 3033 } 3034 case ISD::FP_ROUND: 3035 case ISD::BITCAST: 3036 Tmp1 = EmitStackConvert(Node->getOperand(0), Node->getValueType(0), 3037 Node->getValueType(0), dl); 3038 Results.push_back(Tmp1); 3039 break; 3040 case ISD::FP_EXTEND: 3041 Tmp1 = EmitStackConvert(Node->getOperand(0), 3042 Node->getOperand(0).getValueType(), 3043 Node->getValueType(0), dl); 3044 Results.push_back(Tmp1); 3045 break; 3046 case ISD::SIGN_EXTEND_INREG: { 3047 // NOTE: we could fall back on load/store here too for targets without 3048 // SAR. However, it is doubtful that any exist. 3049 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT(); 3050 EVT VT = Node->getValueType(0); 3051 EVT ShiftAmountTy = TLI.getShiftAmountTy(VT, DAG.getDataLayout()); 3052 if (VT.isVector()) 3053 ShiftAmountTy = VT; 3054 unsigned BitsDiff = VT.getScalarType().getSizeInBits() - 3055 ExtraVT.getScalarType().getSizeInBits(); 3056 SDValue ShiftCst = DAG.getConstant(BitsDiff, dl, ShiftAmountTy); 3057 Tmp1 = DAG.getNode(ISD::SHL, dl, Node->getValueType(0), 3058 Node->getOperand(0), ShiftCst); 3059 Tmp1 = DAG.getNode(ISD::SRA, dl, Node->getValueType(0), Tmp1, ShiftCst); 3060 Results.push_back(Tmp1); 3061 break; 3062 } 3063 case ISD::FP_ROUND_INREG: { 3064 // The only way we can lower this is to turn it into a TRUNCSTORE, 3065 // EXTLOAD pair, targeting a temporary location (a stack slot). 3066 3067 // NOTE: there is a choice here between constantly creating new stack 3068 // slots and always reusing the same one. We currently always create 3069 // new ones, as reuse may inhibit scheduling. 3070 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT(); 3071 Tmp1 = EmitStackConvert(Node->getOperand(0), ExtraVT, 3072 Node->getValueType(0), dl); 3073 Results.push_back(Tmp1); 3074 break; 3075 } 3076 case ISD::SINT_TO_FP: 3077 case ISD::UINT_TO_FP: 3078 Tmp1 = ExpandLegalINT_TO_FP(Node->getOpcode() == ISD::SINT_TO_FP, 3079 Node->getOperand(0), Node->getValueType(0), dl); 3080 Results.push_back(Tmp1); 3081 break; 3082 case ISD::FP_TO_SINT: 3083 if (TLI.expandFP_TO_SINT(Node, Tmp1, DAG)) 3084 Results.push_back(Tmp1); 3085 break; 3086 case ISD::FP_TO_UINT: { 3087 SDValue True, False; 3088 EVT VT = Node->getOperand(0).getValueType(); 3089 EVT NVT = Node->getValueType(0); 3090 APFloat apf(DAG.EVTToAPFloatSemantics(VT), 3091 APInt::getNullValue(VT.getSizeInBits())); 3092 APInt x = APInt::getSignBit(NVT.getSizeInBits()); 3093 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven); 3094 Tmp1 = DAG.getConstantFP(apf, dl, VT); 3095 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(VT), 3096 Node->getOperand(0), 3097 Tmp1, ISD::SETLT); 3098 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0)); 3099 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, 3100 DAG.getNode(ISD::FSUB, dl, VT, 3101 Node->getOperand(0), Tmp1)); 3102 False = DAG.getNode(ISD::XOR, dl, NVT, False, 3103 DAG.getConstant(x, dl, NVT)); 3104 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, True, False); 3105 Results.push_back(Tmp1); 3106 break; 3107 } 3108 case ISD::VAARG: { 3109 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue(); 3110 EVT VT = Node->getValueType(0); 3111 Tmp1 = Node->getOperand(0); 3112 Tmp2 = Node->getOperand(1); 3113 unsigned Align = Node->getConstantOperandVal(3); 3114 3115 SDValue VAListLoad = 3116 DAG.getLoad(TLI.getPointerTy(DAG.getDataLayout()), dl, Tmp1, Tmp2, 3117 MachinePointerInfo(V), false, false, false, 0); 3118 SDValue VAList = VAListLoad; 3119 3120 if (Align > TLI.getMinStackArgumentAlignment()) { 3121 assert(((Align & (Align-1)) == 0) && "Expected Align to be a power of 2"); 3122 3123 VAList = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList, 3124 DAG.getConstant(Align - 1, dl, 3125 VAList.getValueType())); 3126 3127 VAList = DAG.getNode(ISD::AND, dl, VAList.getValueType(), VAList, 3128 DAG.getConstant(-(int64_t)Align, dl, 3129 VAList.getValueType())); 3130 } 3131 3132 // Increment the pointer, VAList, to the next vaarg 3133 Tmp3 = DAG.getNode(ISD::ADD, dl, VAList.getValueType(), VAList, 3134 DAG.getConstant(DAG.getDataLayout().getTypeAllocSize( 3135 VT.getTypeForEVT(*DAG.getContext())), 3136 dl, VAList.getValueType())); 3137 // Store the incremented VAList to the legalized pointer 3138 Tmp3 = DAG.getStore(VAListLoad.getValue(1), dl, Tmp3, Tmp2, 3139 MachinePointerInfo(V), false, false, 0); 3140 // Load the actual argument out of the pointer VAList 3141 Results.push_back(DAG.getLoad(VT, dl, Tmp3, VAList, MachinePointerInfo(), 3142 false, false, false, 0)); 3143 Results.push_back(Results[0].getValue(1)); 3144 break; 3145 } 3146 case ISD::VACOPY: { 3147 // This defaults to loading a pointer from the input and storing it to the 3148 // output, returning the chain. 3149 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue(); 3150 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue(); 3151 Tmp1 = DAG.getLoad(TLI.getPointerTy(DAG.getDataLayout()), dl, 3152 Node->getOperand(0), Node->getOperand(2), 3153 MachinePointerInfo(VS), false, false, false, 0); 3154 Tmp1 = DAG.getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1), 3155 MachinePointerInfo(VD), false, false, 0); 3156 Results.push_back(Tmp1); 3157 break; 3158 } 3159 case ISD::EXTRACT_VECTOR_ELT: 3160 if (Node->getOperand(0).getValueType().getVectorNumElements() == 1) 3161 // This must be an access of the only element. Return it. 3162 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), 3163 Node->getOperand(0)); 3164 else 3165 Tmp1 = ExpandExtractFromVectorThroughStack(SDValue(Node, 0)); 3166 Results.push_back(Tmp1); 3167 break; 3168 case ISD::EXTRACT_SUBVECTOR: 3169 Results.push_back(ExpandExtractFromVectorThroughStack(SDValue(Node, 0))); 3170 break; 3171 case ISD::INSERT_SUBVECTOR: 3172 Results.push_back(ExpandInsertToVectorThroughStack(SDValue(Node, 0))); 3173 break; 3174 case ISD::CONCAT_VECTORS: { 3175 Results.push_back(ExpandVectorBuildThroughStack(Node)); 3176 break; 3177 } 3178 case ISD::SCALAR_TO_VECTOR: 3179 Results.push_back(ExpandSCALAR_TO_VECTOR(Node)); 3180 break; 3181 case ISD::INSERT_VECTOR_ELT: 3182 Results.push_back(ExpandINSERT_VECTOR_ELT(Node->getOperand(0), 3183 Node->getOperand(1), 3184 Node->getOperand(2), dl)); 3185 break; 3186 case ISD::VECTOR_SHUFFLE: { 3187 SmallVector<int, 32> NewMask; 3188 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask(); 3189 3190 EVT VT = Node->getValueType(0); 3191 EVT EltVT = VT.getVectorElementType(); 3192 SDValue Op0 = Node->getOperand(0); 3193 SDValue Op1 = Node->getOperand(1); 3194 if (!TLI.isTypeLegal(EltVT)) { 3195 3196 EVT NewEltVT = TLI.getTypeToTransformTo(*DAG.getContext(), EltVT); 3197 3198 // BUILD_VECTOR operands are allowed to be wider than the element type. 3199 // But if NewEltVT is smaller that EltVT the BUILD_VECTOR does not accept 3200 // it. 3201 if (NewEltVT.bitsLT(EltVT)) { 3202 3203 // Convert shuffle node. 3204 // If original node was v4i64 and the new EltVT is i32, 3205 // cast operands to v8i32 and re-build the mask. 3206 3207 // Calculate new VT, the size of the new VT should be equal to original. 3208 EVT NewVT = 3209 EVT::getVectorVT(*DAG.getContext(), NewEltVT, 3210 VT.getSizeInBits() / NewEltVT.getSizeInBits()); 3211 assert(NewVT.bitsEq(VT)); 3212 3213 // cast operands to new VT 3214 Op0 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op0); 3215 Op1 = DAG.getNode(ISD::BITCAST, dl, NewVT, Op1); 3216 3217 // Convert the shuffle mask 3218 unsigned int factor = 3219 NewVT.getVectorNumElements()/VT.getVectorNumElements(); 3220 3221 // EltVT gets smaller 3222 assert(factor > 0); 3223 3224 for (unsigned i = 0; i < VT.getVectorNumElements(); ++i) { 3225 if (Mask[i] < 0) { 3226 for (unsigned fi = 0; fi < factor; ++fi) 3227 NewMask.push_back(Mask[i]); 3228 } 3229 else { 3230 for (unsigned fi = 0; fi < factor; ++fi) 3231 NewMask.push_back(Mask[i]*factor+fi); 3232 } 3233 } 3234 Mask = NewMask; 3235 VT = NewVT; 3236 } 3237 EltVT = NewEltVT; 3238 } 3239 unsigned NumElems = VT.getVectorNumElements(); 3240 SmallVector<SDValue, 16> Ops; 3241 for (unsigned i = 0; i != NumElems; ++i) { 3242 if (Mask[i] < 0) { 3243 Ops.push_back(DAG.getUNDEF(EltVT)); 3244 continue; 3245 } 3246 unsigned Idx = Mask[i]; 3247 if (Idx < NumElems) 3248 Ops.push_back(DAG.getNode( 3249 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op0, 3250 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout())))); 3251 else 3252 Ops.push_back(DAG.getNode( 3253 ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Op1, 3254 DAG.getConstant(Idx - NumElems, dl, 3255 TLI.getVectorIdxTy(DAG.getDataLayout())))); 3256 } 3257 3258 Tmp1 = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, Ops); 3259 // We may have changed the BUILD_VECTOR type. Cast it back to the Node type. 3260 Tmp1 = DAG.getNode(ISD::BITCAST, dl, Node->getValueType(0), Tmp1); 3261 Results.push_back(Tmp1); 3262 break; 3263 } 3264 case ISD::EXTRACT_ELEMENT: { 3265 EVT OpTy = Node->getOperand(0).getValueType(); 3266 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) { 3267 // 1 -> Hi 3268 Tmp1 = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0), 3269 DAG.getConstant(OpTy.getSizeInBits() / 2, dl, 3270 TLI.getShiftAmountTy( 3271 Node->getOperand(0).getValueType(), 3272 DAG.getDataLayout()))); 3273 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1); 3274 } else { 3275 // 0 -> Lo 3276 Tmp1 = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), 3277 Node->getOperand(0)); 3278 } 3279 Results.push_back(Tmp1); 3280 break; 3281 } 3282 case ISD::STACKSAVE: 3283 // Expand to CopyFromReg if the target set 3284 // StackPointerRegisterToSaveRestore. 3285 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { 3286 Results.push_back(DAG.getCopyFromReg(Node->getOperand(0), dl, SP, 3287 Node->getValueType(0))); 3288 Results.push_back(Results[0].getValue(1)); 3289 } else { 3290 Results.push_back(DAG.getUNDEF(Node->getValueType(0))); 3291 Results.push_back(Node->getOperand(0)); 3292 } 3293 break; 3294 case ISD::STACKRESTORE: 3295 // Expand to CopyToReg if the target set 3296 // StackPointerRegisterToSaveRestore. 3297 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) { 3298 Results.push_back(DAG.getCopyToReg(Node->getOperand(0), dl, SP, 3299 Node->getOperand(1))); 3300 } else { 3301 Results.push_back(Node->getOperand(0)); 3302 } 3303 break; 3304 case ISD::FCOPYSIGN: 3305 Results.push_back(ExpandFCOPYSIGN(Node)); 3306 break; 3307 case ISD::FNEG: 3308 // Expand Y = FNEG(X) -> Y = SUB -0.0, X 3309 Tmp1 = DAG.getConstantFP(-0.0, dl, Node->getValueType(0)); 3310 Tmp1 = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp1, 3311 Node->getOperand(0)); 3312 Results.push_back(Tmp1); 3313 break; 3314 case ISD::FABS: { 3315 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X). 3316 EVT VT = Node->getValueType(0); 3317 Tmp1 = Node->getOperand(0); 3318 Tmp2 = DAG.getConstantFP(0.0, dl, VT); 3319 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(Tmp1.getValueType()), 3320 Tmp1, Tmp2, ISD::SETUGT); 3321 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1); 3322 Tmp1 = DAG.getSelect(dl, VT, Tmp2, Tmp1, Tmp3); 3323 Results.push_back(Tmp1); 3324 break; 3325 } 3326 case ISD::SMIN: 3327 case ISD::SMAX: 3328 case ISD::UMIN: 3329 case ISD::UMAX: { 3330 // Expand Y = MAX(A, B) -> Y = (A > B) ? A : B 3331 ISD::CondCode Pred; 3332 switch (Node->getOpcode()) { 3333 default: llvm_unreachable("How did we get here?"); 3334 case ISD::SMAX: Pred = ISD::SETGT; break; 3335 case ISD::SMIN: Pred = ISD::SETLT; break; 3336 case ISD::UMAX: Pred = ISD::SETUGT; break; 3337 case ISD::UMIN: Pred = ISD::SETULT; break; 3338 } 3339 Tmp1 = Node->getOperand(0); 3340 Tmp2 = Node->getOperand(1); 3341 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp1, Tmp2, Pred); 3342 Results.push_back(Tmp1); 3343 break; 3344 } 3345 3346 case ISD::FMINNUM: 3347 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMIN_F32, RTLIB::FMIN_F64, 3348 RTLIB::FMIN_F80, RTLIB::FMIN_F128, 3349 RTLIB::FMIN_PPCF128)); 3350 break; 3351 case ISD::FMAXNUM: 3352 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMAX_F32, RTLIB::FMAX_F64, 3353 RTLIB::FMAX_F80, RTLIB::FMAX_F128, 3354 RTLIB::FMAX_PPCF128)); 3355 break; 3356 case ISD::FSQRT: 3357 Results.push_back(ExpandFPLibCall(Node, RTLIB::SQRT_F32, RTLIB::SQRT_F64, 3358 RTLIB::SQRT_F80, RTLIB::SQRT_F128, 3359 RTLIB::SQRT_PPCF128)); 3360 break; 3361 case ISD::FSIN: 3362 case ISD::FCOS: { 3363 EVT VT = Node->getValueType(0); 3364 bool isSIN = Node->getOpcode() == ISD::FSIN; 3365 // Turn fsin / fcos into ISD::FSINCOS node if there are a pair of fsin / 3366 // fcos which share the same operand and both are used. 3367 if ((TLI.isOperationLegalOrCustom(ISD::FSINCOS, VT) || 3368 canCombineSinCosLibcall(Node, TLI, TM)) 3369 && useSinCos(Node)) { 3370 SDVTList VTs = DAG.getVTList(VT, VT); 3371 Tmp1 = DAG.getNode(ISD::FSINCOS, dl, VTs, Node->getOperand(0)); 3372 if (!isSIN) 3373 Tmp1 = Tmp1.getValue(1); 3374 Results.push_back(Tmp1); 3375 } else if (isSIN) { 3376 Results.push_back(ExpandFPLibCall(Node, RTLIB::SIN_F32, RTLIB::SIN_F64, 3377 RTLIB::SIN_F80, RTLIB::SIN_F128, 3378 RTLIB::SIN_PPCF128)); 3379 } else { 3380 Results.push_back(ExpandFPLibCall(Node, RTLIB::COS_F32, RTLIB::COS_F64, 3381 RTLIB::COS_F80, RTLIB::COS_F128, 3382 RTLIB::COS_PPCF128)); 3383 } 3384 break; 3385 } 3386 case ISD::FSINCOS: 3387 // Expand into sincos libcall. 3388 ExpandSinCosLibCall(Node, Results); 3389 break; 3390 case ISD::FLOG: 3391 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG_F32, RTLIB::LOG_F64, 3392 RTLIB::LOG_F80, RTLIB::LOG_F128, 3393 RTLIB::LOG_PPCF128)); 3394 break; 3395 case ISD::FLOG2: 3396 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG2_F32, RTLIB::LOG2_F64, 3397 RTLIB::LOG2_F80, RTLIB::LOG2_F128, 3398 RTLIB::LOG2_PPCF128)); 3399 break; 3400 case ISD::FLOG10: 3401 Results.push_back(ExpandFPLibCall(Node, RTLIB::LOG10_F32, RTLIB::LOG10_F64, 3402 RTLIB::LOG10_F80, RTLIB::LOG10_F128, 3403 RTLIB::LOG10_PPCF128)); 3404 break; 3405 case ISD::FEXP: 3406 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP_F32, RTLIB::EXP_F64, 3407 RTLIB::EXP_F80, RTLIB::EXP_F128, 3408 RTLIB::EXP_PPCF128)); 3409 break; 3410 case ISD::FEXP2: 3411 Results.push_back(ExpandFPLibCall(Node, RTLIB::EXP2_F32, RTLIB::EXP2_F64, 3412 RTLIB::EXP2_F80, RTLIB::EXP2_F128, 3413 RTLIB::EXP2_PPCF128)); 3414 break; 3415 case ISD::FTRUNC: 3416 Results.push_back(ExpandFPLibCall(Node, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64, 3417 RTLIB::TRUNC_F80, RTLIB::TRUNC_F128, 3418 RTLIB::TRUNC_PPCF128)); 3419 break; 3420 case ISD::FFLOOR: 3421 Results.push_back(ExpandFPLibCall(Node, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64, 3422 RTLIB::FLOOR_F80, RTLIB::FLOOR_F128, 3423 RTLIB::FLOOR_PPCF128)); 3424 break; 3425 case ISD::FCEIL: 3426 Results.push_back(ExpandFPLibCall(Node, RTLIB::CEIL_F32, RTLIB::CEIL_F64, 3427 RTLIB::CEIL_F80, RTLIB::CEIL_F128, 3428 RTLIB::CEIL_PPCF128)); 3429 break; 3430 case ISD::FRINT: 3431 Results.push_back(ExpandFPLibCall(Node, RTLIB::RINT_F32, RTLIB::RINT_F64, 3432 RTLIB::RINT_F80, RTLIB::RINT_F128, 3433 RTLIB::RINT_PPCF128)); 3434 break; 3435 case ISD::FNEARBYINT: 3436 Results.push_back(ExpandFPLibCall(Node, RTLIB::NEARBYINT_F32, 3437 RTLIB::NEARBYINT_F64, 3438 RTLIB::NEARBYINT_F80, 3439 RTLIB::NEARBYINT_F128, 3440 RTLIB::NEARBYINT_PPCF128)); 3441 break; 3442 case ISD::FROUND: 3443 Results.push_back(ExpandFPLibCall(Node, RTLIB::ROUND_F32, 3444 RTLIB::ROUND_F64, 3445 RTLIB::ROUND_F80, 3446 RTLIB::ROUND_F128, 3447 RTLIB::ROUND_PPCF128)); 3448 break; 3449 case ISD::FPOWI: 3450 Results.push_back(ExpandFPLibCall(Node, RTLIB::POWI_F32, RTLIB::POWI_F64, 3451 RTLIB::POWI_F80, RTLIB::POWI_F128, 3452 RTLIB::POWI_PPCF128)); 3453 break; 3454 case ISD::FPOW: 3455 Results.push_back(ExpandFPLibCall(Node, RTLIB::POW_F32, RTLIB::POW_F64, 3456 RTLIB::POW_F80, RTLIB::POW_F128, 3457 RTLIB::POW_PPCF128)); 3458 break; 3459 case ISD::FDIV: 3460 Results.push_back(ExpandFPLibCall(Node, RTLIB::DIV_F32, RTLIB::DIV_F64, 3461 RTLIB::DIV_F80, RTLIB::DIV_F128, 3462 RTLIB::DIV_PPCF128)); 3463 break; 3464 case ISD::FREM: 3465 Results.push_back(ExpandFPLibCall(Node, RTLIB::REM_F32, RTLIB::REM_F64, 3466 RTLIB::REM_F80, RTLIB::REM_F128, 3467 RTLIB::REM_PPCF128)); 3468 break; 3469 case ISD::FMA: 3470 Results.push_back(ExpandFPLibCall(Node, RTLIB::FMA_F32, RTLIB::FMA_F64, 3471 RTLIB::FMA_F80, RTLIB::FMA_F128, 3472 RTLIB::FMA_PPCF128)); 3473 break; 3474 case ISD::FMAD: 3475 llvm_unreachable("Illegal fmad should never be formed"); 3476 3477 case ISD::FADD: 3478 Results.push_back(ExpandFPLibCall(Node, RTLIB::ADD_F32, RTLIB::ADD_F64, 3479 RTLIB::ADD_F80, RTLIB::ADD_F128, 3480 RTLIB::ADD_PPCF128)); 3481 break; 3482 case ISD::FMUL: 3483 Results.push_back(ExpandFPLibCall(Node, RTLIB::MUL_F32, RTLIB::MUL_F64, 3484 RTLIB::MUL_F80, RTLIB::MUL_F128, 3485 RTLIB::MUL_PPCF128)); 3486 break; 3487 case ISD::FP16_TO_FP: { 3488 if (Node->getValueType(0) == MVT::f32) { 3489 Results.push_back(ExpandLibCall(RTLIB::FPEXT_F16_F32, Node, false)); 3490 break; 3491 } 3492 3493 // We can extend to types bigger than f32 in two steps without changing the 3494 // result. Since "f16 -> f32" is much more commonly available, give CodeGen 3495 // the option of emitting that before resorting to a libcall. 3496 SDValue Res = 3497 DAG.getNode(ISD::FP16_TO_FP, dl, MVT::f32, Node->getOperand(0)); 3498 Results.push_back( 3499 DAG.getNode(ISD::FP_EXTEND, dl, Node->getValueType(0), Res)); 3500 break; 3501 } 3502 case ISD::FP_TO_FP16: { 3503 if (!TLI.useSoftFloat() && TM.Options.UnsafeFPMath) { 3504 SDValue Op = Node->getOperand(0); 3505 MVT SVT = Op.getSimpleValueType(); 3506 if ((SVT == MVT::f64 || SVT == MVT::f80) && 3507 TLI.isOperationLegalOrCustom(ISD::FP_TO_FP16, MVT::f32)) { 3508 // Under fastmath, we can expand this node into a fround followed by 3509 // a float-half conversion. 3510 SDValue FloatVal = DAG.getNode(ISD::FP_ROUND, dl, MVT::f32, Op, 3511 DAG.getIntPtrConstant(0, dl)); 3512 Results.push_back( 3513 DAG.getNode(ISD::FP_TO_FP16, dl, MVT::i16, FloatVal)); 3514 break; 3515 } 3516 } 3517 3518 RTLIB::Libcall LC = 3519 RTLIB::getFPROUND(Node->getOperand(0).getValueType(), MVT::f16); 3520 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unable to expand fp_to_fp16"); 3521 Results.push_back(ExpandLibCall(LC, Node, false)); 3522 break; 3523 } 3524 case ISD::ConstantFP: { 3525 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node); 3526 // Check to see if this FP immediate is already legal. 3527 // If this is a legal constant, turn it into a TargetConstantFP node. 3528 if (!TLI.isFPImmLegal(CFP->getValueAPF(), Node->getValueType(0))) 3529 Results.push_back(ExpandConstantFP(CFP, true)); 3530 break; 3531 } 3532 case ISD::FSUB: { 3533 EVT VT = Node->getValueType(0); 3534 if (TLI.isOperationLegalOrCustom(ISD::FADD, VT) && 3535 TLI.isOperationLegalOrCustom(ISD::FNEG, VT)) { 3536 Tmp1 = DAG.getNode(ISD::FNEG, dl, VT, Node->getOperand(1)); 3537 Tmp1 = DAG.getNode(ISD::FADD, dl, VT, Node->getOperand(0), Tmp1); 3538 Results.push_back(Tmp1); 3539 } else { 3540 Results.push_back(ExpandFPLibCall(Node, RTLIB::SUB_F32, RTLIB::SUB_F64, 3541 RTLIB::SUB_F80, RTLIB::SUB_F128, 3542 RTLIB::SUB_PPCF128)); 3543 } 3544 break; 3545 } 3546 case ISD::SUB: { 3547 EVT VT = Node->getValueType(0); 3548 assert(TLI.isOperationLegalOrCustom(ISD::ADD, VT) && 3549 TLI.isOperationLegalOrCustom(ISD::XOR, VT) && 3550 "Don't know how to expand this subtraction!"); 3551 Tmp1 = DAG.getNode(ISD::XOR, dl, VT, Node->getOperand(1), 3552 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), dl, 3553 VT)); 3554 Tmp1 = DAG.getNode(ISD::ADD, dl, VT, Tmp1, DAG.getConstant(1, dl, VT)); 3555 Results.push_back(DAG.getNode(ISD::ADD, dl, VT, Node->getOperand(0), Tmp1)); 3556 break; 3557 } 3558 case ISD::UREM: 3559 case ISD::SREM: { 3560 EVT VT = Node->getValueType(0); 3561 bool isSigned = Node->getOpcode() == ISD::SREM; 3562 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV; 3563 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; 3564 Tmp2 = Node->getOperand(0); 3565 Tmp3 = Node->getOperand(1); 3566 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) || 3567 (isDivRemLibcallAvailable(Node, isSigned, TLI) && 3568 // If div is legal, it's better to do the normal expansion 3569 !TLI.isOperationLegalOrCustom(DivOpc, Node->getValueType(0)) && 3570 useDivRem(Node, isSigned, false))) { 3571 SDVTList VTs = DAG.getVTList(VT, VT); 3572 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1); 3573 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) { 3574 // X % Y -> X-X/Y*Y 3575 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3); 3576 Tmp1 = DAG.getNode(ISD::MUL, dl, VT, Tmp1, Tmp3); 3577 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, Tmp2, Tmp1); 3578 } else if (isSigned) 3579 Tmp1 = ExpandIntLibCall(Node, true, 3580 RTLIB::SREM_I8, 3581 RTLIB::SREM_I16, RTLIB::SREM_I32, 3582 RTLIB::SREM_I64, RTLIB::SREM_I128); 3583 else 3584 Tmp1 = ExpandIntLibCall(Node, false, 3585 RTLIB::UREM_I8, 3586 RTLIB::UREM_I16, RTLIB::UREM_I32, 3587 RTLIB::UREM_I64, RTLIB::UREM_I128); 3588 Results.push_back(Tmp1); 3589 break; 3590 } 3591 case ISD::UDIV: 3592 case ISD::SDIV: { 3593 bool isSigned = Node->getOpcode() == ISD::SDIV; 3594 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; 3595 EVT VT = Node->getValueType(0); 3596 SDVTList VTs = DAG.getVTList(VT, VT); 3597 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) || 3598 (isDivRemLibcallAvailable(Node, isSigned, TLI) && 3599 useDivRem(Node, isSigned, true))) 3600 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), 3601 Node->getOperand(1)); 3602 else if (isSigned) 3603 Tmp1 = ExpandIntLibCall(Node, true, 3604 RTLIB::SDIV_I8, 3605 RTLIB::SDIV_I16, RTLIB::SDIV_I32, 3606 RTLIB::SDIV_I64, RTLIB::SDIV_I128); 3607 else 3608 Tmp1 = ExpandIntLibCall(Node, false, 3609 RTLIB::UDIV_I8, 3610 RTLIB::UDIV_I16, RTLIB::UDIV_I32, 3611 RTLIB::UDIV_I64, RTLIB::UDIV_I128); 3612 Results.push_back(Tmp1); 3613 break; 3614 } 3615 case ISD::MULHU: 3616 case ISD::MULHS: { 3617 unsigned ExpandOpcode = Node->getOpcode() == ISD::MULHU ? ISD::UMUL_LOHI : 3618 ISD::SMUL_LOHI; 3619 EVT VT = Node->getValueType(0); 3620 SDVTList VTs = DAG.getVTList(VT, VT); 3621 assert(TLI.isOperationLegalOrCustom(ExpandOpcode, VT) && 3622 "If this wasn't legal, it shouldn't have been created!"); 3623 Tmp1 = DAG.getNode(ExpandOpcode, dl, VTs, Node->getOperand(0), 3624 Node->getOperand(1)); 3625 Results.push_back(Tmp1.getValue(1)); 3626 break; 3627 } 3628 case ISD::SDIVREM: 3629 case ISD::UDIVREM: 3630 // Expand into divrem libcall 3631 ExpandDivRemLibCall(Node, Results); 3632 break; 3633 case ISD::MUL: { 3634 EVT VT = Node->getValueType(0); 3635 SDVTList VTs = DAG.getVTList(VT, VT); 3636 // See if multiply or divide can be lowered using two-result operations. 3637 // We just need the low half of the multiply; try both the signed 3638 // and unsigned forms. If the target supports both SMUL_LOHI and 3639 // UMUL_LOHI, form a preference by checking which forms of plain 3640 // MULH it supports. 3641 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT); 3642 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT); 3643 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT); 3644 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT); 3645 unsigned OpToUse = 0; 3646 if (HasSMUL_LOHI && !HasMULHS) { 3647 OpToUse = ISD::SMUL_LOHI; 3648 } else if (HasUMUL_LOHI && !HasMULHU) { 3649 OpToUse = ISD::UMUL_LOHI; 3650 } else if (HasSMUL_LOHI) { 3651 OpToUse = ISD::SMUL_LOHI; 3652 } else if (HasUMUL_LOHI) { 3653 OpToUse = ISD::UMUL_LOHI; 3654 } 3655 if (OpToUse) { 3656 Results.push_back(DAG.getNode(OpToUse, dl, VTs, Node->getOperand(0), 3657 Node->getOperand(1))); 3658 break; 3659 } 3660 3661 SDValue Lo, Hi; 3662 EVT HalfType = VT.getHalfSizedIntegerVT(*DAG.getContext()); 3663 if (TLI.isOperationLegalOrCustom(ISD::ZERO_EXTEND, VT) && 3664 TLI.isOperationLegalOrCustom(ISD::ANY_EXTEND, VT) && 3665 TLI.isOperationLegalOrCustom(ISD::SHL, VT) && 3666 TLI.isOperationLegalOrCustom(ISD::OR, VT) && 3667 TLI.expandMUL(Node, Lo, Hi, HalfType, DAG)) { 3668 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Lo); 3669 Hi = DAG.getNode(ISD::ANY_EXTEND, dl, VT, Hi); 3670 SDValue Shift = 3671 DAG.getConstant(HalfType.getSizeInBits(), dl, 3672 TLI.getShiftAmountTy(HalfType, DAG.getDataLayout())); 3673 Hi = DAG.getNode(ISD::SHL, dl, VT, Hi, Shift); 3674 Results.push_back(DAG.getNode(ISD::OR, dl, VT, Lo, Hi)); 3675 break; 3676 } 3677 3678 Tmp1 = ExpandIntLibCall(Node, false, 3679 RTLIB::MUL_I8, 3680 RTLIB::MUL_I16, RTLIB::MUL_I32, 3681 RTLIB::MUL_I64, RTLIB::MUL_I128); 3682 Results.push_back(Tmp1); 3683 break; 3684 } 3685 case ISD::SADDO: 3686 case ISD::SSUBO: { 3687 SDValue LHS = Node->getOperand(0); 3688 SDValue RHS = Node->getOperand(1); 3689 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ? 3690 ISD::ADD : ISD::SUB, dl, LHS.getValueType(), 3691 LHS, RHS); 3692 Results.push_back(Sum); 3693 EVT ResultType = Node->getValueType(1); 3694 EVT OType = getSetCCResultType(Node->getValueType(0)); 3695 3696 SDValue Zero = DAG.getConstant(0, dl, LHS.getValueType()); 3697 3698 // LHSSign -> LHS >= 0 3699 // RHSSign -> RHS >= 0 3700 // SumSign -> Sum >= 0 3701 // 3702 // Add: 3703 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign) 3704 // Sub: 3705 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign) 3706 // 3707 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE); 3708 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE); 3709 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign, 3710 Node->getOpcode() == ISD::SADDO ? 3711 ISD::SETEQ : ISD::SETNE); 3712 3713 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE); 3714 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE); 3715 3716 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE); 3717 Results.push_back(DAG.getBoolExtOrTrunc(Cmp, dl, ResultType, ResultType)); 3718 break; 3719 } 3720 case ISD::UADDO: 3721 case ISD::USUBO: { 3722 SDValue LHS = Node->getOperand(0); 3723 SDValue RHS = Node->getOperand(1); 3724 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ? 3725 ISD::ADD : ISD::SUB, dl, LHS.getValueType(), 3726 LHS, RHS); 3727 Results.push_back(Sum); 3728 3729 EVT ResultType = Node->getValueType(1); 3730 EVT SetCCType = getSetCCResultType(Node->getValueType(0)); 3731 ISD::CondCode CC 3732 = Node->getOpcode() == ISD::UADDO ? ISD::SETULT : ISD::SETUGT; 3733 SDValue SetCC = DAG.getSetCC(dl, SetCCType, Sum, LHS, CC); 3734 3735 Results.push_back(DAG.getBoolExtOrTrunc(SetCC, dl, ResultType, ResultType)); 3736 break; 3737 } 3738 case ISD::UMULO: 3739 case ISD::SMULO: { 3740 EVT VT = Node->getValueType(0); 3741 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits() * 2); 3742 SDValue LHS = Node->getOperand(0); 3743 SDValue RHS = Node->getOperand(1); 3744 SDValue BottomHalf; 3745 SDValue TopHalf; 3746 static const unsigned Ops[2][3] = 3747 { { ISD::MULHU, ISD::UMUL_LOHI, ISD::ZERO_EXTEND }, 3748 { ISD::MULHS, ISD::SMUL_LOHI, ISD::SIGN_EXTEND }}; 3749 bool isSigned = Node->getOpcode() == ISD::SMULO; 3750 if (TLI.isOperationLegalOrCustom(Ops[isSigned][0], VT)) { 3751 BottomHalf = DAG.getNode(ISD::MUL, dl, VT, LHS, RHS); 3752 TopHalf = DAG.getNode(Ops[isSigned][0], dl, VT, LHS, RHS); 3753 } else if (TLI.isOperationLegalOrCustom(Ops[isSigned][1], VT)) { 3754 BottomHalf = DAG.getNode(Ops[isSigned][1], dl, DAG.getVTList(VT, VT), LHS, 3755 RHS); 3756 TopHalf = BottomHalf.getValue(1); 3757 } else if (TLI.isTypeLegal(WideVT)) { 3758 LHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, LHS); 3759 RHS = DAG.getNode(Ops[isSigned][2], dl, WideVT, RHS); 3760 Tmp1 = DAG.getNode(ISD::MUL, dl, WideVT, LHS, RHS); 3761 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1, 3762 DAG.getIntPtrConstant(0, dl)); 3763 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Tmp1, 3764 DAG.getIntPtrConstant(1, dl)); 3765 } else { 3766 // We can fall back to a libcall with an illegal type for the MUL if we 3767 // have a libcall big enough. 3768 // Also, we can fall back to a division in some cases, but that's a big 3769 // performance hit in the general case. 3770 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL; 3771 if (WideVT == MVT::i16) 3772 LC = RTLIB::MUL_I16; 3773 else if (WideVT == MVT::i32) 3774 LC = RTLIB::MUL_I32; 3775 else if (WideVT == MVT::i64) 3776 LC = RTLIB::MUL_I64; 3777 else if (WideVT == MVT::i128) 3778 LC = RTLIB::MUL_I128; 3779 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Cannot expand this operation!"); 3780 3781 // The high part is obtained by SRA'ing all but one of the bits of low 3782 // part. 3783 unsigned LoSize = VT.getSizeInBits(); 3784 SDValue HiLHS = 3785 DAG.getNode(ISD::SRA, dl, VT, RHS, 3786 DAG.getConstant(LoSize - 1, dl, 3787 TLI.getPointerTy(DAG.getDataLayout()))); 3788 SDValue HiRHS = 3789 DAG.getNode(ISD::SRA, dl, VT, LHS, 3790 DAG.getConstant(LoSize - 1, dl, 3791 TLI.getPointerTy(DAG.getDataLayout()))); 3792 3793 // Here we're passing the 2 arguments explicitly as 4 arguments that are 3794 // pre-lowered to the correct types. This all depends upon WideVT not 3795 // being a legal type for the architecture and thus has to be split to 3796 // two arguments. 3797 SDValue Args[] = { LHS, HiLHS, RHS, HiRHS }; 3798 SDValue Ret = ExpandLibCall(LC, WideVT, Args, 4, isSigned, dl); 3799 BottomHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret, 3800 DAG.getIntPtrConstant(0, dl)); 3801 TopHalf = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, VT, Ret, 3802 DAG.getIntPtrConstant(1, dl)); 3803 // Ret is a node with an illegal type. Because such things are not 3804 // generally permitted during this phase of legalization, make sure the 3805 // node has no more uses. The above EXTRACT_ELEMENT nodes should have been 3806 // folded. 3807 assert(Ret->use_empty() && 3808 "Unexpected uses of illegally type from expanded lib call."); 3809 } 3810 3811 if (isSigned) { 3812 Tmp1 = DAG.getConstant( 3813 VT.getSizeInBits() - 1, dl, 3814 TLI.getShiftAmountTy(BottomHalf.getValueType(), DAG.getDataLayout())); 3815 Tmp1 = DAG.getNode(ISD::SRA, dl, VT, BottomHalf, Tmp1); 3816 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, Tmp1, 3817 ISD::SETNE); 3818 } else { 3819 TopHalf = DAG.getSetCC(dl, getSetCCResultType(VT), TopHalf, 3820 DAG.getConstant(0, dl, VT), ISD::SETNE); 3821 } 3822 Results.push_back(BottomHalf); 3823 Results.push_back(TopHalf); 3824 break; 3825 } 3826 case ISD::BUILD_PAIR: { 3827 EVT PairTy = Node->getValueType(0); 3828 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Node->getOperand(0)); 3829 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Node->getOperand(1)); 3830 Tmp2 = DAG.getNode( 3831 ISD::SHL, dl, PairTy, Tmp2, 3832 DAG.getConstant(PairTy.getSizeInBits() / 2, dl, 3833 TLI.getShiftAmountTy(PairTy, DAG.getDataLayout()))); 3834 Results.push_back(DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2)); 3835 break; 3836 } 3837 case ISD::SELECT: 3838 Tmp1 = Node->getOperand(0); 3839 Tmp2 = Node->getOperand(1); 3840 Tmp3 = Node->getOperand(2); 3841 if (Tmp1.getOpcode() == ISD::SETCC) { 3842 Tmp1 = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1), 3843 Tmp2, Tmp3, 3844 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get()); 3845 } else { 3846 Tmp1 = DAG.getSelectCC(dl, Tmp1, 3847 DAG.getConstant(0, dl, Tmp1.getValueType()), 3848 Tmp2, Tmp3, ISD::SETNE); 3849 } 3850 Results.push_back(Tmp1); 3851 break; 3852 case ISD::BR_JT: { 3853 SDValue Chain = Node->getOperand(0); 3854 SDValue Table = Node->getOperand(1); 3855 SDValue Index = Node->getOperand(2); 3856 3857 EVT PTy = TLI.getPointerTy(DAG.getDataLayout()); 3858 3859 const DataLayout &TD = DAG.getDataLayout(); 3860 unsigned EntrySize = 3861 DAG.getMachineFunction().getJumpTableInfo()->getEntrySize(TD); 3862 3863 Index = DAG.getNode(ISD::MUL, dl, Index.getValueType(), Index, 3864 DAG.getConstant(EntrySize, dl, Index.getValueType())); 3865 SDValue Addr = DAG.getNode(ISD::ADD, dl, Index.getValueType(), 3866 Index, Table); 3867 3868 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8); 3869 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr, 3870 MachinePointerInfo::getJumpTable(), MemVT, 3871 false, false, false, 0); 3872 Addr = LD; 3873 if (TM.getRelocationModel() == Reloc::PIC_) { 3874 // For PIC, the sequence is: 3875 // BRIND(load(Jumptable + index) + RelocBase) 3876 // RelocBase can be JumpTable, GOT or some sort of global base. 3877 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr, 3878 TLI.getPICJumpTableRelocBase(Table, DAG)); 3879 } 3880 Tmp1 = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr); 3881 Results.push_back(Tmp1); 3882 break; 3883 } 3884 case ISD::BRCOND: 3885 // Expand brcond's setcc into its constituent parts and create a BR_CC 3886 // Node. 3887 Tmp1 = Node->getOperand(0); 3888 Tmp2 = Node->getOperand(1); 3889 if (Tmp2.getOpcode() == ISD::SETCC) { 3890 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, 3891 Tmp1, Tmp2.getOperand(2), 3892 Tmp2.getOperand(0), Tmp2.getOperand(1), 3893 Node->getOperand(2)); 3894 } else { 3895 // We test only the i1 bit. Skip the AND if UNDEF. 3896 Tmp3 = (Tmp2.getOpcode() == ISD::UNDEF) ? Tmp2 : 3897 DAG.getNode(ISD::AND, dl, Tmp2.getValueType(), Tmp2, 3898 DAG.getConstant(1, dl, Tmp2.getValueType())); 3899 Tmp1 = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1, 3900 DAG.getCondCode(ISD::SETNE), Tmp3, 3901 DAG.getConstant(0, dl, Tmp3.getValueType()), 3902 Node->getOperand(2)); 3903 } 3904 Results.push_back(Tmp1); 3905 break; 3906 case ISD::SETCC: { 3907 Tmp1 = Node->getOperand(0); 3908 Tmp2 = Node->getOperand(1); 3909 Tmp3 = Node->getOperand(2); 3910 bool Legalized = LegalizeSetCCCondCode(Node->getValueType(0), Tmp1, Tmp2, 3911 Tmp3, NeedInvert, dl); 3912 3913 if (Legalized) { 3914 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the 3915 // condition code, create a new SETCC node. 3916 if (Tmp3.getNode()) 3917 Tmp1 = DAG.getNode(ISD::SETCC, dl, Node->getValueType(0), 3918 Tmp1, Tmp2, Tmp3); 3919 3920 // If we expanded the SETCC by inverting the condition code, then wrap 3921 // the existing SETCC in a NOT to restore the intended condition. 3922 if (NeedInvert) 3923 Tmp1 = DAG.getLogicalNOT(dl, Tmp1, Tmp1->getValueType(0)); 3924 3925 Results.push_back(Tmp1); 3926 break; 3927 } 3928 3929 // Otherwise, SETCC for the given comparison type must be completely 3930 // illegal; expand it into a SELECT_CC. 3931 EVT VT = Node->getValueType(0); 3932 int TrueValue; 3933 switch (TLI.getBooleanContents(Tmp1->getValueType(0))) { 3934 case TargetLowering::ZeroOrOneBooleanContent: 3935 case TargetLowering::UndefinedBooleanContent: 3936 TrueValue = 1; 3937 break; 3938 case TargetLowering::ZeroOrNegativeOneBooleanContent: 3939 TrueValue = -1; 3940 break; 3941 } 3942 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2, 3943 DAG.getConstant(TrueValue, dl, VT), 3944 DAG.getConstant(0, dl, VT), 3945 Tmp3); 3946 Results.push_back(Tmp1); 3947 break; 3948 } 3949 case ISD::SELECT_CC: { 3950 Tmp1 = Node->getOperand(0); // LHS 3951 Tmp2 = Node->getOperand(1); // RHS 3952 Tmp3 = Node->getOperand(2); // True 3953 Tmp4 = Node->getOperand(3); // False 3954 EVT VT = Node->getValueType(0); 3955 SDValue CC = Node->getOperand(4); 3956 ISD::CondCode CCOp = cast<CondCodeSDNode>(CC)->get(); 3957 3958 if (TLI.isCondCodeLegal(CCOp, Tmp1.getSimpleValueType())) { 3959 // If the condition code is legal, then we need to expand this 3960 // node using SETCC and SELECT. 3961 EVT CmpVT = Tmp1.getValueType(); 3962 assert(!TLI.isOperationExpand(ISD::SELECT, VT) && 3963 "Cannot expand ISD::SELECT_CC when ISD::SELECT also needs to be " 3964 "expanded."); 3965 EVT CCVT = 3966 TLI.getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), CmpVT); 3967 SDValue Cond = DAG.getNode(ISD::SETCC, dl, CCVT, Tmp1, Tmp2, CC); 3968 Results.push_back(DAG.getSelect(dl, VT, Cond, Tmp3, Tmp4)); 3969 break; 3970 } 3971 3972 // SELECT_CC is legal, so the condition code must not be. 3973 bool Legalized = false; 3974 // Try to legalize by inverting the condition. This is for targets that 3975 // might support an ordered version of a condition, but not the unordered 3976 // version (or vice versa). 3977 ISD::CondCode InvCC = ISD::getSetCCInverse(CCOp, 3978 Tmp1.getValueType().isInteger()); 3979 if (TLI.isCondCodeLegal(InvCC, Tmp1.getSimpleValueType())) { 3980 // Use the new condition code and swap true and false 3981 Legalized = true; 3982 Tmp1 = DAG.getSelectCC(dl, Tmp1, Tmp2, Tmp4, Tmp3, InvCC); 3983 } else { 3984 // If The inverse is not legal, then try to swap the arguments using 3985 // the inverse condition code. 3986 ISD::CondCode SwapInvCC = ISD::getSetCCSwappedOperands(InvCC); 3987 if (TLI.isCondCodeLegal(SwapInvCC, Tmp1.getSimpleValueType())) { 3988 // The swapped inverse condition is legal, so swap true and false, 3989 // lhs and rhs. 3990 Legalized = true; 3991 Tmp1 = DAG.getSelectCC(dl, Tmp2, Tmp1, Tmp4, Tmp3, SwapInvCC); 3992 } 3993 } 3994 3995 if (!Legalized) { 3996 Legalized = LegalizeSetCCCondCode( 3997 getSetCCResultType(Tmp1.getValueType()), Tmp1, Tmp2, CC, NeedInvert, 3998 dl); 3999 4000 assert(Legalized && "Can't legalize SELECT_CC with legal condition!"); 4001 4002 // If we expanded the SETCC by inverting the condition code, then swap 4003 // the True/False operands to match. 4004 if (NeedInvert) 4005 std::swap(Tmp3, Tmp4); 4006 4007 // If we expanded the SETCC by swapping LHS and RHS, or by inverting the 4008 // condition code, create a new SELECT_CC node. 4009 if (CC.getNode()) { 4010 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), 4011 Tmp1, Tmp2, Tmp3, Tmp4, CC); 4012 } else { 4013 Tmp2 = DAG.getConstant(0, dl, Tmp1.getValueType()); 4014 CC = DAG.getCondCode(ISD::SETNE); 4015 Tmp1 = DAG.getNode(ISD::SELECT_CC, dl, Node->getValueType(0), Tmp1, 4016 Tmp2, Tmp3, Tmp4, CC); 4017 } 4018 } 4019 Results.push_back(Tmp1); 4020 break; 4021 } 4022 case ISD::BR_CC: { 4023 Tmp1 = Node->getOperand(0); // Chain 4024 Tmp2 = Node->getOperand(2); // LHS 4025 Tmp3 = Node->getOperand(3); // RHS 4026 Tmp4 = Node->getOperand(1); // CC 4027 4028 bool Legalized = LegalizeSetCCCondCode(getSetCCResultType( 4029 Tmp2.getValueType()), Tmp2, Tmp3, Tmp4, NeedInvert, dl); 4030 (void)Legalized; 4031 assert(Legalized && "Can't legalize BR_CC with legal condition!"); 4032 4033 // If we expanded the SETCC by inverting the condition code, then wrap 4034 // the existing SETCC in a NOT to restore the intended condition. 4035 if (NeedInvert) 4036 Tmp4 = DAG.getNOT(dl, Tmp4, Tmp4->getValueType(0)); 4037 4038 // If we expanded the SETCC by swapping LHS and RHS, create a new BR_CC 4039 // node. 4040 if (Tmp4.getNode()) { 4041 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, 4042 Tmp4, Tmp2, Tmp3, Node->getOperand(4)); 4043 } else { 4044 Tmp3 = DAG.getConstant(0, dl, Tmp2.getValueType()); 4045 Tmp4 = DAG.getCondCode(ISD::SETNE); 4046 Tmp1 = DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), Tmp1, Tmp4, 4047 Tmp2, Tmp3, Node->getOperand(4)); 4048 } 4049 Results.push_back(Tmp1); 4050 break; 4051 } 4052 case ISD::BUILD_VECTOR: 4053 Results.push_back(ExpandBUILD_VECTOR(Node)); 4054 break; 4055 case ISD::SRA: 4056 case ISD::SRL: 4057 case ISD::SHL: { 4058 // Scalarize vector SRA/SRL/SHL. 4059 EVT VT = Node->getValueType(0); 4060 assert(VT.isVector() && "Unable to legalize non-vector shift"); 4061 assert(TLI.isTypeLegal(VT.getScalarType())&& "Element type must be legal"); 4062 unsigned NumElem = VT.getVectorNumElements(); 4063 4064 SmallVector<SDValue, 8> Scalars; 4065 for (unsigned Idx = 0; Idx < NumElem; Idx++) { 4066 SDValue Ex = DAG.getNode( 4067 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(0), 4068 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout()))); 4069 SDValue Sh = DAG.getNode( 4070 ISD::EXTRACT_VECTOR_ELT, dl, VT.getScalarType(), Node->getOperand(1), 4071 DAG.getConstant(Idx, dl, TLI.getVectorIdxTy(DAG.getDataLayout()))); 4072 Scalars.push_back(DAG.getNode(Node->getOpcode(), dl, 4073 VT.getScalarType(), Ex, Sh)); 4074 } 4075 SDValue Result = 4076 DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0), Scalars); 4077 ReplaceNode(SDValue(Node, 0), Result); 4078 break; 4079 } 4080 case ISD::GLOBAL_OFFSET_TABLE: 4081 case ISD::GlobalAddress: 4082 case ISD::GlobalTLSAddress: 4083 case ISD::ExternalSymbol: 4084 case ISD::ConstantPool: 4085 case ISD::JumpTable: 4086 case ISD::INTRINSIC_W_CHAIN: 4087 case ISD::INTRINSIC_WO_CHAIN: 4088 case ISD::INTRINSIC_VOID: 4089 // FIXME: Custom lowering for these operations shouldn't return null! 4090 break; 4091 } 4092 4093 // Replace the original node with the legalized result. 4094 if (!Results.empty()) 4095 ReplaceNode(Node, Results.data()); 4096 } 4097 4098 void SelectionDAGLegalize::PromoteNode(SDNode *Node) { 4099 SmallVector<SDValue, 8> Results; 4100 MVT OVT = Node->getSimpleValueType(0); 4101 if (Node->getOpcode() == ISD::UINT_TO_FP || 4102 Node->getOpcode() == ISD::SINT_TO_FP || 4103 Node->getOpcode() == ISD::SETCC) { 4104 OVT = Node->getOperand(0).getSimpleValueType(); 4105 } 4106 if (Node->getOpcode() == ISD::BR_CC) 4107 OVT = Node->getOperand(2).getSimpleValueType(); 4108 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); 4109 SDLoc dl(Node); 4110 SDValue Tmp1, Tmp2, Tmp3; 4111 switch (Node->getOpcode()) { 4112 case ISD::CTTZ: 4113 case ISD::CTTZ_ZERO_UNDEF: 4114 case ISD::CTLZ: 4115 case ISD::CTLZ_ZERO_UNDEF: 4116 case ISD::CTPOP: 4117 // Zero extend the argument. 4118 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0)); 4119 // Perform the larger operation. For CTPOP and CTTZ_ZERO_UNDEF, this is 4120 // already the correct result. 4121 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1); 4122 if (Node->getOpcode() == ISD::CTTZ) { 4123 // FIXME: This should set a bit in the zero extended value instead. 4124 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(NVT), 4125 Tmp1, DAG.getConstant(NVT.getSizeInBits(), dl, NVT), 4126 ISD::SETEQ); 4127 Tmp1 = DAG.getSelect(dl, NVT, Tmp2, 4128 DAG.getConstant(OVT.getSizeInBits(), dl, NVT), Tmp1); 4129 } else if (Node->getOpcode() == ISD::CTLZ || 4130 Node->getOpcode() == ISD::CTLZ_ZERO_UNDEF) { 4131 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) 4132 Tmp1 = DAG.getNode(ISD::SUB, dl, NVT, Tmp1, 4133 DAG.getConstant(NVT.getSizeInBits() - 4134 OVT.getSizeInBits(), dl, NVT)); 4135 } 4136 Results.push_back(DAG.getNode(ISD::TRUNCATE, dl, OVT, Tmp1)); 4137 break; 4138 case ISD::BSWAP: { 4139 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits(); 4140 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0)); 4141 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1); 4142 Tmp1 = DAG.getNode( 4143 ISD::SRL, dl, NVT, Tmp1, 4144 DAG.getConstant(DiffBits, dl, 4145 TLI.getShiftAmountTy(NVT, DAG.getDataLayout()))); 4146 Results.push_back(Tmp1); 4147 break; 4148 } 4149 case ISD::FP_TO_UINT: 4150 case ISD::FP_TO_SINT: 4151 Tmp1 = PromoteLegalFP_TO_INT(Node->getOperand(0), Node->getValueType(0), 4152 Node->getOpcode() == ISD::FP_TO_SINT, dl); 4153 Results.push_back(Tmp1); 4154 break; 4155 case ISD::UINT_TO_FP: 4156 case ISD::SINT_TO_FP: 4157 Tmp1 = PromoteLegalINT_TO_FP(Node->getOperand(0), Node->getValueType(0), 4158 Node->getOpcode() == ISD::SINT_TO_FP, dl); 4159 Results.push_back(Tmp1); 4160 break; 4161 case ISD::VAARG: { 4162 SDValue Chain = Node->getOperand(0); // Get the chain. 4163 SDValue Ptr = Node->getOperand(1); // Get the pointer. 4164 4165 unsigned TruncOp; 4166 if (OVT.isVector()) { 4167 TruncOp = ISD::BITCAST; 4168 } else { 4169 assert(OVT.isInteger() 4170 && "VAARG promotion is supported only for vectors or integer types"); 4171 TruncOp = ISD::TRUNCATE; 4172 } 4173 4174 // Perform the larger operation, then convert back 4175 Tmp1 = DAG.getVAArg(NVT, dl, Chain, Ptr, Node->getOperand(2), 4176 Node->getConstantOperandVal(3)); 4177 Chain = Tmp1.getValue(1); 4178 4179 Tmp2 = DAG.getNode(TruncOp, dl, OVT, Tmp1); 4180 4181 // Modified the chain result - switch anything that used the old chain to 4182 // use the new one. 4183 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), Tmp2); 4184 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 1), Chain); 4185 if (UpdatedNodes) { 4186 UpdatedNodes->insert(Tmp2.getNode()); 4187 UpdatedNodes->insert(Chain.getNode()); 4188 } 4189 ReplacedNode(Node); 4190 break; 4191 } 4192 case ISD::AND: 4193 case ISD::OR: 4194 case ISD::XOR: { 4195 unsigned ExtOp, TruncOp; 4196 if (OVT.isVector()) { 4197 ExtOp = ISD::BITCAST; 4198 TruncOp = ISD::BITCAST; 4199 } else { 4200 assert(OVT.isInteger() && "Cannot promote logic operation"); 4201 ExtOp = ISD::ANY_EXTEND; 4202 TruncOp = ISD::TRUNCATE; 4203 } 4204 // Promote each of the values to the new type. 4205 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0)); 4206 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1)); 4207 // Perform the larger operation, then convert back 4208 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); 4209 Results.push_back(DAG.getNode(TruncOp, dl, OVT, Tmp1)); 4210 break; 4211 } 4212 case ISD::SELECT: { 4213 unsigned ExtOp, TruncOp; 4214 if (Node->getValueType(0).isVector() || 4215 Node->getValueType(0).getSizeInBits() == NVT.getSizeInBits()) { 4216 ExtOp = ISD::BITCAST; 4217 TruncOp = ISD::BITCAST; 4218 } else if (Node->getValueType(0).isInteger()) { 4219 ExtOp = ISD::ANY_EXTEND; 4220 TruncOp = ISD::TRUNCATE; 4221 } else { 4222 ExtOp = ISD::FP_EXTEND; 4223 TruncOp = ISD::FP_ROUND; 4224 } 4225 Tmp1 = Node->getOperand(0); 4226 // Promote each of the values to the new type. 4227 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1)); 4228 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2)); 4229 // Perform the larger operation, then round down. 4230 Tmp1 = DAG.getSelect(dl, NVT, Tmp1, Tmp2, Tmp3); 4231 if (TruncOp != ISD::FP_ROUND) 4232 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1); 4233 else 4234 Tmp1 = DAG.getNode(TruncOp, dl, Node->getValueType(0), Tmp1, 4235 DAG.getIntPtrConstant(0, dl)); 4236 Results.push_back(Tmp1); 4237 break; 4238 } 4239 case ISD::VECTOR_SHUFFLE: { 4240 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(Node)->getMask(); 4241 4242 // Cast the two input vectors. 4243 Tmp1 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(0)); 4244 Tmp2 = DAG.getNode(ISD::BITCAST, dl, NVT, Node->getOperand(1)); 4245 4246 // Convert the shuffle mask to the right # elements. 4247 Tmp1 = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask); 4248 Tmp1 = DAG.getNode(ISD::BITCAST, dl, OVT, Tmp1); 4249 Results.push_back(Tmp1); 4250 break; 4251 } 4252 case ISD::SETCC: { 4253 unsigned ExtOp = ISD::FP_EXTEND; 4254 if (NVT.isInteger()) { 4255 ISD::CondCode CCCode = 4256 cast<CondCodeSDNode>(Node->getOperand(2))->get(); 4257 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 4258 } 4259 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(0)); 4260 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(1)); 4261 Results.push_back(DAG.getNode(ISD::SETCC, dl, Node->getValueType(0), 4262 Tmp1, Tmp2, Node->getOperand(2))); 4263 break; 4264 } 4265 case ISD::BR_CC: { 4266 unsigned ExtOp = ISD::FP_EXTEND; 4267 if (NVT.isInteger()) { 4268 ISD::CondCode CCCode = 4269 cast<CondCodeSDNode>(Node->getOperand(1))->get(); 4270 ExtOp = isSignedIntSetCC(CCCode) ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND; 4271 } 4272 Tmp1 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(2)); 4273 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Node->getOperand(3)); 4274 Results.push_back(DAG.getNode(ISD::BR_CC, dl, Node->getValueType(0), 4275 Node->getOperand(0), Node->getOperand(1), 4276 Tmp1, Tmp2, Node->getOperand(4))); 4277 break; 4278 } 4279 case ISD::FADD: 4280 case ISD::FSUB: 4281 case ISD::FMUL: 4282 case ISD::FDIV: 4283 case ISD::FREM: 4284 case ISD::FMINNUM: 4285 case ISD::FMAXNUM: 4286 case ISD::FCOPYSIGN: 4287 case ISD::FPOW: { 4288 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0)); 4289 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1)); 4290 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); 4291 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT, 4292 Tmp3, DAG.getIntPtrConstant(0, dl))); 4293 break; 4294 } 4295 case ISD::FMA: { 4296 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0)); 4297 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(1)); 4298 Tmp3 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(2)); 4299 Results.push_back( 4300 DAG.getNode(ISD::FP_ROUND, dl, OVT, 4301 DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2, Tmp3), 4302 DAG.getIntPtrConstant(0, dl))); 4303 break; 4304 } 4305 case ISD::FPOWI: { 4306 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0)); 4307 Tmp2 = Node->getOperand(1); 4308 Tmp3 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2); 4309 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT, 4310 Tmp3, DAG.getIntPtrConstant(0, dl))); 4311 break; 4312 } 4313 case ISD::FFLOOR: 4314 case ISD::FCEIL: 4315 case ISD::FRINT: 4316 case ISD::FNEARBYINT: 4317 case ISD::FROUND: 4318 case ISD::FTRUNC: 4319 case ISD::FNEG: 4320 case ISD::FSQRT: 4321 case ISD::FSIN: 4322 case ISD::FCOS: 4323 case ISD::FLOG: 4324 case ISD::FLOG2: 4325 case ISD::FLOG10: 4326 case ISD::FABS: 4327 case ISD::FEXP: 4328 case ISD::FEXP2: { 4329 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Node->getOperand(0)); 4330 Tmp2 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1); 4331 Results.push_back(DAG.getNode(ISD::FP_ROUND, dl, OVT, 4332 Tmp2, DAG.getIntPtrConstant(0, dl))); 4333 break; 4334 } 4335 } 4336 4337 // Replace the original node with the legalized result. 4338 if (!Results.empty()) 4339 ReplaceNode(Node, Results.data()); 4340 } 4341 4342 /// This is the entry point for the file. 4343 void SelectionDAG::Legalize() { 4344 AssignTopologicalOrder(); 4345 4346 SmallPtrSet<SDNode *, 16> LegalizedNodes; 4347 SelectionDAGLegalize Legalizer(*this, LegalizedNodes); 4348 4349 // Visit all the nodes. We start in topological order, so that we see 4350 // nodes with their original operands intact. Legalization can produce 4351 // new nodes which may themselves need to be legalized. Iterate until all 4352 // nodes have been legalized. 4353 for (;;) { 4354 bool AnyLegalized = false; 4355 for (auto NI = allnodes_end(); NI != allnodes_begin();) { 4356 --NI; 4357 4358 SDNode *N = NI; 4359 if (N->use_empty() && N != getRoot().getNode()) { 4360 ++NI; 4361 DeleteNode(N); 4362 continue; 4363 } 4364 4365 if (LegalizedNodes.insert(N).second) { 4366 AnyLegalized = true; 4367 Legalizer.LegalizeOp(N); 4368 4369 if (N->use_empty() && N != getRoot().getNode()) { 4370 ++NI; 4371 DeleteNode(N); 4372 } 4373 } 4374 } 4375 if (!AnyLegalized) 4376 break; 4377 4378 } 4379 4380 // Remove dead nodes now. 4381 RemoveDeadNodes(); 4382 } 4383 4384 bool SelectionDAG::LegalizeOp(SDNode *N, 4385 SmallSetVector<SDNode *, 16> &UpdatedNodes) { 4386 SmallPtrSet<SDNode *, 16> LegalizedNodes; 4387 SelectionDAGLegalize Legalizer(*this, LegalizedNodes, &UpdatedNodes); 4388 4389 // Directly insert the node in question, and legalize it. This will recurse 4390 // as needed through operands. 4391 LegalizedNodes.insert(N); 4392 Legalizer.LegalizeOp(N); 4393 4394 return LegalizedNodes.count(N); 4395 } 4396