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