1 //===- CodeGenDAGPatterns.cpp - Read DAG patterns from .td file -----------===// 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 CodeGenDAGPatterns class, which is used to read and 11 // represent the patterns present in a .td file for instructions. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "CodeGenDAGPatterns.h" 16 #include "llvm/TableGen/Error.h" 17 #include "llvm/TableGen/Record.h" 18 #include "llvm/ADT/StringExtras.h" 19 #include "llvm/ADT/STLExtras.h" 20 #include "llvm/ADT/Twine.h" 21 #include "llvm/Support/Debug.h" 22 #include "llvm/Support/ErrorHandling.h" 23 #include <algorithm> 24 #include <cstdio> 25 #include <set> 26 using namespace llvm; 27 28 //===----------------------------------------------------------------------===// 29 // EEVT::TypeSet Implementation 30 //===----------------------------------------------------------------------===// 31 32 static inline bool isInteger(MVT::SimpleValueType VT) { 33 return EVT(VT).isInteger(); 34 } 35 static inline bool isFloatingPoint(MVT::SimpleValueType VT) { 36 return EVT(VT).isFloatingPoint(); 37 } 38 static inline bool isVector(MVT::SimpleValueType VT) { 39 return EVT(VT).isVector(); 40 } 41 static inline bool isScalar(MVT::SimpleValueType VT) { 42 return !EVT(VT).isVector(); 43 } 44 45 EEVT::TypeSet::TypeSet(MVT::SimpleValueType VT, TreePattern &TP) { 46 if (VT == MVT::iAny) 47 EnforceInteger(TP); 48 else if (VT == MVT::fAny) 49 EnforceFloatingPoint(TP); 50 else if (VT == MVT::vAny) 51 EnforceVector(TP); 52 else { 53 assert((VT < MVT::LAST_VALUETYPE || VT == MVT::iPTR || 54 VT == MVT::iPTRAny) && "Not a concrete type!"); 55 TypeVec.push_back(VT); 56 } 57 } 58 59 60 EEVT::TypeSet::TypeSet(const std::vector<MVT::SimpleValueType> &VTList) { 61 assert(!VTList.empty() && "empty list?"); 62 TypeVec.append(VTList.begin(), VTList.end()); 63 64 if (!VTList.empty()) 65 assert(VTList[0] != MVT::iAny && VTList[0] != MVT::vAny && 66 VTList[0] != MVT::fAny); 67 68 // Verify no duplicates. 69 array_pod_sort(TypeVec.begin(), TypeVec.end()); 70 assert(std::unique(TypeVec.begin(), TypeVec.end()) == TypeVec.end()); 71 } 72 73 /// FillWithPossibleTypes - Set to all legal types and return true, only valid 74 /// on completely unknown type sets. 75 bool EEVT::TypeSet::FillWithPossibleTypes(TreePattern &TP, 76 bool (*Pred)(MVT::SimpleValueType), 77 const char *PredicateName) { 78 assert(isCompletelyUnknown()); 79 const std::vector<MVT::SimpleValueType> &LegalTypes = 80 TP.getDAGPatterns().getTargetInfo().getLegalValueTypes(); 81 82 for (unsigned i = 0, e = LegalTypes.size(); i != e; ++i) 83 if (Pred == 0 || Pred(LegalTypes[i])) 84 TypeVec.push_back(LegalTypes[i]); 85 86 // If we have nothing that matches the predicate, bail out. 87 if (TypeVec.empty()) 88 TP.error("Type inference contradiction found, no " + 89 std::string(PredicateName) + " types found"); 90 // No need to sort with one element. 91 if (TypeVec.size() == 1) return true; 92 93 // Remove duplicates. 94 array_pod_sort(TypeVec.begin(), TypeVec.end()); 95 TypeVec.erase(std::unique(TypeVec.begin(), TypeVec.end()), TypeVec.end()); 96 97 return true; 98 } 99 100 /// hasIntegerTypes - Return true if this TypeSet contains iAny or an 101 /// integer value type. 102 bool EEVT::TypeSet::hasIntegerTypes() const { 103 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) 104 if (isInteger(TypeVec[i])) 105 return true; 106 return false; 107 } 108 109 /// hasFloatingPointTypes - Return true if this TypeSet contains an fAny or 110 /// a floating point value type. 111 bool EEVT::TypeSet::hasFloatingPointTypes() const { 112 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) 113 if (isFloatingPoint(TypeVec[i])) 114 return true; 115 return false; 116 } 117 118 /// hasVectorTypes - Return true if this TypeSet contains a vAny or a vector 119 /// value type. 120 bool EEVT::TypeSet::hasVectorTypes() const { 121 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) 122 if (isVector(TypeVec[i])) 123 return true; 124 return false; 125 } 126 127 128 std::string EEVT::TypeSet::getName() const { 129 if (TypeVec.empty()) return "<empty>"; 130 131 std::string Result; 132 133 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) { 134 std::string VTName = llvm::getEnumName(TypeVec[i]); 135 // Strip off MVT:: prefix if present. 136 if (VTName.substr(0,5) == "MVT::") 137 VTName = VTName.substr(5); 138 if (i) Result += ':'; 139 Result += VTName; 140 } 141 142 if (TypeVec.size() == 1) 143 return Result; 144 return "{" + Result + "}"; 145 } 146 147 /// MergeInTypeInfo - This merges in type information from the specified 148 /// argument. If 'this' changes, it returns true. If the two types are 149 /// contradictory (e.g. merge f32 into i32) then this throws an exception. 150 bool EEVT::TypeSet::MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP){ 151 if (InVT.isCompletelyUnknown() || *this == InVT) 152 return false; 153 154 if (isCompletelyUnknown()) { 155 *this = InVT; 156 return true; 157 } 158 159 assert(TypeVec.size() >= 1 && InVT.TypeVec.size() >= 1 && "No unknowns"); 160 161 // Handle the abstract cases, seeing if we can resolve them better. 162 switch (TypeVec[0]) { 163 default: break; 164 case MVT::iPTR: 165 case MVT::iPTRAny: 166 if (InVT.hasIntegerTypes()) { 167 EEVT::TypeSet InCopy(InVT); 168 InCopy.EnforceInteger(TP); 169 InCopy.EnforceScalar(TP); 170 171 if (InCopy.isConcrete()) { 172 // If the RHS has one integer type, upgrade iPTR to i32. 173 TypeVec[0] = InVT.TypeVec[0]; 174 return true; 175 } 176 177 // If the input has multiple scalar integers, this doesn't add any info. 178 if (!InCopy.isCompletelyUnknown()) 179 return false; 180 } 181 break; 182 } 183 184 // If the input constraint is iAny/iPTR and this is an integer type list, 185 // remove non-integer types from the list. 186 if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) && 187 hasIntegerTypes()) { 188 bool MadeChange = EnforceInteger(TP); 189 190 // If we're merging in iPTR/iPTRAny and the node currently has a list of 191 // multiple different integer types, replace them with a single iPTR. 192 if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) && 193 TypeVec.size() != 1) { 194 TypeVec.resize(1); 195 TypeVec[0] = InVT.TypeVec[0]; 196 MadeChange = true; 197 } 198 199 return MadeChange; 200 } 201 202 // If this is a type list and the RHS is a typelist as well, eliminate entries 203 // from this list that aren't in the other one. 204 bool MadeChange = false; 205 TypeSet InputSet(*this); 206 207 for (unsigned i = 0; i != TypeVec.size(); ++i) { 208 bool InInVT = false; 209 for (unsigned j = 0, e = InVT.TypeVec.size(); j != e; ++j) 210 if (TypeVec[i] == InVT.TypeVec[j]) { 211 InInVT = true; 212 break; 213 } 214 215 if (InInVT) continue; 216 TypeVec.erase(TypeVec.begin()+i--); 217 MadeChange = true; 218 } 219 220 // If we removed all of our types, we have a type contradiction. 221 if (!TypeVec.empty()) 222 return MadeChange; 223 224 // FIXME: Really want an SMLoc here! 225 TP.error("Type inference contradiction found, merging '" + 226 InVT.getName() + "' into '" + InputSet.getName() + "'"); 227 return true; // unreachable 228 } 229 230 /// EnforceInteger - Remove all non-integer types from this set. 231 bool EEVT::TypeSet::EnforceInteger(TreePattern &TP) { 232 // If we know nothing, then get the full set. 233 if (TypeVec.empty()) 234 return FillWithPossibleTypes(TP, isInteger, "integer"); 235 if (!hasFloatingPointTypes()) 236 return false; 237 238 TypeSet InputSet(*this); 239 240 // Filter out all the fp types. 241 for (unsigned i = 0; i != TypeVec.size(); ++i) 242 if (!isInteger(TypeVec[i])) 243 TypeVec.erase(TypeVec.begin()+i--); 244 245 if (TypeVec.empty()) 246 TP.error("Type inference contradiction found, '" + 247 InputSet.getName() + "' needs to be integer"); 248 return true; 249 } 250 251 /// EnforceFloatingPoint - Remove all integer types from this set. 252 bool EEVT::TypeSet::EnforceFloatingPoint(TreePattern &TP) { 253 // If we know nothing, then get the full set. 254 if (TypeVec.empty()) 255 return FillWithPossibleTypes(TP, isFloatingPoint, "floating point"); 256 257 if (!hasIntegerTypes()) 258 return false; 259 260 TypeSet InputSet(*this); 261 262 // Filter out all the fp types. 263 for (unsigned i = 0; i != TypeVec.size(); ++i) 264 if (!isFloatingPoint(TypeVec[i])) 265 TypeVec.erase(TypeVec.begin()+i--); 266 267 if (TypeVec.empty()) 268 TP.error("Type inference contradiction found, '" + 269 InputSet.getName() + "' needs to be floating point"); 270 return true; 271 } 272 273 /// EnforceScalar - Remove all vector types from this. 274 bool EEVT::TypeSet::EnforceScalar(TreePattern &TP) { 275 // If we know nothing, then get the full set. 276 if (TypeVec.empty()) 277 return FillWithPossibleTypes(TP, isScalar, "scalar"); 278 279 if (!hasVectorTypes()) 280 return false; 281 282 TypeSet InputSet(*this); 283 284 // Filter out all the vector types. 285 for (unsigned i = 0; i != TypeVec.size(); ++i) 286 if (!isScalar(TypeVec[i])) 287 TypeVec.erase(TypeVec.begin()+i--); 288 289 if (TypeVec.empty()) 290 TP.error("Type inference contradiction found, '" + 291 InputSet.getName() + "' needs to be scalar"); 292 return true; 293 } 294 295 /// EnforceVector - Remove all vector types from this. 296 bool EEVT::TypeSet::EnforceVector(TreePattern &TP) { 297 // If we know nothing, then get the full set. 298 if (TypeVec.empty()) 299 return FillWithPossibleTypes(TP, isVector, "vector"); 300 301 TypeSet InputSet(*this); 302 bool MadeChange = false; 303 304 // Filter out all the scalar types. 305 for (unsigned i = 0; i != TypeVec.size(); ++i) 306 if (!isVector(TypeVec[i])) { 307 TypeVec.erase(TypeVec.begin()+i--); 308 MadeChange = true; 309 } 310 311 if (TypeVec.empty()) 312 TP.error("Type inference contradiction found, '" + 313 InputSet.getName() + "' needs to be a vector"); 314 return MadeChange; 315 } 316 317 318 319 /// EnforceSmallerThan - 'this' must be a smaller VT than Other. Update 320 /// this an other based on this information. 321 bool EEVT::TypeSet::EnforceSmallerThan(EEVT::TypeSet &Other, TreePattern &TP) { 322 // Both operands must be integer or FP, but we don't care which. 323 bool MadeChange = false; 324 325 if (isCompletelyUnknown()) 326 MadeChange = FillWithPossibleTypes(TP); 327 328 if (Other.isCompletelyUnknown()) 329 MadeChange = Other.FillWithPossibleTypes(TP); 330 331 // If one side is known to be integer or known to be FP but the other side has 332 // no information, get at least the type integrality info in there. 333 if (!hasFloatingPointTypes()) 334 MadeChange |= Other.EnforceInteger(TP); 335 else if (!hasIntegerTypes()) 336 MadeChange |= Other.EnforceFloatingPoint(TP); 337 if (!Other.hasFloatingPointTypes()) 338 MadeChange |= EnforceInteger(TP); 339 else if (!Other.hasIntegerTypes()) 340 MadeChange |= EnforceFloatingPoint(TP); 341 342 assert(!isCompletelyUnknown() && !Other.isCompletelyUnknown() && 343 "Should have a type list now"); 344 345 // If one contains vectors but the other doesn't pull vectors out. 346 if (!hasVectorTypes()) 347 MadeChange |= Other.EnforceScalar(TP); 348 if (!hasVectorTypes()) 349 MadeChange |= EnforceScalar(TP); 350 351 if (TypeVec.size() == 1 && Other.TypeVec.size() == 1) { 352 // If we are down to concrete types, this code does not currently 353 // handle nodes which have multiple types, where some types are 354 // integer, and some are fp. Assert that this is not the case. 355 assert(!(hasIntegerTypes() && hasFloatingPointTypes()) && 356 !(Other.hasIntegerTypes() && Other.hasFloatingPointTypes()) && 357 "SDTCisOpSmallerThanOp does not handle mixed int/fp types!"); 358 359 // Otherwise, if these are both vector types, either this vector 360 // must have a larger bitsize than the other, or this element type 361 // must be larger than the other. 362 EVT Type(TypeVec[0]); 363 EVT OtherType(Other.TypeVec[0]); 364 365 if (hasVectorTypes() && Other.hasVectorTypes()) { 366 if (Type.getSizeInBits() >= OtherType.getSizeInBits()) 367 if (Type.getVectorElementType().getSizeInBits() 368 >= OtherType.getVectorElementType().getSizeInBits()) 369 TP.error("Type inference contradiction found, '" + 370 getName() + "' element type not smaller than '" + 371 Other.getName() +"'!"); 372 } 373 else 374 // For scalar types, the bitsize of this type must be larger 375 // than that of the other. 376 if (Type.getSizeInBits() >= OtherType.getSizeInBits()) 377 TP.error("Type inference contradiction found, '" + 378 getName() + "' is not smaller than '" + 379 Other.getName() +"'!"); 380 381 } 382 383 384 // Handle int and fp as disjoint sets. This won't work for patterns 385 // that have mixed fp/int types but those are likely rare and would 386 // not have been accepted by this code previously. 387 388 // Okay, find the smallest type from the current set and remove it from the 389 // largest set. 390 MVT::SimpleValueType SmallestInt = MVT::LAST_VALUETYPE; 391 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) 392 if (isInteger(TypeVec[i])) { 393 SmallestInt = TypeVec[i]; 394 break; 395 } 396 for (unsigned i = 1, e = TypeVec.size(); i != e; ++i) 397 if (isInteger(TypeVec[i]) && TypeVec[i] < SmallestInt) 398 SmallestInt = TypeVec[i]; 399 400 MVT::SimpleValueType SmallestFP = MVT::LAST_VALUETYPE; 401 for (unsigned i = 0, e = TypeVec.size(); i != e; ++i) 402 if (isFloatingPoint(TypeVec[i])) { 403 SmallestFP = TypeVec[i]; 404 break; 405 } 406 for (unsigned i = 1, e = TypeVec.size(); i != e; ++i) 407 if (isFloatingPoint(TypeVec[i]) && TypeVec[i] < SmallestFP) 408 SmallestFP = TypeVec[i]; 409 410 int OtherIntSize = 0; 411 int OtherFPSize = 0; 412 for (SmallVector<MVT::SimpleValueType, 2>::iterator TVI = 413 Other.TypeVec.begin(); 414 TVI != Other.TypeVec.end(); 415 /* NULL */) { 416 if (isInteger(*TVI)) { 417 ++OtherIntSize; 418 if (*TVI == SmallestInt) { 419 TVI = Other.TypeVec.erase(TVI); 420 --OtherIntSize; 421 MadeChange = true; 422 continue; 423 } 424 } 425 else if (isFloatingPoint(*TVI)) { 426 ++OtherFPSize; 427 if (*TVI == SmallestFP) { 428 TVI = Other.TypeVec.erase(TVI); 429 --OtherFPSize; 430 MadeChange = true; 431 continue; 432 } 433 } 434 ++TVI; 435 } 436 437 // If this is the only type in the large set, the constraint can never be 438 // satisfied. 439 if ((Other.hasIntegerTypes() && OtherIntSize == 0) 440 || (Other.hasFloatingPointTypes() && OtherFPSize == 0)) 441 TP.error("Type inference contradiction found, '" + 442 Other.getName() + "' has nothing larger than '" + getName() +"'!"); 443 444 // Okay, find the largest type in the Other set and remove it from the 445 // current set. 446 MVT::SimpleValueType LargestInt = MVT::Other; 447 for (unsigned i = 0, e = Other.TypeVec.size(); i != e; ++i) 448 if (isInteger(Other.TypeVec[i])) { 449 LargestInt = Other.TypeVec[i]; 450 break; 451 } 452 for (unsigned i = 1, e = Other.TypeVec.size(); i != e; ++i) 453 if (isInteger(Other.TypeVec[i]) && Other.TypeVec[i] > LargestInt) 454 LargestInt = Other.TypeVec[i]; 455 456 MVT::SimpleValueType LargestFP = MVT::Other; 457 for (unsigned i = 0, e = Other.TypeVec.size(); i != e; ++i) 458 if (isFloatingPoint(Other.TypeVec[i])) { 459 LargestFP = Other.TypeVec[i]; 460 break; 461 } 462 for (unsigned i = 1, e = Other.TypeVec.size(); i != e; ++i) 463 if (isFloatingPoint(Other.TypeVec[i]) && Other.TypeVec[i] > LargestFP) 464 LargestFP = Other.TypeVec[i]; 465 466 int IntSize = 0; 467 int FPSize = 0; 468 for (SmallVector<MVT::SimpleValueType, 2>::iterator TVI = 469 TypeVec.begin(); 470 TVI != TypeVec.end(); 471 /* NULL */) { 472 if (isInteger(*TVI)) { 473 ++IntSize; 474 if (*TVI == LargestInt) { 475 TVI = TypeVec.erase(TVI); 476 --IntSize; 477 MadeChange = true; 478 continue; 479 } 480 } 481 else if (isFloatingPoint(*TVI)) { 482 ++FPSize; 483 if (*TVI == LargestFP) { 484 TVI = TypeVec.erase(TVI); 485 --FPSize; 486 MadeChange = true; 487 continue; 488 } 489 } 490 ++TVI; 491 } 492 493 // If this is the only type in the small set, the constraint can never be 494 // satisfied. 495 if ((hasIntegerTypes() && IntSize == 0) 496 || (hasFloatingPointTypes() && FPSize == 0)) 497 TP.error("Type inference contradiction found, '" + 498 getName() + "' has nothing smaller than '" + Other.getName()+"'!"); 499 500 return MadeChange; 501 } 502 503 /// EnforceVectorEltTypeIs - 'this' is now constrainted to be a vector type 504 /// whose element is specified by VTOperand. 505 bool EEVT::TypeSet::EnforceVectorEltTypeIs(EEVT::TypeSet &VTOperand, 506 TreePattern &TP) { 507 // "This" must be a vector and "VTOperand" must be a scalar. 508 bool MadeChange = false; 509 MadeChange |= EnforceVector(TP); 510 MadeChange |= VTOperand.EnforceScalar(TP); 511 512 // If we know the vector type, it forces the scalar to agree. 513 if (isConcrete()) { 514 EVT IVT = getConcrete(); 515 IVT = IVT.getVectorElementType(); 516 return MadeChange | 517 VTOperand.MergeInTypeInfo(IVT.getSimpleVT().SimpleTy, TP); 518 } 519 520 // If the scalar type is known, filter out vector types whose element types 521 // disagree. 522 if (!VTOperand.isConcrete()) 523 return MadeChange; 524 525 MVT::SimpleValueType VT = VTOperand.getConcrete(); 526 527 TypeSet InputSet(*this); 528 529 // Filter out all the types which don't have the right element type. 530 for (unsigned i = 0; i != TypeVec.size(); ++i) { 531 assert(isVector(TypeVec[i]) && "EnforceVector didn't work"); 532 if (EVT(TypeVec[i]).getVectorElementType().getSimpleVT().SimpleTy != VT) { 533 TypeVec.erase(TypeVec.begin()+i--); 534 MadeChange = true; 535 } 536 } 537 538 if (TypeVec.empty()) // FIXME: Really want an SMLoc here! 539 TP.error("Type inference contradiction found, forcing '" + 540 InputSet.getName() + "' to have a vector element"); 541 return MadeChange; 542 } 543 544 /// EnforceVectorSubVectorTypeIs - 'this' is now constrainted to be a 545 /// vector type specified by VTOperand. 546 bool EEVT::TypeSet::EnforceVectorSubVectorTypeIs(EEVT::TypeSet &VTOperand, 547 TreePattern &TP) { 548 // "This" must be a vector and "VTOperand" must be a vector. 549 bool MadeChange = false; 550 MadeChange |= EnforceVector(TP); 551 MadeChange |= VTOperand.EnforceVector(TP); 552 553 // "This" must be larger than "VTOperand." 554 MadeChange |= VTOperand.EnforceSmallerThan(*this, TP); 555 556 // If we know the vector type, it forces the scalar types to agree. 557 if (isConcrete()) { 558 EVT IVT = getConcrete(); 559 IVT = IVT.getVectorElementType(); 560 561 EEVT::TypeSet EltTypeSet(IVT.getSimpleVT().SimpleTy, TP); 562 MadeChange |= VTOperand.EnforceVectorEltTypeIs(EltTypeSet, TP); 563 } else if (VTOperand.isConcrete()) { 564 EVT IVT = VTOperand.getConcrete(); 565 IVT = IVT.getVectorElementType(); 566 567 EEVT::TypeSet EltTypeSet(IVT.getSimpleVT().SimpleTy, TP); 568 MadeChange |= EnforceVectorEltTypeIs(EltTypeSet, TP); 569 } 570 571 return MadeChange; 572 } 573 574 //===----------------------------------------------------------------------===// 575 // Helpers for working with extended types. 576 577 bool RecordPtrCmp::operator()(const Record *LHS, const Record *RHS) const { 578 return LHS->getID() < RHS->getID(); 579 } 580 581 /// Dependent variable map for CodeGenDAGPattern variant generation 582 typedef std::map<std::string, int> DepVarMap; 583 584 /// Const iterator shorthand for DepVarMap 585 typedef DepVarMap::const_iterator DepVarMap_citer; 586 587 static void FindDepVarsOf(TreePatternNode *N, DepVarMap &DepMap) { 588 if (N->isLeaf()) { 589 if (dynamic_cast<DefInit*>(N->getLeafValue()) != NULL) 590 DepMap[N->getName()]++; 591 } else { 592 for (size_t i = 0, e = N->getNumChildren(); i != e; ++i) 593 FindDepVarsOf(N->getChild(i), DepMap); 594 } 595 } 596 597 /// Find dependent variables within child patterns 598 static void FindDepVars(TreePatternNode *N, MultipleUseVarSet &DepVars) { 599 DepVarMap depcounts; 600 FindDepVarsOf(N, depcounts); 601 for (DepVarMap_citer i = depcounts.begin(); i != depcounts.end(); ++i) { 602 if (i->second > 1) // std::pair<std::string, int> 603 DepVars.insert(i->first); 604 } 605 } 606 607 #ifndef NDEBUG 608 /// Dump the dependent variable set: 609 static void DumpDepVars(MultipleUseVarSet &DepVars) { 610 if (DepVars.empty()) { 611 DEBUG(errs() << "<empty set>"); 612 } else { 613 DEBUG(errs() << "[ "); 614 for (MultipleUseVarSet::const_iterator i = DepVars.begin(), 615 e = DepVars.end(); i != e; ++i) { 616 DEBUG(errs() << (*i) << " "); 617 } 618 DEBUG(errs() << "]"); 619 } 620 } 621 #endif 622 623 624 //===----------------------------------------------------------------------===// 625 // TreePredicateFn Implementation 626 //===----------------------------------------------------------------------===// 627 628 /// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag. 629 TreePredicateFn::TreePredicateFn(TreePattern *N) : PatFragRec(N) { 630 assert((getPredCode().empty() || getImmCode().empty()) && 631 ".td file corrupt: can't have a node predicate *and* an imm predicate"); 632 } 633 634 std::string TreePredicateFn::getPredCode() const { 635 return PatFragRec->getRecord()->getValueAsString("PredicateCode"); 636 } 637 638 std::string TreePredicateFn::getImmCode() const { 639 return PatFragRec->getRecord()->getValueAsString("ImmediateCode"); 640 } 641 642 643 /// isAlwaysTrue - Return true if this is a noop predicate. 644 bool TreePredicateFn::isAlwaysTrue() const { 645 return getPredCode().empty() && getImmCode().empty(); 646 } 647 648 /// Return the name to use in the generated code to reference this, this is 649 /// "Predicate_foo" if from a pattern fragment "foo". 650 std::string TreePredicateFn::getFnName() const { 651 return "Predicate_" + PatFragRec->getRecord()->getName(); 652 } 653 654 /// getCodeToRunOnSDNode - Return the code for the function body that 655 /// evaluates this predicate. The argument is expected to be in "Node", 656 /// not N. This handles casting and conversion to a concrete node type as 657 /// appropriate. 658 std::string TreePredicateFn::getCodeToRunOnSDNode() const { 659 // Handle immediate predicates first. 660 std::string ImmCode = getImmCode(); 661 if (!ImmCode.empty()) { 662 std::string Result = 663 " int64_t Imm = cast<ConstantSDNode>(Node)->getSExtValue();\n"; 664 return Result + ImmCode; 665 } 666 667 // Handle arbitrary node predicates. 668 assert(!getPredCode().empty() && "Don't have any predicate code!"); 669 std::string ClassName; 670 if (PatFragRec->getOnlyTree()->isLeaf()) 671 ClassName = "SDNode"; 672 else { 673 Record *Op = PatFragRec->getOnlyTree()->getOperator(); 674 ClassName = PatFragRec->getDAGPatterns().getSDNodeInfo(Op).getSDClassName(); 675 } 676 std::string Result; 677 if (ClassName == "SDNode") 678 Result = " SDNode *N = Node;\n"; 679 else 680 Result = " " + ClassName + "*N = cast<" + ClassName + ">(Node);\n"; 681 682 return Result + getPredCode(); 683 } 684 685 //===----------------------------------------------------------------------===// 686 // PatternToMatch implementation 687 // 688 689 690 /// getPatternSize - Return the 'size' of this pattern. We want to match large 691 /// patterns before small ones. This is used to determine the size of a 692 /// pattern. 693 static unsigned getPatternSize(const TreePatternNode *P, 694 const CodeGenDAGPatterns &CGP) { 695 unsigned Size = 3; // The node itself. 696 // If the root node is a ConstantSDNode, increases its size. 697 // e.g. (set R32:$dst, 0). 698 if (P->isLeaf() && dynamic_cast<IntInit*>(P->getLeafValue())) 699 Size += 2; 700 701 // FIXME: This is a hack to statically increase the priority of patterns 702 // which maps a sub-dag to a complex pattern. e.g. favors LEA over ADD. 703 // Later we can allow complexity / cost for each pattern to be (optionally) 704 // specified. To get best possible pattern match we'll need to dynamically 705 // calculate the complexity of all patterns a dag can potentially map to. 706 const ComplexPattern *AM = P->getComplexPatternInfo(CGP); 707 if (AM) 708 Size += AM->getNumOperands() * 3; 709 710 // If this node has some predicate function that must match, it adds to the 711 // complexity of this node. 712 if (!P->getPredicateFns().empty()) 713 ++Size; 714 715 // Count children in the count if they are also nodes. 716 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) { 717 TreePatternNode *Child = P->getChild(i); 718 if (!Child->isLeaf() && Child->getNumTypes() && 719 Child->getType(0) != MVT::Other) 720 Size += getPatternSize(Child, CGP); 721 else if (Child->isLeaf()) { 722 if (dynamic_cast<IntInit*>(Child->getLeafValue())) 723 Size += 5; // Matches a ConstantSDNode (+3) and a specific value (+2). 724 else if (Child->getComplexPatternInfo(CGP)) 725 Size += getPatternSize(Child, CGP); 726 else if (!Child->getPredicateFns().empty()) 727 ++Size; 728 } 729 } 730 731 return Size; 732 } 733 734 /// Compute the complexity metric for the input pattern. This roughly 735 /// corresponds to the number of nodes that are covered. 736 unsigned PatternToMatch:: 737 getPatternComplexity(const CodeGenDAGPatterns &CGP) const { 738 return getPatternSize(getSrcPattern(), CGP) + getAddedComplexity(); 739 } 740 741 742 /// getPredicateCheck - Return a single string containing all of this 743 /// pattern's predicates concatenated with "&&" operators. 744 /// 745 std::string PatternToMatch::getPredicateCheck() const { 746 std::string PredicateCheck; 747 for (unsigned i = 0, e = Predicates->getSize(); i != e; ++i) { 748 if (DefInit *Pred = dynamic_cast<DefInit*>(Predicates->getElement(i))) { 749 Record *Def = Pred->getDef(); 750 if (!Def->isSubClassOf("Predicate")) { 751 #ifndef NDEBUG 752 Def->dump(); 753 #endif 754 llvm_unreachable("Unknown predicate type!"); 755 } 756 if (!PredicateCheck.empty()) 757 PredicateCheck += " && "; 758 PredicateCheck += "(" + Def->getValueAsString("CondString") + ")"; 759 } 760 } 761 762 return PredicateCheck; 763 } 764 765 //===----------------------------------------------------------------------===// 766 // SDTypeConstraint implementation 767 // 768 769 SDTypeConstraint::SDTypeConstraint(Record *R) { 770 OperandNo = R->getValueAsInt("OperandNum"); 771 772 if (R->isSubClassOf("SDTCisVT")) { 773 ConstraintType = SDTCisVT; 774 x.SDTCisVT_Info.VT = getValueType(R->getValueAsDef("VT")); 775 if (x.SDTCisVT_Info.VT == MVT::isVoid) 776 throw TGError(R->getLoc(), "Cannot use 'Void' as type to SDTCisVT"); 777 778 } else if (R->isSubClassOf("SDTCisPtrTy")) { 779 ConstraintType = SDTCisPtrTy; 780 } else if (R->isSubClassOf("SDTCisInt")) { 781 ConstraintType = SDTCisInt; 782 } else if (R->isSubClassOf("SDTCisFP")) { 783 ConstraintType = SDTCisFP; 784 } else if (R->isSubClassOf("SDTCisVec")) { 785 ConstraintType = SDTCisVec; 786 } else if (R->isSubClassOf("SDTCisSameAs")) { 787 ConstraintType = SDTCisSameAs; 788 x.SDTCisSameAs_Info.OtherOperandNum = R->getValueAsInt("OtherOperandNum"); 789 } else if (R->isSubClassOf("SDTCisVTSmallerThanOp")) { 790 ConstraintType = SDTCisVTSmallerThanOp; 791 x.SDTCisVTSmallerThanOp_Info.OtherOperandNum = 792 R->getValueAsInt("OtherOperandNum"); 793 } else if (R->isSubClassOf("SDTCisOpSmallerThanOp")) { 794 ConstraintType = SDTCisOpSmallerThanOp; 795 x.SDTCisOpSmallerThanOp_Info.BigOperandNum = 796 R->getValueAsInt("BigOperandNum"); 797 } else if (R->isSubClassOf("SDTCisEltOfVec")) { 798 ConstraintType = SDTCisEltOfVec; 799 x.SDTCisEltOfVec_Info.OtherOperandNum = R->getValueAsInt("OtherOpNum"); 800 } else if (R->isSubClassOf("SDTCisSubVecOfVec")) { 801 ConstraintType = SDTCisSubVecOfVec; 802 x.SDTCisSubVecOfVec_Info.OtherOperandNum = 803 R->getValueAsInt("OtherOpNum"); 804 } else { 805 errs() << "Unrecognized SDTypeConstraint '" << R->getName() << "'!\n"; 806 exit(1); 807 } 808 } 809 810 /// getOperandNum - Return the node corresponding to operand #OpNo in tree 811 /// N, and the result number in ResNo. 812 static TreePatternNode *getOperandNum(unsigned OpNo, TreePatternNode *N, 813 const SDNodeInfo &NodeInfo, 814 unsigned &ResNo) { 815 unsigned NumResults = NodeInfo.getNumResults(); 816 if (OpNo < NumResults) { 817 ResNo = OpNo; 818 return N; 819 } 820 821 OpNo -= NumResults; 822 823 if (OpNo >= N->getNumChildren()) { 824 errs() << "Invalid operand number in type constraint " 825 << (OpNo+NumResults) << " "; 826 N->dump(); 827 errs() << '\n'; 828 exit(1); 829 } 830 831 return N->getChild(OpNo); 832 } 833 834 /// ApplyTypeConstraint - Given a node in a pattern, apply this type 835 /// constraint to the nodes operands. This returns true if it makes a 836 /// change, false otherwise. If a type contradiction is found, throw an 837 /// exception. 838 bool SDTypeConstraint::ApplyTypeConstraint(TreePatternNode *N, 839 const SDNodeInfo &NodeInfo, 840 TreePattern &TP) const { 841 unsigned ResNo = 0; // The result number being referenced. 842 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo); 843 844 switch (ConstraintType) { 845 case SDTCisVT: 846 // Operand must be a particular type. 847 return NodeToApply->UpdateNodeType(ResNo, x.SDTCisVT_Info.VT, TP); 848 case SDTCisPtrTy: 849 // Operand must be same as target pointer type. 850 return NodeToApply->UpdateNodeType(ResNo, MVT::iPTR, TP); 851 case SDTCisInt: 852 // Require it to be one of the legal integer VTs. 853 return NodeToApply->getExtType(ResNo).EnforceInteger(TP); 854 case SDTCisFP: 855 // Require it to be one of the legal fp VTs. 856 return NodeToApply->getExtType(ResNo).EnforceFloatingPoint(TP); 857 case SDTCisVec: 858 // Require it to be one of the legal vector VTs. 859 return NodeToApply->getExtType(ResNo).EnforceVector(TP); 860 case SDTCisSameAs: { 861 unsigned OResNo = 0; 862 TreePatternNode *OtherNode = 863 getOperandNum(x.SDTCisSameAs_Info.OtherOperandNum, N, NodeInfo, OResNo); 864 return NodeToApply->UpdateNodeType(OResNo, OtherNode->getExtType(ResNo),TP)| 865 OtherNode->UpdateNodeType(ResNo,NodeToApply->getExtType(OResNo),TP); 866 } 867 case SDTCisVTSmallerThanOp: { 868 // The NodeToApply must be a leaf node that is a VT. OtherOperandNum must 869 // have an integer type that is smaller than the VT. 870 if (!NodeToApply->isLeaf() || 871 !dynamic_cast<DefInit*>(NodeToApply->getLeafValue()) || 872 !static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef() 873 ->isSubClassOf("ValueType")) 874 TP.error(N->getOperator()->getName() + " expects a VT operand!"); 875 MVT::SimpleValueType VT = 876 getValueType(static_cast<DefInit*>(NodeToApply->getLeafValue())->getDef()); 877 878 EEVT::TypeSet TypeListTmp(VT, TP); 879 880 unsigned OResNo = 0; 881 TreePatternNode *OtherNode = 882 getOperandNum(x.SDTCisVTSmallerThanOp_Info.OtherOperandNum, N, NodeInfo, 883 OResNo); 884 885 return TypeListTmp.EnforceSmallerThan(OtherNode->getExtType(OResNo), TP); 886 } 887 case SDTCisOpSmallerThanOp: { 888 unsigned BResNo = 0; 889 TreePatternNode *BigOperand = 890 getOperandNum(x.SDTCisOpSmallerThanOp_Info.BigOperandNum, N, NodeInfo, 891 BResNo); 892 return NodeToApply->getExtType(ResNo). 893 EnforceSmallerThan(BigOperand->getExtType(BResNo), TP); 894 } 895 case SDTCisEltOfVec: { 896 unsigned VResNo = 0; 897 TreePatternNode *VecOperand = 898 getOperandNum(x.SDTCisEltOfVec_Info.OtherOperandNum, N, NodeInfo, 899 VResNo); 900 901 // Filter vector types out of VecOperand that don't have the right element 902 // type. 903 return VecOperand->getExtType(VResNo). 904 EnforceVectorEltTypeIs(NodeToApply->getExtType(ResNo), TP); 905 } 906 case SDTCisSubVecOfVec: { 907 unsigned VResNo = 0; 908 TreePatternNode *BigVecOperand = 909 getOperandNum(x.SDTCisSubVecOfVec_Info.OtherOperandNum, N, NodeInfo, 910 VResNo); 911 912 // Filter vector types out of BigVecOperand that don't have the 913 // right subvector type. 914 return BigVecOperand->getExtType(VResNo). 915 EnforceVectorSubVectorTypeIs(NodeToApply->getExtType(ResNo), TP); 916 } 917 } 918 llvm_unreachable("Invalid ConstraintType!"); 919 } 920 921 //===----------------------------------------------------------------------===// 922 // SDNodeInfo implementation 923 // 924 SDNodeInfo::SDNodeInfo(Record *R) : Def(R) { 925 EnumName = R->getValueAsString("Opcode"); 926 SDClassName = R->getValueAsString("SDClass"); 927 Record *TypeProfile = R->getValueAsDef("TypeProfile"); 928 NumResults = TypeProfile->getValueAsInt("NumResults"); 929 NumOperands = TypeProfile->getValueAsInt("NumOperands"); 930 931 // Parse the properties. 932 Properties = 0; 933 std::vector<Record*> PropList = R->getValueAsListOfDefs("Properties"); 934 for (unsigned i = 0, e = PropList.size(); i != e; ++i) { 935 if (PropList[i]->getName() == "SDNPCommutative") { 936 Properties |= 1 << SDNPCommutative; 937 } else if (PropList[i]->getName() == "SDNPAssociative") { 938 Properties |= 1 << SDNPAssociative; 939 } else if (PropList[i]->getName() == "SDNPHasChain") { 940 Properties |= 1 << SDNPHasChain; 941 } else if (PropList[i]->getName() == "SDNPOutGlue") { 942 Properties |= 1 << SDNPOutGlue; 943 } else if (PropList[i]->getName() == "SDNPInGlue") { 944 Properties |= 1 << SDNPInGlue; 945 } else if (PropList[i]->getName() == "SDNPOptInGlue") { 946 Properties |= 1 << SDNPOptInGlue; 947 } else if (PropList[i]->getName() == "SDNPMayStore") { 948 Properties |= 1 << SDNPMayStore; 949 } else if (PropList[i]->getName() == "SDNPMayLoad") { 950 Properties |= 1 << SDNPMayLoad; 951 } else if (PropList[i]->getName() == "SDNPSideEffect") { 952 Properties |= 1 << SDNPSideEffect; 953 } else if (PropList[i]->getName() == "SDNPMemOperand") { 954 Properties |= 1 << SDNPMemOperand; 955 } else if (PropList[i]->getName() == "SDNPVariadic") { 956 Properties |= 1 << SDNPVariadic; 957 } else { 958 errs() << "Unknown SD Node property '" << PropList[i]->getName() 959 << "' on node '" << R->getName() << "'!\n"; 960 exit(1); 961 } 962 } 963 964 965 // Parse the type constraints. 966 std::vector<Record*> ConstraintList = 967 TypeProfile->getValueAsListOfDefs("Constraints"); 968 TypeConstraints.assign(ConstraintList.begin(), ConstraintList.end()); 969 } 970 971 /// getKnownType - If the type constraints on this node imply a fixed type 972 /// (e.g. all stores return void, etc), then return it as an 973 /// MVT::SimpleValueType. Otherwise, return EEVT::Other. 974 MVT::SimpleValueType SDNodeInfo::getKnownType(unsigned ResNo) const { 975 unsigned NumResults = getNumResults(); 976 assert(NumResults <= 1 && 977 "We only work with nodes with zero or one result so far!"); 978 assert(ResNo == 0 && "Only handles single result nodes so far"); 979 980 for (unsigned i = 0, e = TypeConstraints.size(); i != e; ++i) { 981 // Make sure that this applies to the correct node result. 982 if (TypeConstraints[i].OperandNo >= NumResults) // FIXME: need value # 983 continue; 984 985 switch (TypeConstraints[i].ConstraintType) { 986 default: break; 987 case SDTypeConstraint::SDTCisVT: 988 return TypeConstraints[i].x.SDTCisVT_Info.VT; 989 case SDTypeConstraint::SDTCisPtrTy: 990 return MVT::iPTR; 991 } 992 } 993 return MVT::Other; 994 } 995 996 //===----------------------------------------------------------------------===// 997 // TreePatternNode implementation 998 // 999 1000 TreePatternNode::~TreePatternNode() { 1001 #if 0 // FIXME: implement refcounted tree nodes! 1002 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) 1003 delete getChild(i); 1004 #endif 1005 } 1006 1007 static unsigned GetNumNodeResults(Record *Operator, CodeGenDAGPatterns &CDP) { 1008 if (Operator->getName() == "set" || 1009 Operator->getName() == "implicit") 1010 return 0; // All return nothing. 1011 1012 if (Operator->isSubClassOf("Intrinsic")) 1013 return CDP.getIntrinsic(Operator).IS.RetVTs.size(); 1014 1015 if (Operator->isSubClassOf("SDNode")) 1016 return CDP.getSDNodeInfo(Operator).getNumResults(); 1017 1018 if (Operator->isSubClassOf("PatFrag")) { 1019 // If we've already parsed this pattern fragment, get it. Otherwise, handle 1020 // the forward reference case where one pattern fragment references another 1021 // before it is processed. 1022 if (TreePattern *PFRec = CDP.getPatternFragmentIfRead(Operator)) 1023 return PFRec->getOnlyTree()->getNumTypes(); 1024 1025 // Get the result tree. 1026 DagInit *Tree = Operator->getValueAsDag("Fragment"); 1027 Record *Op = 0; 1028 if (Tree && dynamic_cast<DefInit*>(Tree->getOperator())) 1029 Op = dynamic_cast<DefInit*>(Tree->getOperator())->getDef(); 1030 assert(Op && "Invalid Fragment"); 1031 return GetNumNodeResults(Op, CDP); 1032 } 1033 1034 if (Operator->isSubClassOf("Instruction")) { 1035 CodeGenInstruction &InstInfo = CDP.getTargetInfo().getInstruction(Operator); 1036 1037 // FIXME: Should allow access to all the results here. 1038 unsigned NumDefsToAdd = InstInfo.Operands.NumDefs ? 1 : 0; 1039 1040 // Add on one implicit def if it has a resolvable type. 1041 if (InstInfo.HasOneImplicitDefWithKnownVT(CDP.getTargetInfo()) !=MVT::Other) 1042 ++NumDefsToAdd; 1043 return NumDefsToAdd; 1044 } 1045 1046 if (Operator->isSubClassOf("SDNodeXForm")) 1047 return 1; // FIXME: Generalize SDNodeXForm 1048 1049 Operator->dump(); 1050 errs() << "Unhandled node in GetNumNodeResults\n"; 1051 exit(1); 1052 } 1053 1054 void TreePatternNode::print(raw_ostream &OS) const { 1055 if (isLeaf()) 1056 OS << *getLeafValue(); 1057 else 1058 OS << '(' << getOperator()->getName(); 1059 1060 for (unsigned i = 0, e = Types.size(); i != e; ++i) 1061 OS << ':' << getExtType(i).getName(); 1062 1063 if (!isLeaf()) { 1064 if (getNumChildren() != 0) { 1065 OS << " "; 1066 getChild(0)->print(OS); 1067 for (unsigned i = 1, e = getNumChildren(); i != e; ++i) { 1068 OS << ", "; 1069 getChild(i)->print(OS); 1070 } 1071 } 1072 OS << ")"; 1073 } 1074 1075 for (unsigned i = 0, e = PredicateFns.size(); i != e; ++i) 1076 OS << "<<P:" << PredicateFns[i].getFnName() << ">>"; 1077 if (TransformFn) 1078 OS << "<<X:" << TransformFn->getName() << ">>"; 1079 if (!getName().empty()) 1080 OS << ":$" << getName(); 1081 1082 } 1083 void TreePatternNode::dump() const { 1084 print(errs()); 1085 } 1086 1087 /// isIsomorphicTo - Return true if this node is recursively 1088 /// isomorphic to the specified node. For this comparison, the node's 1089 /// entire state is considered. The assigned name is ignored, since 1090 /// nodes with differing names are considered isomorphic. However, if 1091 /// the assigned name is present in the dependent variable set, then 1092 /// the assigned name is considered significant and the node is 1093 /// isomorphic if the names match. 1094 bool TreePatternNode::isIsomorphicTo(const TreePatternNode *N, 1095 const MultipleUseVarSet &DepVars) const { 1096 if (N == this) return true; 1097 if (N->isLeaf() != isLeaf() || getExtTypes() != N->getExtTypes() || 1098 getPredicateFns() != N->getPredicateFns() || 1099 getTransformFn() != N->getTransformFn()) 1100 return false; 1101 1102 if (isLeaf()) { 1103 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) { 1104 if (DefInit *NDI = dynamic_cast<DefInit*>(N->getLeafValue())) { 1105 return ((DI->getDef() == NDI->getDef()) 1106 && (DepVars.find(getName()) == DepVars.end() 1107 || getName() == N->getName())); 1108 } 1109 } 1110 return getLeafValue() == N->getLeafValue(); 1111 } 1112 1113 if (N->getOperator() != getOperator() || 1114 N->getNumChildren() != getNumChildren()) return false; 1115 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) 1116 if (!getChild(i)->isIsomorphicTo(N->getChild(i), DepVars)) 1117 return false; 1118 return true; 1119 } 1120 1121 /// clone - Make a copy of this tree and all of its children. 1122 /// 1123 TreePatternNode *TreePatternNode::clone() const { 1124 TreePatternNode *New; 1125 if (isLeaf()) { 1126 New = new TreePatternNode(getLeafValue(), getNumTypes()); 1127 } else { 1128 std::vector<TreePatternNode*> CChildren; 1129 CChildren.reserve(Children.size()); 1130 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) 1131 CChildren.push_back(getChild(i)->clone()); 1132 New = new TreePatternNode(getOperator(), CChildren, getNumTypes()); 1133 } 1134 New->setName(getName()); 1135 New->Types = Types; 1136 New->setPredicateFns(getPredicateFns()); 1137 New->setTransformFn(getTransformFn()); 1138 return New; 1139 } 1140 1141 /// RemoveAllTypes - Recursively strip all the types of this tree. 1142 void TreePatternNode::RemoveAllTypes() { 1143 for (unsigned i = 0, e = Types.size(); i != e; ++i) 1144 Types[i] = EEVT::TypeSet(); // Reset to unknown type. 1145 if (isLeaf()) return; 1146 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) 1147 getChild(i)->RemoveAllTypes(); 1148 } 1149 1150 1151 /// SubstituteFormalArguments - Replace the formal arguments in this tree 1152 /// with actual values specified by ArgMap. 1153 void TreePatternNode:: 1154 SubstituteFormalArguments(std::map<std::string, TreePatternNode*> &ArgMap) { 1155 if (isLeaf()) return; 1156 1157 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) { 1158 TreePatternNode *Child = getChild(i); 1159 if (Child->isLeaf()) { 1160 Init *Val = Child->getLeafValue(); 1161 if (dynamic_cast<DefInit*>(Val) && 1162 static_cast<DefInit*>(Val)->getDef()->getName() == "node") { 1163 // We found a use of a formal argument, replace it with its value. 1164 TreePatternNode *NewChild = ArgMap[Child->getName()]; 1165 assert(NewChild && "Couldn't find formal argument!"); 1166 assert((Child->getPredicateFns().empty() || 1167 NewChild->getPredicateFns() == Child->getPredicateFns()) && 1168 "Non-empty child predicate clobbered!"); 1169 setChild(i, NewChild); 1170 } 1171 } else { 1172 getChild(i)->SubstituteFormalArguments(ArgMap); 1173 } 1174 } 1175 } 1176 1177 1178 /// InlinePatternFragments - If this pattern refers to any pattern 1179 /// fragments, inline them into place, giving us a pattern without any 1180 /// PatFrag references. 1181 TreePatternNode *TreePatternNode::InlinePatternFragments(TreePattern &TP) { 1182 if (isLeaf()) return this; // nothing to do. 1183 Record *Op = getOperator(); 1184 1185 if (!Op->isSubClassOf("PatFrag")) { 1186 // Just recursively inline children nodes. 1187 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) { 1188 TreePatternNode *Child = getChild(i); 1189 TreePatternNode *NewChild = Child->InlinePatternFragments(TP); 1190 1191 assert((Child->getPredicateFns().empty() || 1192 NewChild->getPredicateFns() == Child->getPredicateFns()) && 1193 "Non-empty child predicate clobbered!"); 1194 1195 setChild(i, NewChild); 1196 } 1197 return this; 1198 } 1199 1200 // Otherwise, we found a reference to a fragment. First, look up its 1201 // TreePattern record. 1202 TreePattern *Frag = TP.getDAGPatterns().getPatternFragment(Op); 1203 1204 // Verify that we are passing the right number of operands. 1205 if (Frag->getNumArgs() != Children.size()) 1206 TP.error("'" + Op->getName() + "' fragment requires " + 1207 utostr(Frag->getNumArgs()) + " operands!"); 1208 1209 TreePatternNode *FragTree = Frag->getOnlyTree()->clone(); 1210 1211 TreePredicateFn PredFn(Frag); 1212 if (!PredFn.isAlwaysTrue()) 1213 FragTree->addPredicateFn(PredFn); 1214 1215 // Resolve formal arguments to their actual value. 1216 if (Frag->getNumArgs()) { 1217 // Compute the map of formal to actual arguments. 1218 std::map<std::string, TreePatternNode*> ArgMap; 1219 for (unsigned i = 0, e = Frag->getNumArgs(); i != e; ++i) 1220 ArgMap[Frag->getArgName(i)] = getChild(i)->InlinePatternFragments(TP); 1221 1222 FragTree->SubstituteFormalArguments(ArgMap); 1223 } 1224 1225 FragTree->setName(getName()); 1226 for (unsigned i = 0, e = Types.size(); i != e; ++i) 1227 FragTree->UpdateNodeType(i, getExtType(i), TP); 1228 1229 // Transfer in the old predicates. 1230 for (unsigned i = 0, e = getPredicateFns().size(); i != e; ++i) 1231 FragTree->addPredicateFn(getPredicateFns()[i]); 1232 1233 // Get a new copy of this fragment to stitch into here. 1234 //delete this; // FIXME: implement refcounting! 1235 1236 // The fragment we inlined could have recursive inlining that is needed. See 1237 // if there are any pattern fragments in it and inline them as needed. 1238 return FragTree->InlinePatternFragments(TP); 1239 } 1240 1241 /// getImplicitType - Check to see if the specified record has an implicit 1242 /// type which should be applied to it. This will infer the type of register 1243 /// references from the register file information, for example. 1244 /// 1245 static EEVT::TypeSet getImplicitType(Record *R, unsigned ResNo, 1246 bool NotRegisters, TreePattern &TP) { 1247 // Check to see if this is a register operand. 1248 if (R->isSubClassOf("RegisterOperand")) { 1249 assert(ResNo == 0 && "Regoperand ref only has one result!"); 1250 if (NotRegisters) 1251 return EEVT::TypeSet(); // Unknown. 1252 Record *RegClass = R->getValueAsDef("RegClass"); 1253 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo(); 1254 return EEVT::TypeSet(T.getRegisterClass(RegClass).getValueTypes()); 1255 } 1256 1257 // Check to see if this is a register or a register class. 1258 if (R->isSubClassOf("RegisterClass")) { 1259 assert(ResNo == 0 && "Regclass ref only has one result!"); 1260 if (NotRegisters) 1261 return EEVT::TypeSet(); // Unknown. 1262 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo(); 1263 return EEVT::TypeSet(T.getRegisterClass(R).getValueTypes()); 1264 } 1265 1266 if (R->isSubClassOf("PatFrag")) { 1267 assert(ResNo == 0 && "FIXME: PatFrag with multiple results?"); 1268 // Pattern fragment types will be resolved when they are inlined. 1269 return EEVT::TypeSet(); // Unknown. 1270 } 1271 1272 if (R->isSubClassOf("Register")) { 1273 assert(ResNo == 0 && "Registers only produce one result!"); 1274 if (NotRegisters) 1275 return EEVT::TypeSet(); // Unknown. 1276 const CodeGenTarget &T = TP.getDAGPatterns().getTargetInfo(); 1277 return EEVT::TypeSet(T.getRegisterVTs(R)); 1278 } 1279 1280 if (R->isSubClassOf("SubRegIndex")) { 1281 assert(ResNo == 0 && "SubRegisterIndices only produce one result!"); 1282 return EEVT::TypeSet(); 1283 } 1284 1285 if (R->isSubClassOf("ValueType") || R->isSubClassOf("CondCode")) { 1286 assert(ResNo == 0 && "This node only has one result!"); 1287 // Using a VTSDNode or CondCodeSDNode. 1288 return EEVT::TypeSet(MVT::Other, TP); 1289 } 1290 1291 if (R->isSubClassOf("ComplexPattern")) { 1292 assert(ResNo == 0 && "FIXME: ComplexPattern with multiple results?"); 1293 if (NotRegisters) 1294 return EEVT::TypeSet(); // Unknown. 1295 return EEVT::TypeSet(TP.getDAGPatterns().getComplexPattern(R).getValueType(), 1296 TP); 1297 } 1298 if (R->isSubClassOf("PointerLikeRegClass")) { 1299 assert(ResNo == 0 && "Regclass can only have one result!"); 1300 return EEVT::TypeSet(MVT::iPTR, TP); 1301 } 1302 1303 if (R->getName() == "node" || R->getName() == "srcvalue" || 1304 R->getName() == "zero_reg") { 1305 // Placeholder. 1306 return EEVT::TypeSet(); // Unknown. 1307 } 1308 1309 TP.error("Unknown node flavor used in pattern: " + R->getName()); 1310 return EEVT::TypeSet(MVT::Other, TP); 1311 } 1312 1313 1314 /// getIntrinsicInfo - If this node corresponds to an intrinsic, return the 1315 /// CodeGenIntrinsic information for it, otherwise return a null pointer. 1316 const CodeGenIntrinsic *TreePatternNode:: 1317 getIntrinsicInfo(const CodeGenDAGPatterns &CDP) const { 1318 if (getOperator() != CDP.get_intrinsic_void_sdnode() && 1319 getOperator() != CDP.get_intrinsic_w_chain_sdnode() && 1320 getOperator() != CDP.get_intrinsic_wo_chain_sdnode()) 1321 return 0; 1322 1323 unsigned IID = 1324 dynamic_cast<IntInit*>(getChild(0)->getLeafValue())->getValue(); 1325 return &CDP.getIntrinsicInfo(IID); 1326 } 1327 1328 /// getComplexPatternInfo - If this node corresponds to a ComplexPattern, 1329 /// return the ComplexPattern information, otherwise return null. 1330 const ComplexPattern * 1331 TreePatternNode::getComplexPatternInfo(const CodeGenDAGPatterns &CGP) const { 1332 if (!isLeaf()) return 0; 1333 1334 DefInit *DI = dynamic_cast<DefInit*>(getLeafValue()); 1335 if (DI && DI->getDef()->isSubClassOf("ComplexPattern")) 1336 return &CGP.getComplexPattern(DI->getDef()); 1337 return 0; 1338 } 1339 1340 /// NodeHasProperty - Return true if this node has the specified property. 1341 bool TreePatternNode::NodeHasProperty(SDNP Property, 1342 const CodeGenDAGPatterns &CGP) const { 1343 if (isLeaf()) { 1344 if (const ComplexPattern *CP = getComplexPatternInfo(CGP)) 1345 return CP->hasProperty(Property); 1346 return false; 1347 } 1348 1349 Record *Operator = getOperator(); 1350 if (!Operator->isSubClassOf("SDNode")) return false; 1351 1352 return CGP.getSDNodeInfo(Operator).hasProperty(Property); 1353 } 1354 1355 1356 1357 1358 /// TreeHasProperty - Return true if any node in this tree has the specified 1359 /// property. 1360 bool TreePatternNode::TreeHasProperty(SDNP Property, 1361 const CodeGenDAGPatterns &CGP) const { 1362 if (NodeHasProperty(Property, CGP)) 1363 return true; 1364 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) 1365 if (getChild(i)->TreeHasProperty(Property, CGP)) 1366 return true; 1367 return false; 1368 } 1369 1370 /// isCommutativeIntrinsic - Return true if the node corresponds to a 1371 /// commutative intrinsic. 1372 bool 1373 TreePatternNode::isCommutativeIntrinsic(const CodeGenDAGPatterns &CDP) const { 1374 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP)) 1375 return Int->isCommutative; 1376 return false; 1377 } 1378 1379 1380 /// ApplyTypeConstraints - Apply all of the type constraints relevant to 1381 /// this node and its children in the tree. This returns true if it makes a 1382 /// change, false otherwise. If a type contradiction is found, throw an 1383 /// exception. 1384 bool TreePatternNode::ApplyTypeConstraints(TreePattern &TP, bool NotRegisters) { 1385 CodeGenDAGPatterns &CDP = TP.getDAGPatterns(); 1386 if (isLeaf()) { 1387 if (DefInit *DI = dynamic_cast<DefInit*>(getLeafValue())) { 1388 // If it's a regclass or something else known, include the type. 1389 bool MadeChange = false; 1390 for (unsigned i = 0, e = Types.size(); i != e; ++i) 1391 MadeChange |= UpdateNodeType(i, getImplicitType(DI->getDef(), i, 1392 NotRegisters, TP), TP); 1393 return MadeChange; 1394 } 1395 1396 if (IntInit *II = dynamic_cast<IntInit*>(getLeafValue())) { 1397 assert(Types.size() == 1 && "Invalid IntInit"); 1398 1399 // Int inits are always integers. :) 1400 bool MadeChange = Types[0].EnforceInteger(TP); 1401 1402 if (!Types[0].isConcrete()) 1403 return MadeChange; 1404 1405 MVT::SimpleValueType VT = getType(0); 1406 if (VT == MVT::iPTR || VT == MVT::iPTRAny) 1407 return MadeChange; 1408 1409 unsigned Size = EVT(VT).getSizeInBits(); 1410 // Make sure that the value is representable for this type. 1411 if (Size >= 32) return MadeChange; 1412 1413 // Check that the value doesn't use more bits than we have. It must either 1414 // be a sign- or zero-extended equivalent of the original. 1415 int64_t SignBitAndAbove = II->getValue() >> (Size - 1); 1416 if (SignBitAndAbove == -1 || SignBitAndAbove == 0 || SignBitAndAbove == 1) 1417 return MadeChange; 1418 1419 TP.error("Integer value '" + itostr(II->getValue()) + 1420 "' is out of range for type '" + getEnumName(getType(0)) + "'!"); 1421 return MadeChange; 1422 } 1423 return false; 1424 } 1425 1426 // special handling for set, which isn't really an SDNode. 1427 if (getOperator()->getName() == "set") { 1428 assert(getNumTypes() == 0 && "Set doesn't produce a value"); 1429 assert(getNumChildren() >= 2 && "Missing RHS of a set?"); 1430 unsigned NC = getNumChildren(); 1431 1432 TreePatternNode *SetVal = getChild(NC-1); 1433 bool MadeChange = SetVal->ApplyTypeConstraints(TP, NotRegisters); 1434 1435 for (unsigned i = 0; i < NC-1; ++i) { 1436 TreePatternNode *Child = getChild(i); 1437 MadeChange |= Child->ApplyTypeConstraints(TP, NotRegisters); 1438 1439 // Types of operands must match. 1440 MadeChange |= Child->UpdateNodeType(0, SetVal->getExtType(i), TP); 1441 MadeChange |= SetVal->UpdateNodeType(i, Child->getExtType(0), TP); 1442 } 1443 return MadeChange; 1444 } 1445 1446 if (getOperator()->getName() == "implicit") { 1447 assert(getNumTypes() == 0 && "Node doesn't produce a value"); 1448 1449 bool MadeChange = false; 1450 for (unsigned i = 0; i < getNumChildren(); ++i) 1451 MadeChange = getChild(i)->ApplyTypeConstraints(TP, NotRegisters); 1452 return MadeChange; 1453 } 1454 1455 if (getOperator()->getName() == "COPY_TO_REGCLASS") { 1456 bool MadeChange = false; 1457 MadeChange |= getChild(0)->ApplyTypeConstraints(TP, NotRegisters); 1458 MadeChange |= getChild(1)->ApplyTypeConstraints(TP, NotRegisters); 1459 1460 assert(getChild(0)->getNumTypes() == 1 && 1461 getChild(1)->getNumTypes() == 1 && "Unhandled case"); 1462 1463 // child #1 of COPY_TO_REGCLASS should be a register class. We don't care 1464 // what type it gets, so if it didn't get a concrete type just give it the 1465 // first viable type from the reg class. 1466 if (!getChild(1)->hasTypeSet(0) && 1467 !getChild(1)->getExtType(0).isCompletelyUnknown()) { 1468 MVT::SimpleValueType RCVT = getChild(1)->getExtType(0).getTypeList()[0]; 1469 MadeChange |= getChild(1)->UpdateNodeType(0, RCVT, TP); 1470 } 1471 return MadeChange; 1472 } 1473 1474 if (const CodeGenIntrinsic *Int = getIntrinsicInfo(CDP)) { 1475 bool MadeChange = false; 1476 1477 // Apply the result type to the node. 1478 unsigned NumRetVTs = Int->IS.RetVTs.size(); 1479 unsigned NumParamVTs = Int->IS.ParamVTs.size(); 1480 1481 for (unsigned i = 0, e = NumRetVTs; i != e; ++i) 1482 MadeChange |= UpdateNodeType(i, Int->IS.RetVTs[i], TP); 1483 1484 if (getNumChildren() != NumParamVTs + 1) 1485 TP.error("Intrinsic '" + Int->Name + "' expects " + 1486 utostr(NumParamVTs) + " operands, not " + 1487 utostr(getNumChildren() - 1) + " operands!"); 1488 1489 // Apply type info to the intrinsic ID. 1490 MadeChange |= getChild(0)->UpdateNodeType(0, MVT::iPTR, TP); 1491 1492 for (unsigned i = 0, e = getNumChildren()-1; i != e; ++i) { 1493 MadeChange |= getChild(i+1)->ApplyTypeConstraints(TP, NotRegisters); 1494 1495 MVT::SimpleValueType OpVT = Int->IS.ParamVTs[i]; 1496 assert(getChild(i+1)->getNumTypes() == 1 && "Unhandled case"); 1497 MadeChange |= getChild(i+1)->UpdateNodeType(0, OpVT, TP); 1498 } 1499 return MadeChange; 1500 } 1501 1502 if (getOperator()->isSubClassOf("SDNode")) { 1503 const SDNodeInfo &NI = CDP.getSDNodeInfo(getOperator()); 1504 1505 // Check that the number of operands is sane. Negative operands -> varargs. 1506 if (NI.getNumOperands() >= 0 && 1507 getNumChildren() != (unsigned)NI.getNumOperands()) 1508 TP.error(getOperator()->getName() + " node requires exactly " + 1509 itostr(NI.getNumOperands()) + " operands!"); 1510 1511 bool MadeChange = NI.ApplyTypeConstraints(this, TP); 1512 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) 1513 MadeChange |= getChild(i)->ApplyTypeConstraints(TP, NotRegisters); 1514 return MadeChange; 1515 } 1516 1517 if (getOperator()->isSubClassOf("Instruction")) { 1518 const DAGInstruction &Inst = CDP.getInstruction(getOperator()); 1519 CodeGenInstruction &InstInfo = 1520 CDP.getTargetInfo().getInstruction(getOperator()); 1521 1522 bool MadeChange = false; 1523 1524 // Apply the result types to the node, these come from the things in the 1525 // (outs) list of the instruction. 1526 // FIXME: Cap at one result so far. 1527 unsigned NumResultsToAdd = InstInfo.Operands.NumDefs ? 1 : 0; 1528 for (unsigned ResNo = 0; ResNo != NumResultsToAdd; ++ResNo) { 1529 Record *ResultNode = Inst.getResult(ResNo); 1530 1531 if (ResultNode->isSubClassOf("PointerLikeRegClass")) { 1532 MadeChange |= UpdateNodeType(ResNo, MVT::iPTR, TP); 1533 } else if (ResultNode->isSubClassOf("RegisterOperand")) { 1534 Record *RegClass = ResultNode->getValueAsDef("RegClass"); 1535 const CodeGenRegisterClass &RC = 1536 CDP.getTargetInfo().getRegisterClass(RegClass); 1537 MadeChange |= UpdateNodeType(ResNo, RC.getValueTypes(), TP); 1538 } else if (ResultNode->getName() == "unknown") { 1539 // Nothing to do. 1540 } else { 1541 assert(ResultNode->isSubClassOf("RegisterClass") && 1542 "Operands should be register classes!"); 1543 const CodeGenRegisterClass &RC = 1544 CDP.getTargetInfo().getRegisterClass(ResultNode); 1545 MadeChange |= UpdateNodeType(ResNo, RC.getValueTypes(), TP); 1546 } 1547 } 1548 1549 // If the instruction has implicit defs, we apply the first one as a result. 1550 // FIXME: This sucks, it should apply all implicit defs. 1551 if (!InstInfo.ImplicitDefs.empty()) { 1552 unsigned ResNo = NumResultsToAdd; 1553 1554 // FIXME: Generalize to multiple possible types and multiple possible 1555 // ImplicitDefs. 1556 MVT::SimpleValueType VT = 1557 InstInfo.HasOneImplicitDefWithKnownVT(CDP.getTargetInfo()); 1558 1559 if (VT != MVT::Other) 1560 MadeChange |= UpdateNodeType(ResNo, VT, TP); 1561 } 1562 1563 // If this is an INSERT_SUBREG, constrain the source and destination VTs to 1564 // be the same. 1565 if (getOperator()->getName() == "INSERT_SUBREG") { 1566 assert(getChild(0)->getNumTypes() == 1 && "FIXME: Unhandled"); 1567 MadeChange |= UpdateNodeType(0, getChild(0)->getExtType(0), TP); 1568 MadeChange |= getChild(0)->UpdateNodeType(0, getExtType(0), TP); 1569 } 1570 1571 unsigned ChildNo = 0; 1572 for (unsigned i = 0, e = Inst.getNumOperands(); i != e; ++i) { 1573 Record *OperandNode = Inst.getOperand(i); 1574 1575 // If the instruction expects a predicate or optional def operand, we 1576 // codegen this by setting the operand to it's default value if it has a 1577 // non-empty DefaultOps field. 1578 if ((OperandNode->isSubClassOf("PredicateOperand") || 1579 OperandNode->isSubClassOf("OptionalDefOperand")) && 1580 !CDP.getDefaultOperand(OperandNode).DefaultOps.empty()) 1581 continue; 1582 1583 // Verify that we didn't run out of provided operands. 1584 if (ChildNo >= getNumChildren()) 1585 TP.error("Instruction '" + getOperator()->getName() + 1586 "' expects more operands than were provided."); 1587 1588 MVT::SimpleValueType VT; 1589 TreePatternNode *Child = getChild(ChildNo++); 1590 unsigned ChildResNo = 0; // Instructions always use res #0 of their op. 1591 1592 if (OperandNode->isSubClassOf("RegisterClass")) { 1593 const CodeGenRegisterClass &RC = 1594 CDP.getTargetInfo().getRegisterClass(OperandNode); 1595 MadeChange |= Child->UpdateNodeType(ChildResNo, RC.getValueTypes(), TP); 1596 } else if (OperandNode->isSubClassOf("RegisterOperand")) { 1597 Record *RegClass = OperandNode->getValueAsDef("RegClass"); 1598 const CodeGenRegisterClass &RC = 1599 CDP.getTargetInfo().getRegisterClass(RegClass); 1600 MadeChange |= Child->UpdateNodeType(ChildResNo, RC.getValueTypes(), TP); 1601 } else if (OperandNode->isSubClassOf("Operand")) { 1602 VT = getValueType(OperandNode->getValueAsDef("Type")); 1603 MadeChange |= Child->UpdateNodeType(ChildResNo, VT, TP); 1604 } else if (OperandNode->isSubClassOf("PointerLikeRegClass")) { 1605 MadeChange |= Child->UpdateNodeType(ChildResNo, MVT::iPTR, TP); 1606 } else if (OperandNode->getName() == "unknown") { 1607 // Nothing to do. 1608 } else 1609 llvm_unreachable("Unknown operand type!"); 1610 1611 MadeChange |= Child->ApplyTypeConstraints(TP, NotRegisters); 1612 } 1613 1614 if (ChildNo != getNumChildren()) 1615 TP.error("Instruction '" + getOperator()->getName() + 1616 "' was provided too many operands!"); 1617 1618 return MadeChange; 1619 } 1620 1621 assert(getOperator()->isSubClassOf("SDNodeXForm") && "Unknown node type!"); 1622 1623 // Node transforms always take one operand. 1624 if (getNumChildren() != 1) 1625 TP.error("Node transform '" + getOperator()->getName() + 1626 "' requires one operand!"); 1627 1628 bool MadeChange = getChild(0)->ApplyTypeConstraints(TP, NotRegisters); 1629 1630 1631 // If either the output or input of the xform does not have exact 1632 // type info. We assume they must be the same. Otherwise, it is perfectly 1633 // legal to transform from one type to a completely different type. 1634 #if 0 1635 if (!hasTypeSet() || !getChild(0)->hasTypeSet()) { 1636 bool MadeChange = UpdateNodeType(getChild(0)->getExtType(), TP); 1637 MadeChange |= getChild(0)->UpdateNodeType(getExtType(), TP); 1638 return MadeChange; 1639 } 1640 #endif 1641 return MadeChange; 1642 } 1643 1644 /// OnlyOnRHSOfCommutative - Return true if this value is only allowed on the 1645 /// RHS of a commutative operation, not the on LHS. 1646 static bool OnlyOnRHSOfCommutative(TreePatternNode *N) { 1647 if (!N->isLeaf() && N->getOperator()->getName() == "imm") 1648 return true; 1649 if (N->isLeaf() && dynamic_cast<IntInit*>(N->getLeafValue())) 1650 return true; 1651 return false; 1652 } 1653 1654 1655 /// canPatternMatch - If it is impossible for this pattern to match on this 1656 /// target, fill in Reason and return false. Otherwise, return true. This is 1657 /// used as a sanity check for .td files (to prevent people from writing stuff 1658 /// that can never possibly work), and to prevent the pattern permuter from 1659 /// generating stuff that is useless. 1660 bool TreePatternNode::canPatternMatch(std::string &Reason, 1661 const CodeGenDAGPatterns &CDP) { 1662 if (isLeaf()) return true; 1663 1664 for (unsigned i = 0, e = getNumChildren(); i != e; ++i) 1665 if (!getChild(i)->canPatternMatch(Reason, CDP)) 1666 return false; 1667 1668 // If this is an intrinsic, handle cases that would make it not match. For 1669 // example, if an operand is required to be an immediate. 1670 if (getOperator()->isSubClassOf("Intrinsic")) { 1671 // TODO: 1672 return true; 1673 } 1674 1675 // If this node is a commutative operator, check that the LHS isn't an 1676 // immediate. 1677 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(getOperator()); 1678 bool isCommIntrinsic = isCommutativeIntrinsic(CDP); 1679 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) { 1680 // Scan all of the operands of the node and make sure that only the last one 1681 // is a constant node, unless the RHS also is. 1682 if (!OnlyOnRHSOfCommutative(getChild(getNumChildren()-1))) { 1683 bool Skip = isCommIntrinsic ? 1 : 0; // First operand is intrinsic id. 1684 for (unsigned i = Skip, e = getNumChildren()-1; i != e; ++i) 1685 if (OnlyOnRHSOfCommutative(getChild(i))) { 1686 Reason="Immediate value must be on the RHS of commutative operators!"; 1687 return false; 1688 } 1689 } 1690 } 1691 1692 return true; 1693 } 1694 1695 //===----------------------------------------------------------------------===// 1696 // TreePattern implementation 1697 // 1698 1699 TreePattern::TreePattern(Record *TheRec, ListInit *RawPat, bool isInput, 1700 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp){ 1701 isInputPattern = isInput; 1702 for (unsigned i = 0, e = RawPat->getSize(); i != e; ++i) 1703 Trees.push_back(ParseTreePattern(RawPat->getElement(i), "")); 1704 } 1705 1706 TreePattern::TreePattern(Record *TheRec, DagInit *Pat, bool isInput, 1707 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp){ 1708 isInputPattern = isInput; 1709 Trees.push_back(ParseTreePattern(Pat, "")); 1710 } 1711 1712 TreePattern::TreePattern(Record *TheRec, TreePatternNode *Pat, bool isInput, 1713 CodeGenDAGPatterns &cdp) : TheRecord(TheRec), CDP(cdp){ 1714 isInputPattern = isInput; 1715 Trees.push_back(Pat); 1716 } 1717 1718 void TreePattern::error(const std::string &Msg) const { 1719 dump(); 1720 throw TGError(TheRecord->getLoc(), "In " + TheRecord->getName() + ": " + Msg); 1721 } 1722 1723 void TreePattern::ComputeNamedNodes() { 1724 for (unsigned i = 0, e = Trees.size(); i != e; ++i) 1725 ComputeNamedNodes(Trees[i]); 1726 } 1727 1728 void TreePattern::ComputeNamedNodes(TreePatternNode *N) { 1729 if (!N->getName().empty()) 1730 NamedNodes[N->getName()].push_back(N); 1731 1732 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) 1733 ComputeNamedNodes(N->getChild(i)); 1734 } 1735 1736 1737 TreePatternNode *TreePattern::ParseTreePattern(Init *TheInit, StringRef OpName){ 1738 if (DefInit *DI = dynamic_cast<DefInit*>(TheInit)) { 1739 Record *R = DI->getDef(); 1740 1741 // Direct reference to a leaf DagNode or PatFrag? Turn it into a 1742 // TreePatternNode of its own. For example: 1743 /// (foo GPR, imm) -> (foo GPR, (imm)) 1744 if (R->isSubClassOf("SDNode") || R->isSubClassOf("PatFrag")) 1745 return ParseTreePattern( 1746 DagInit::get(DI, "", 1747 std::vector<std::pair<Init*, std::string> >()), 1748 OpName); 1749 1750 // Input argument? 1751 TreePatternNode *Res = new TreePatternNode(DI, 1); 1752 if (R->getName() == "node" && !OpName.empty()) { 1753 if (OpName.empty()) 1754 error("'node' argument requires a name to match with operand list"); 1755 Args.push_back(OpName); 1756 } 1757 1758 Res->setName(OpName); 1759 return Res; 1760 } 1761 1762 if (IntInit *II = dynamic_cast<IntInit*>(TheInit)) { 1763 if (!OpName.empty()) 1764 error("Constant int argument should not have a name!"); 1765 return new TreePatternNode(II, 1); 1766 } 1767 1768 if (BitsInit *BI = dynamic_cast<BitsInit*>(TheInit)) { 1769 // Turn this into an IntInit. 1770 Init *II = BI->convertInitializerTo(IntRecTy::get()); 1771 if (II == 0 || !dynamic_cast<IntInit*>(II)) 1772 error("Bits value must be constants!"); 1773 return ParseTreePattern(II, OpName); 1774 } 1775 1776 DagInit *Dag = dynamic_cast<DagInit*>(TheInit); 1777 if (!Dag) { 1778 TheInit->dump(); 1779 error("Pattern has unexpected init kind!"); 1780 } 1781 DefInit *OpDef = dynamic_cast<DefInit*>(Dag->getOperator()); 1782 if (!OpDef) error("Pattern has unexpected operator type!"); 1783 Record *Operator = OpDef->getDef(); 1784 1785 if (Operator->isSubClassOf("ValueType")) { 1786 // If the operator is a ValueType, then this must be "type cast" of a leaf 1787 // node. 1788 if (Dag->getNumArgs() != 1) 1789 error("Type cast only takes one operand!"); 1790 1791 TreePatternNode *New = ParseTreePattern(Dag->getArg(0), Dag->getArgName(0)); 1792 1793 // Apply the type cast. 1794 assert(New->getNumTypes() == 1 && "FIXME: Unhandled"); 1795 New->UpdateNodeType(0, getValueType(Operator), *this); 1796 1797 if (!OpName.empty()) 1798 error("ValueType cast should not have a name!"); 1799 return New; 1800 } 1801 1802 // Verify that this is something that makes sense for an operator. 1803 if (!Operator->isSubClassOf("PatFrag") && 1804 !Operator->isSubClassOf("SDNode") && 1805 !Operator->isSubClassOf("Instruction") && 1806 !Operator->isSubClassOf("SDNodeXForm") && 1807 !Operator->isSubClassOf("Intrinsic") && 1808 Operator->getName() != "set" && 1809 Operator->getName() != "implicit") 1810 error("Unrecognized node '" + Operator->getName() + "'!"); 1811 1812 // Check to see if this is something that is illegal in an input pattern. 1813 if (isInputPattern) { 1814 if (Operator->isSubClassOf("Instruction") || 1815 Operator->isSubClassOf("SDNodeXForm")) 1816 error("Cannot use '" + Operator->getName() + "' in an input pattern!"); 1817 } else { 1818 if (Operator->isSubClassOf("Intrinsic")) 1819 error("Cannot use '" + Operator->getName() + "' in an output pattern!"); 1820 1821 if (Operator->isSubClassOf("SDNode") && 1822 Operator->getName() != "imm" && 1823 Operator->getName() != "fpimm" && 1824 Operator->getName() != "tglobaltlsaddr" && 1825 Operator->getName() != "tconstpool" && 1826 Operator->getName() != "tjumptable" && 1827 Operator->getName() != "tframeindex" && 1828 Operator->getName() != "texternalsym" && 1829 Operator->getName() != "tblockaddress" && 1830 Operator->getName() != "tglobaladdr" && 1831 Operator->getName() != "bb" && 1832 Operator->getName() != "vt") 1833 error("Cannot use '" + Operator->getName() + "' in an output pattern!"); 1834 } 1835 1836 std::vector<TreePatternNode*> Children; 1837 1838 // Parse all the operands. 1839 for (unsigned i = 0, e = Dag->getNumArgs(); i != e; ++i) 1840 Children.push_back(ParseTreePattern(Dag->getArg(i), Dag->getArgName(i))); 1841 1842 // If the operator is an intrinsic, then this is just syntactic sugar for for 1843 // (intrinsic_* <number>, ..children..). Pick the right intrinsic node, and 1844 // convert the intrinsic name to a number. 1845 if (Operator->isSubClassOf("Intrinsic")) { 1846 const CodeGenIntrinsic &Int = getDAGPatterns().getIntrinsic(Operator); 1847 unsigned IID = getDAGPatterns().getIntrinsicID(Operator)+1; 1848 1849 // If this intrinsic returns void, it must have side-effects and thus a 1850 // chain. 1851 if (Int.IS.RetVTs.empty()) 1852 Operator = getDAGPatterns().get_intrinsic_void_sdnode(); 1853 else if (Int.ModRef != CodeGenIntrinsic::NoMem) 1854 // Has side-effects, requires chain. 1855 Operator = getDAGPatterns().get_intrinsic_w_chain_sdnode(); 1856 else // Otherwise, no chain. 1857 Operator = getDAGPatterns().get_intrinsic_wo_chain_sdnode(); 1858 1859 TreePatternNode *IIDNode = new TreePatternNode(IntInit::get(IID), 1); 1860 Children.insert(Children.begin(), IIDNode); 1861 } 1862 1863 unsigned NumResults = GetNumNodeResults(Operator, CDP); 1864 TreePatternNode *Result = new TreePatternNode(Operator, Children, NumResults); 1865 Result->setName(OpName); 1866 1867 if (!Dag->getName().empty()) { 1868 assert(Result->getName().empty()); 1869 Result->setName(Dag->getName()); 1870 } 1871 return Result; 1872 } 1873 1874 /// SimplifyTree - See if we can simplify this tree to eliminate something that 1875 /// will never match in favor of something obvious that will. This is here 1876 /// strictly as a convenience to target authors because it allows them to write 1877 /// more type generic things and have useless type casts fold away. 1878 /// 1879 /// This returns true if any change is made. 1880 static bool SimplifyTree(TreePatternNode *&N) { 1881 if (N->isLeaf()) 1882 return false; 1883 1884 // If we have a bitconvert with a resolved type and if the source and 1885 // destination types are the same, then the bitconvert is useless, remove it. 1886 if (N->getOperator()->getName() == "bitconvert" && 1887 N->getExtType(0).isConcrete() && 1888 N->getExtType(0) == N->getChild(0)->getExtType(0) && 1889 N->getName().empty()) { 1890 N = N->getChild(0); 1891 SimplifyTree(N); 1892 return true; 1893 } 1894 1895 // Walk all children. 1896 bool MadeChange = false; 1897 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) { 1898 TreePatternNode *Child = N->getChild(i); 1899 MadeChange |= SimplifyTree(Child); 1900 N->setChild(i, Child); 1901 } 1902 return MadeChange; 1903 } 1904 1905 1906 1907 /// InferAllTypes - Infer/propagate as many types throughout the expression 1908 /// patterns as possible. Return true if all types are inferred, false 1909 /// otherwise. Throw an exception if a type contradiction is found. 1910 bool TreePattern:: 1911 InferAllTypes(const StringMap<SmallVector<TreePatternNode*,1> > *InNamedTypes) { 1912 if (NamedNodes.empty()) 1913 ComputeNamedNodes(); 1914 1915 bool MadeChange = true; 1916 while (MadeChange) { 1917 MadeChange = false; 1918 for (unsigned i = 0, e = Trees.size(); i != e; ++i) { 1919 MadeChange |= Trees[i]->ApplyTypeConstraints(*this, false); 1920 MadeChange |= SimplifyTree(Trees[i]); 1921 } 1922 1923 // If there are constraints on our named nodes, apply them. 1924 for (StringMap<SmallVector<TreePatternNode*,1> >::iterator 1925 I = NamedNodes.begin(), E = NamedNodes.end(); I != E; ++I) { 1926 SmallVectorImpl<TreePatternNode*> &Nodes = I->second; 1927 1928 // If we have input named node types, propagate their types to the named 1929 // values here. 1930 if (InNamedTypes) { 1931 // FIXME: Should be error? 1932 assert(InNamedTypes->count(I->getKey()) && 1933 "Named node in output pattern but not input pattern?"); 1934 1935 const SmallVectorImpl<TreePatternNode*> &InNodes = 1936 InNamedTypes->find(I->getKey())->second; 1937 1938 // The input types should be fully resolved by now. 1939 for (unsigned i = 0, e = Nodes.size(); i != e; ++i) { 1940 // If this node is a register class, and it is the root of the pattern 1941 // then we're mapping something onto an input register. We allow 1942 // changing the type of the input register in this case. This allows 1943 // us to match things like: 1944 // def : Pat<(v1i64 (bitconvert(v2i32 DPR:$src))), (v1i64 DPR:$src)>; 1945 if (Nodes[i] == Trees[0] && Nodes[i]->isLeaf()) { 1946 DefInit *DI = dynamic_cast<DefInit*>(Nodes[i]->getLeafValue()); 1947 if (DI && (DI->getDef()->isSubClassOf("RegisterClass") || 1948 DI->getDef()->isSubClassOf("RegisterOperand"))) 1949 continue; 1950 } 1951 1952 assert(Nodes[i]->getNumTypes() == 1 && 1953 InNodes[0]->getNumTypes() == 1 && 1954 "FIXME: cannot name multiple result nodes yet"); 1955 MadeChange |= Nodes[i]->UpdateNodeType(0, InNodes[0]->getExtType(0), 1956 *this); 1957 } 1958 } 1959 1960 // If there are multiple nodes with the same name, they must all have the 1961 // same type. 1962 if (I->second.size() > 1) { 1963 for (unsigned i = 0, e = Nodes.size()-1; i != e; ++i) { 1964 TreePatternNode *N1 = Nodes[i], *N2 = Nodes[i+1]; 1965 assert(N1->getNumTypes() == 1 && N2->getNumTypes() == 1 && 1966 "FIXME: cannot name multiple result nodes yet"); 1967 1968 MadeChange |= N1->UpdateNodeType(0, N2->getExtType(0), *this); 1969 MadeChange |= N2->UpdateNodeType(0, N1->getExtType(0), *this); 1970 } 1971 } 1972 } 1973 } 1974 1975 bool HasUnresolvedTypes = false; 1976 for (unsigned i = 0, e = Trees.size(); i != e; ++i) 1977 HasUnresolvedTypes |= Trees[i]->ContainsUnresolvedType(); 1978 return !HasUnresolvedTypes; 1979 } 1980 1981 void TreePattern::print(raw_ostream &OS) const { 1982 OS << getRecord()->getName(); 1983 if (!Args.empty()) { 1984 OS << "(" << Args[0]; 1985 for (unsigned i = 1, e = Args.size(); i != e; ++i) 1986 OS << ", " << Args[i]; 1987 OS << ")"; 1988 } 1989 OS << ": "; 1990 1991 if (Trees.size() > 1) 1992 OS << "[\n"; 1993 for (unsigned i = 0, e = Trees.size(); i != e; ++i) { 1994 OS << "\t"; 1995 Trees[i]->print(OS); 1996 OS << "\n"; 1997 } 1998 1999 if (Trees.size() > 1) 2000 OS << "]\n"; 2001 } 2002 2003 void TreePattern::dump() const { print(errs()); } 2004 2005 //===----------------------------------------------------------------------===// 2006 // CodeGenDAGPatterns implementation 2007 // 2008 2009 CodeGenDAGPatterns::CodeGenDAGPatterns(RecordKeeper &R) : 2010 Records(R), Target(R) { 2011 2012 Intrinsics = LoadIntrinsics(Records, false); 2013 TgtIntrinsics = LoadIntrinsics(Records, true); 2014 ParseNodeInfo(); 2015 ParseNodeTransforms(); 2016 ParseComplexPatterns(); 2017 ParsePatternFragments(); 2018 ParseDefaultOperands(); 2019 ParseInstructions(); 2020 ParsePatterns(); 2021 2022 // Generate variants. For example, commutative patterns can match 2023 // multiple ways. Add them to PatternsToMatch as well. 2024 GenerateVariants(); 2025 2026 // Infer instruction flags. For example, we can detect loads, 2027 // stores, and side effects in many cases by examining an 2028 // instruction's pattern. 2029 InferInstructionFlags(); 2030 2031 // Verify that instruction flags match the patterns. 2032 VerifyInstructionFlags(); 2033 } 2034 2035 CodeGenDAGPatterns::~CodeGenDAGPatterns() { 2036 for (pf_iterator I = PatternFragments.begin(), 2037 E = PatternFragments.end(); I != E; ++I) 2038 delete I->second; 2039 } 2040 2041 2042 Record *CodeGenDAGPatterns::getSDNodeNamed(const std::string &Name) const { 2043 Record *N = Records.getDef(Name); 2044 if (!N || !N->isSubClassOf("SDNode")) { 2045 errs() << "Error getting SDNode '" << Name << "'!\n"; 2046 exit(1); 2047 } 2048 return N; 2049 } 2050 2051 // Parse all of the SDNode definitions for the target, populating SDNodes. 2052 void CodeGenDAGPatterns::ParseNodeInfo() { 2053 std::vector<Record*> Nodes = Records.getAllDerivedDefinitions("SDNode"); 2054 while (!Nodes.empty()) { 2055 SDNodes.insert(std::make_pair(Nodes.back(), Nodes.back())); 2056 Nodes.pop_back(); 2057 } 2058 2059 // Get the builtin intrinsic nodes. 2060 intrinsic_void_sdnode = getSDNodeNamed("intrinsic_void"); 2061 intrinsic_w_chain_sdnode = getSDNodeNamed("intrinsic_w_chain"); 2062 intrinsic_wo_chain_sdnode = getSDNodeNamed("intrinsic_wo_chain"); 2063 } 2064 2065 /// ParseNodeTransforms - Parse all SDNodeXForm instances into the SDNodeXForms 2066 /// map, and emit them to the file as functions. 2067 void CodeGenDAGPatterns::ParseNodeTransforms() { 2068 std::vector<Record*> Xforms = Records.getAllDerivedDefinitions("SDNodeXForm"); 2069 while (!Xforms.empty()) { 2070 Record *XFormNode = Xforms.back(); 2071 Record *SDNode = XFormNode->getValueAsDef("Opcode"); 2072 std::string Code = XFormNode->getValueAsString("XFormFunction"); 2073 SDNodeXForms.insert(std::make_pair(XFormNode, NodeXForm(SDNode, Code))); 2074 2075 Xforms.pop_back(); 2076 } 2077 } 2078 2079 void CodeGenDAGPatterns::ParseComplexPatterns() { 2080 std::vector<Record*> AMs = Records.getAllDerivedDefinitions("ComplexPattern"); 2081 while (!AMs.empty()) { 2082 ComplexPatterns.insert(std::make_pair(AMs.back(), AMs.back())); 2083 AMs.pop_back(); 2084 } 2085 } 2086 2087 2088 /// ParsePatternFragments - Parse all of the PatFrag definitions in the .td 2089 /// file, building up the PatternFragments map. After we've collected them all, 2090 /// inline fragments together as necessary, so that there are no references left 2091 /// inside a pattern fragment to a pattern fragment. 2092 /// 2093 void CodeGenDAGPatterns::ParsePatternFragments() { 2094 std::vector<Record*> Fragments = Records.getAllDerivedDefinitions("PatFrag"); 2095 2096 // First step, parse all of the fragments. 2097 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) { 2098 DagInit *Tree = Fragments[i]->getValueAsDag("Fragment"); 2099 TreePattern *P = new TreePattern(Fragments[i], Tree, true, *this); 2100 PatternFragments[Fragments[i]] = P; 2101 2102 // Validate the argument list, converting it to set, to discard duplicates. 2103 std::vector<std::string> &Args = P->getArgList(); 2104 std::set<std::string> OperandsSet(Args.begin(), Args.end()); 2105 2106 if (OperandsSet.count("")) 2107 P->error("Cannot have unnamed 'node' values in pattern fragment!"); 2108 2109 // Parse the operands list. 2110 DagInit *OpsList = Fragments[i]->getValueAsDag("Operands"); 2111 DefInit *OpsOp = dynamic_cast<DefInit*>(OpsList->getOperator()); 2112 // Special cases: ops == outs == ins. Different names are used to 2113 // improve readability. 2114 if (!OpsOp || 2115 (OpsOp->getDef()->getName() != "ops" && 2116 OpsOp->getDef()->getName() != "outs" && 2117 OpsOp->getDef()->getName() != "ins")) 2118 P->error("Operands list should start with '(ops ... '!"); 2119 2120 // Copy over the arguments. 2121 Args.clear(); 2122 for (unsigned j = 0, e = OpsList->getNumArgs(); j != e; ++j) { 2123 if (!dynamic_cast<DefInit*>(OpsList->getArg(j)) || 2124 static_cast<DefInit*>(OpsList->getArg(j))-> 2125 getDef()->getName() != "node") 2126 P->error("Operands list should all be 'node' values."); 2127 if (OpsList->getArgName(j).empty()) 2128 P->error("Operands list should have names for each operand!"); 2129 if (!OperandsSet.count(OpsList->getArgName(j))) 2130 P->error("'" + OpsList->getArgName(j) + 2131 "' does not occur in pattern or was multiply specified!"); 2132 OperandsSet.erase(OpsList->getArgName(j)); 2133 Args.push_back(OpsList->getArgName(j)); 2134 } 2135 2136 if (!OperandsSet.empty()) 2137 P->error("Operands list does not contain an entry for operand '" + 2138 *OperandsSet.begin() + "'!"); 2139 2140 // If there is a code init for this fragment, keep track of the fact that 2141 // this fragment uses it. 2142 TreePredicateFn PredFn(P); 2143 if (!PredFn.isAlwaysTrue()) 2144 P->getOnlyTree()->addPredicateFn(PredFn); 2145 2146 // If there is a node transformation corresponding to this, keep track of 2147 // it. 2148 Record *Transform = Fragments[i]->getValueAsDef("OperandTransform"); 2149 if (!getSDNodeTransform(Transform).second.empty()) // not noop xform? 2150 P->getOnlyTree()->setTransformFn(Transform); 2151 } 2152 2153 // Now that we've parsed all of the tree fragments, do a closure on them so 2154 // that there are not references to PatFrags left inside of them. 2155 for (unsigned i = 0, e = Fragments.size(); i != e; ++i) { 2156 TreePattern *ThePat = PatternFragments[Fragments[i]]; 2157 ThePat->InlinePatternFragments(); 2158 2159 // Infer as many types as possible. Don't worry about it if we don't infer 2160 // all of them, some may depend on the inputs of the pattern. 2161 try { 2162 ThePat->InferAllTypes(); 2163 } catch (...) { 2164 // If this pattern fragment is not supported by this target (no types can 2165 // satisfy its constraints), just ignore it. If the bogus pattern is 2166 // actually used by instructions, the type consistency error will be 2167 // reported there. 2168 } 2169 2170 // If debugging, print out the pattern fragment result. 2171 DEBUG(ThePat->dump()); 2172 } 2173 } 2174 2175 void CodeGenDAGPatterns::ParseDefaultOperands() { 2176 std::vector<Record*> DefaultOps[2]; 2177 DefaultOps[0] = Records.getAllDerivedDefinitions("PredicateOperand"); 2178 DefaultOps[1] = Records.getAllDerivedDefinitions("OptionalDefOperand"); 2179 2180 // Find some SDNode. 2181 assert(!SDNodes.empty() && "No SDNodes parsed?"); 2182 Init *SomeSDNode = DefInit::get(SDNodes.begin()->first); 2183 2184 for (unsigned iter = 0; iter != 2; ++iter) { 2185 for (unsigned i = 0, e = DefaultOps[iter].size(); i != e; ++i) { 2186 DagInit *DefaultInfo = DefaultOps[iter][i]->getValueAsDag("DefaultOps"); 2187 2188 // Clone the DefaultInfo dag node, changing the operator from 'ops' to 2189 // SomeSDnode so that we can parse this. 2190 std::vector<std::pair<Init*, std::string> > Ops; 2191 for (unsigned op = 0, e = DefaultInfo->getNumArgs(); op != e; ++op) 2192 Ops.push_back(std::make_pair(DefaultInfo->getArg(op), 2193 DefaultInfo->getArgName(op))); 2194 DagInit *DI = DagInit::get(SomeSDNode, "", Ops); 2195 2196 // Create a TreePattern to parse this. 2197 TreePattern P(DefaultOps[iter][i], DI, false, *this); 2198 assert(P.getNumTrees() == 1 && "This ctor can only produce one tree!"); 2199 2200 // Copy the operands over into a DAGDefaultOperand. 2201 DAGDefaultOperand DefaultOpInfo; 2202 2203 TreePatternNode *T = P.getTree(0); 2204 for (unsigned op = 0, e = T->getNumChildren(); op != e; ++op) { 2205 TreePatternNode *TPN = T->getChild(op); 2206 while (TPN->ApplyTypeConstraints(P, false)) 2207 /* Resolve all types */; 2208 2209 if (TPN->ContainsUnresolvedType()) { 2210 if (iter == 0) 2211 throw "Value #" + utostr(i) + " of PredicateOperand '" + 2212 DefaultOps[iter][i]->getName() +"' doesn't have a concrete type!"; 2213 else 2214 throw "Value #" + utostr(i) + " of OptionalDefOperand '" + 2215 DefaultOps[iter][i]->getName() +"' doesn't have a concrete type!"; 2216 } 2217 DefaultOpInfo.DefaultOps.push_back(TPN); 2218 } 2219 2220 // Insert it into the DefaultOperands map so we can find it later. 2221 DefaultOperands[DefaultOps[iter][i]] = DefaultOpInfo; 2222 } 2223 } 2224 } 2225 2226 /// HandleUse - Given "Pat" a leaf in the pattern, check to see if it is an 2227 /// instruction input. Return true if this is a real use. 2228 static bool HandleUse(TreePattern *I, TreePatternNode *Pat, 2229 std::map<std::string, TreePatternNode*> &InstInputs) { 2230 // No name -> not interesting. 2231 if (Pat->getName().empty()) { 2232 if (Pat->isLeaf()) { 2233 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue()); 2234 if (DI && (DI->getDef()->isSubClassOf("RegisterClass") || 2235 DI->getDef()->isSubClassOf("RegisterOperand"))) 2236 I->error("Input " + DI->getDef()->getName() + " must be named!"); 2237 } 2238 return false; 2239 } 2240 2241 Record *Rec; 2242 if (Pat->isLeaf()) { 2243 DefInit *DI = dynamic_cast<DefInit*>(Pat->getLeafValue()); 2244 if (!DI) I->error("Input $" + Pat->getName() + " must be an identifier!"); 2245 Rec = DI->getDef(); 2246 } else { 2247 Rec = Pat->getOperator(); 2248 } 2249 2250 // SRCVALUE nodes are ignored. 2251 if (Rec->getName() == "srcvalue") 2252 return false; 2253 2254 TreePatternNode *&Slot = InstInputs[Pat->getName()]; 2255 if (!Slot) { 2256 Slot = Pat; 2257 return true; 2258 } 2259 Record *SlotRec; 2260 if (Slot->isLeaf()) { 2261 SlotRec = dynamic_cast<DefInit*>(Slot->getLeafValue())->getDef(); 2262 } else { 2263 assert(Slot->getNumChildren() == 0 && "can't be a use with children!"); 2264 SlotRec = Slot->getOperator(); 2265 } 2266 2267 // Ensure that the inputs agree if we've already seen this input. 2268 if (Rec != SlotRec) 2269 I->error("All $" + Pat->getName() + " inputs must agree with each other"); 2270 if (Slot->getExtTypes() != Pat->getExtTypes()) 2271 I->error("All $" + Pat->getName() + " inputs must agree with each other"); 2272 return true; 2273 } 2274 2275 /// FindPatternInputsAndOutputs - Scan the specified TreePatternNode (which is 2276 /// part of "I", the instruction), computing the set of inputs and outputs of 2277 /// the pattern. Report errors if we see anything naughty. 2278 void CodeGenDAGPatterns:: 2279 FindPatternInputsAndOutputs(TreePattern *I, TreePatternNode *Pat, 2280 std::map<std::string, TreePatternNode*> &InstInputs, 2281 std::map<std::string, TreePatternNode*>&InstResults, 2282 std::vector<Record*> &InstImpResults) { 2283 if (Pat->isLeaf()) { 2284 bool isUse = HandleUse(I, Pat, InstInputs); 2285 if (!isUse && Pat->getTransformFn()) 2286 I->error("Cannot specify a transform function for a non-input value!"); 2287 return; 2288 } 2289 2290 if (Pat->getOperator()->getName() == "implicit") { 2291 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) { 2292 TreePatternNode *Dest = Pat->getChild(i); 2293 if (!Dest->isLeaf()) 2294 I->error("implicitly defined value should be a register!"); 2295 2296 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue()); 2297 if (!Val || !Val->getDef()->isSubClassOf("Register")) 2298 I->error("implicitly defined value should be a register!"); 2299 InstImpResults.push_back(Val->getDef()); 2300 } 2301 return; 2302 } 2303 2304 if (Pat->getOperator()->getName() != "set") { 2305 // If this is not a set, verify that the children nodes are not void typed, 2306 // and recurse. 2307 for (unsigned i = 0, e = Pat->getNumChildren(); i != e; ++i) { 2308 if (Pat->getChild(i)->getNumTypes() == 0) 2309 I->error("Cannot have void nodes inside of patterns!"); 2310 FindPatternInputsAndOutputs(I, Pat->getChild(i), InstInputs, InstResults, 2311 InstImpResults); 2312 } 2313 2314 // If this is a non-leaf node with no children, treat it basically as if 2315 // it were a leaf. This handles nodes like (imm). 2316 bool isUse = HandleUse(I, Pat, InstInputs); 2317 2318 if (!isUse && Pat->getTransformFn()) 2319 I->error("Cannot specify a transform function for a non-input value!"); 2320 return; 2321 } 2322 2323 // Otherwise, this is a set, validate and collect instruction results. 2324 if (Pat->getNumChildren() == 0) 2325 I->error("set requires operands!"); 2326 2327 if (Pat->getTransformFn()) 2328 I->error("Cannot specify a transform function on a set node!"); 2329 2330 // Check the set destinations. 2331 unsigned NumDests = Pat->getNumChildren()-1; 2332 for (unsigned i = 0; i != NumDests; ++i) { 2333 TreePatternNode *Dest = Pat->getChild(i); 2334 if (!Dest->isLeaf()) 2335 I->error("set destination should be a register!"); 2336 2337 DefInit *Val = dynamic_cast<DefInit*>(Dest->getLeafValue()); 2338 if (!Val) 2339 I->error("set destination should be a register!"); 2340 2341 if (Val->getDef()->isSubClassOf("RegisterClass") || 2342 Val->getDef()->isSubClassOf("RegisterOperand") || 2343 Val->getDef()->isSubClassOf("PointerLikeRegClass")) { 2344 if (Dest->getName().empty()) 2345 I->error("set destination must have a name!"); 2346 if (InstResults.count(Dest->getName())) 2347 I->error("cannot set '" + Dest->getName() +"' multiple times"); 2348 InstResults[Dest->getName()] = Dest; 2349 } else if (Val->getDef()->isSubClassOf("Register")) { 2350 InstImpResults.push_back(Val->getDef()); 2351 } else { 2352 I->error("set destination should be a register!"); 2353 } 2354 } 2355 2356 // Verify and collect info from the computation. 2357 FindPatternInputsAndOutputs(I, Pat->getChild(NumDests), 2358 InstInputs, InstResults, InstImpResults); 2359 } 2360 2361 //===----------------------------------------------------------------------===// 2362 // Instruction Analysis 2363 //===----------------------------------------------------------------------===// 2364 2365 class InstAnalyzer { 2366 const CodeGenDAGPatterns &CDP; 2367 public: 2368 bool hasSideEffects; 2369 bool mayStore; 2370 bool mayLoad; 2371 bool isBitcast; 2372 bool isVariadic; 2373 2374 InstAnalyzer(const CodeGenDAGPatterns &cdp) 2375 : CDP(cdp), hasSideEffects(false), mayStore(false), mayLoad(false), 2376 isBitcast(false), isVariadic(false) {} 2377 2378 void Analyze(const TreePattern *Pat) { 2379 // Assume only the first tree is the pattern. The others are clobber nodes. 2380 AnalyzeNode(Pat->getTree(0)); 2381 } 2382 2383 void Analyze(const PatternToMatch *Pat) { 2384 AnalyzeNode(Pat->getSrcPattern()); 2385 } 2386 2387 private: 2388 bool IsNodeBitcast(const TreePatternNode *N) const { 2389 if (hasSideEffects || mayLoad || mayStore || isVariadic) 2390 return false; 2391 2392 if (N->getNumChildren() != 2) 2393 return false; 2394 2395 const TreePatternNode *N0 = N->getChild(0); 2396 if (!N0->isLeaf() || !dynamic_cast<DefInit*>(N0->getLeafValue())) 2397 return false; 2398 2399 const TreePatternNode *N1 = N->getChild(1); 2400 if (N1->isLeaf()) 2401 return false; 2402 if (N1->getNumChildren() != 1 || !N1->getChild(0)->isLeaf()) 2403 return false; 2404 2405 const SDNodeInfo &OpInfo = CDP.getSDNodeInfo(N1->getOperator()); 2406 if (OpInfo.getNumResults() != 1 || OpInfo.getNumOperands() != 1) 2407 return false; 2408 return OpInfo.getEnumName() == "ISD::BITCAST"; 2409 } 2410 2411 public: 2412 void AnalyzeNode(const TreePatternNode *N) { 2413 if (N->isLeaf()) { 2414 if (DefInit *DI = dynamic_cast<DefInit*>(N->getLeafValue())) { 2415 Record *LeafRec = DI->getDef(); 2416 // Handle ComplexPattern leaves. 2417 if (LeafRec->isSubClassOf("ComplexPattern")) { 2418 const ComplexPattern &CP = CDP.getComplexPattern(LeafRec); 2419 if (CP.hasProperty(SDNPMayStore)) mayStore = true; 2420 if (CP.hasProperty(SDNPMayLoad)) mayLoad = true; 2421 if (CP.hasProperty(SDNPSideEffect)) hasSideEffects = true; 2422 } 2423 } 2424 return; 2425 } 2426 2427 // Analyze children. 2428 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) 2429 AnalyzeNode(N->getChild(i)); 2430 2431 // Ignore set nodes, which are not SDNodes. 2432 if (N->getOperator()->getName() == "set") { 2433 isBitcast = IsNodeBitcast(N); 2434 return; 2435 } 2436 2437 // Get information about the SDNode for the operator. 2438 const SDNodeInfo &OpInfo = CDP.getSDNodeInfo(N->getOperator()); 2439 2440 // Notice properties of the node. 2441 if (OpInfo.hasProperty(SDNPMayStore)) mayStore = true; 2442 if (OpInfo.hasProperty(SDNPMayLoad)) mayLoad = true; 2443 if (OpInfo.hasProperty(SDNPSideEffect)) hasSideEffects = true; 2444 if (OpInfo.hasProperty(SDNPVariadic)) isVariadic = true; 2445 2446 if (const CodeGenIntrinsic *IntInfo = N->getIntrinsicInfo(CDP)) { 2447 // If this is an intrinsic, analyze it. 2448 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadArgMem) 2449 mayLoad = true;// These may load memory. 2450 2451 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadWriteArgMem) 2452 mayStore = true;// Intrinsics that can write to memory are 'mayStore'. 2453 2454 if (IntInfo->ModRef >= CodeGenIntrinsic::ReadWriteMem) 2455 // WriteMem intrinsics can have other strange effects. 2456 hasSideEffects = true; 2457 } 2458 } 2459 2460 }; 2461 2462 static bool InferFromPattern(CodeGenInstruction &InstInfo, 2463 const InstAnalyzer &PatInfo, 2464 Record *PatDef) { 2465 bool Error = false; 2466 2467 // Remember where InstInfo got its flags. 2468 if (InstInfo.hasUndefFlags()) 2469 InstInfo.InferredFrom = PatDef; 2470 2471 // Check explicitly set flags for consistency. 2472 if (InstInfo.hasSideEffects != PatInfo.hasSideEffects && 2473 !InstInfo.hasSideEffects_Unset) { 2474 // Allow explicitly setting hasSideEffects = 1 on instructions, even when 2475 // the pattern has no side effects. That could be useful for div/rem 2476 // instructions that may trap. 2477 if (!InstInfo.hasSideEffects) { 2478 Error = true; 2479 PrintError(PatDef->getLoc(), "Pattern doesn't match hasSideEffects = " + 2480 Twine(InstInfo.hasSideEffects)); 2481 } 2482 } 2483 2484 if (InstInfo.mayStore != PatInfo.mayStore && !InstInfo.mayStore_Unset) { 2485 Error = true; 2486 PrintError(PatDef->getLoc(), "Pattern doesn't match mayStore = " + 2487 Twine(InstInfo.mayStore)); 2488 } 2489 2490 if (InstInfo.mayLoad != PatInfo.mayLoad && !InstInfo.mayLoad_Unset) { 2491 // Allow explicitly setting mayLoad = 1, even when the pattern has no loads. 2492 // Some targets translate imediates to loads. 2493 if (!InstInfo.mayLoad) { 2494 Error = true; 2495 PrintError(PatDef->getLoc(), "Pattern doesn't match mayLoad = " + 2496 Twine(InstInfo.mayLoad)); 2497 } 2498 } 2499 2500 // Transfer inferred flags. 2501 InstInfo.hasSideEffects |= PatInfo.hasSideEffects; 2502 InstInfo.mayStore |= PatInfo.mayStore; 2503 InstInfo.mayLoad |= PatInfo.mayLoad; 2504 2505 // These flags are silently added without any verification. 2506 InstInfo.isBitcast |= PatInfo.isBitcast; 2507 2508 // Don't infer isVariadic. This flag means something different on SDNodes and 2509 // instructions. For example, a CALL SDNode is variadic because it has the 2510 // call arguments as operands, but a CALL instruction is not variadic - it 2511 // has argument registers as implicit, not explicit uses. 2512 2513 return Error; 2514 } 2515 2516 /// hasNullFragReference - Return true if the DAG has any reference to the 2517 /// null_frag operator. 2518 static bool hasNullFragReference(DagInit *DI) { 2519 DefInit *OpDef = dynamic_cast<DefInit*>(DI->getOperator()); 2520 if (!OpDef) return false; 2521 Record *Operator = OpDef->getDef(); 2522 2523 // If this is the null fragment, return true. 2524 if (Operator->getName() == "null_frag") return true; 2525 // If any of the arguments reference the null fragment, return true. 2526 for (unsigned i = 0, e = DI->getNumArgs(); i != e; ++i) { 2527 DagInit *Arg = dynamic_cast<DagInit*>(DI->getArg(i)); 2528 if (Arg && hasNullFragReference(Arg)) 2529 return true; 2530 } 2531 2532 return false; 2533 } 2534 2535 /// hasNullFragReference - Return true if any DAG in the list references 2536 /// the null_frag operator. 2537 static bool hasNullFragReference(ListInit *LI) { 2538 for (unsigned i = 0, e = LI->getSize(); i != e; ++i) { 2539 DagInit *DI = dynamic_cast<DagInit*>(LI->getElement(i)); 2540 assert(DI && "non-dag in an instruction Pattern list?!"); 2541 if (hasNullFragReference(DI)) 2542 return true; 2543 } 2544 return false; 2545 } 2546 2547 /// Get all the instructions in a tree. 2548 static void 2549 getInstructionsInTree(TreePatternNode *Tree, SmallVectorImpl<Record*> &Instrs) { 2550 if (Tree->isLeaf()) 2551 return; 2552 if (Tree->getOperator()->isSubClassOf("Instruction")) 2553 Instrs.push_back(Tree->getOperator()); 2554 for (unsigned i = 0, e = Tree->getNumChildren(); i != e; ++i) 2555 getInstructionsInTree(Tree->getChild(i), Instrs); 2556 } 2557 2558 /// ParseInstructions - Parse all of the instructions, inlining and resolving 2559 /// any fragments involved. This populates the Instructions list with fully 2560 /// resolved instructions. 2561 void CodeGenDAGPatterns::ParseInstructions() { 2562 std::vector<Record*> Instrs = Records.getAllDerivedDefinitions("Instruction"); 2563 2564 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) { 2565 ListInit *LI = 0; 2566 2567 if (dynamic_cast<ListInit*>(Instrs[i]->getValueInit("Pattern"))) 2568 LI = Instrs[i]->getValueAsListInit("Pattern"); 2569 2570 // If there is no pattern, only collect minimal information about the 2571 // instruction for its operand list. We have to assume that there is one 2572 // result, as we have no detailed info. A pattern which references the 2573 // null_frag operator is as-if no pattern were specified. Normally this 2574 // is from a multiclass expansion w/ a SDPatternOperator passed in as 2575 // null_frag. 2576 if (!LI || LI->getSize() == 0 || hasNullFragReference(LI)) { 2577 std::vector<Record*> Results; 2578 std::vector<Record*> Operands; 2579 2580 CodeGenInstruction &InstInfo = Target.getInstruction(Instrs[i]); 2581 2582 if (InstInfo.Operands.size() != 0) { 2583 if (InstInfo.Operands.NumDefs == 0) { 2584 // These produce no results 2585 for (unsigned j = 0, e = InstInfo.Operands.size(); j < e; ++j) 2586 Operands.push_back(InstInfo.Operands[j].Rec); 2587 } else { 2588 // Assume the first operand is the result. 2589 Results.push_back(InstInfo.Operands[0].Rec); 2590 2591 // The rest are inputs. 2592 for (unsigned j = 1, e = InstInfo.Operands.size(); j < e; ++j) 2593 Operands.push_back(InstInfo.Operands[j].Rec); 2594 } 2595 } 2596 2597 // Create and insert the instruction. 2598 std::vector<Record*> ImpResults; 2599 Instructions.insert(std::make_pair(Instrs[i], 2600 DAGInstruction(0, Results, Operands, ImpResults))); 2601 continue; // no pattern. 2602 } 2603 2604 // Parse the instruction. 2605 TreePattern *I = new TreePattern(Instrs[i], LI, true, *this); 2606 // Inline pattern fragments into it. 2607 I->InlinePatternFragments(); 2608 2609 // Infer as many types as possible. If we cannot infer all of them, we can 2610 // never do anything with this instruction pattern: report it to the user. 2611 if (!I->InferAllTypes()) 2612 I->error("Could not infer all types in pattern!"); 2613 2614 // InstInputs - Keep track of all of the inputs of the instruction, along 2615 // with the record they are declared as. 2616 std::map<std::string, TreePatternNode*> InstInputs; 2617 2618 // InstResults - Keep track of all the virtual registers that are 'set' 2619 // in the instruction, including what reg class they are. 2620 std::map<std::string, TreePatternNode*> InstResults; 2621 2622 std::vector<Record*> InstImpResults; 2623 2624 // Verify that the top-level forms in the instruction are of void type, and 2625 // fill in the InstResults map. 2626 for (unsigned j = 0, e = I->getNumTrees(); j != e; ++j) { 2627 TreePatternNode *Pat = I->getTree(j); 2628 if (Pat->getNumTypes() != 0) 2629 I->error("Top-level forms in instruction pattern should have" 2630 " void types"); 2631 2632 // Find inputs and outputs, and verify the structure of the uses/defs. 2633 FindPatternInputsAndOutputs(I, Pat, InstInputs, InstResults, 2634 InstImpResults); 2635 } 2636 2637 // Now that we have inputs and outputs of the pattern, inspect the operands 2638 // list for the instruction. This determines the order that operands are 2639 // added to the machine instruction the node corresponds to. 2640 unsigned NumResults = InstResults.size(); 2641 2642 // Parse the operands list from the (ops) list, validating it. 2643 assert(I->getArgList().empty() && "Args list should still be empty here!"); 2644 CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]); 2645 2646 // Check that all of the results occur first in the list. 2647 std::vector<Record*> Results; 2648 TreePatternNode *Res0Node = 0; 2649 for (unsigned i = 0; i != NumResults; ++i) { 2650 if (i == CGI.Operands.size()) 2651 I->error("'" + InstResults.begin()->first + 2652 "' set but does not appear in operand list!"); 2653 const std::string &OpName = CGI.Operands[i].Name; 2654 2655 // Check that it exists in InstResults. 2656 TreePatternNode *RNode = InstResults[OpName]; 2657 if (RNode == 0) 2658 I->error("Operand $" + OpName + " does not exist in operand list!"); 2659 2660 if (i == 0) 2661 Res0Node = RNode; 2662 Record *R = dynamic_cast<DefInit*>(RNode->getLeafValue())->getDef(); 2663 if (R == 0) 2664 I->error("Operand $" + OpName + " should be a set destination: all " 2665 "outputs must occur before inputs in operand list!"); 2666 2667 if (CGI.Operands[i].Rec != R) 2668 I->error("Operand $" + OpName + " class mismatch!"); 2669 2670 // Remember the return type. 2671 Results.push_back(CGI.Operands[i].Rec); 2672 2673 // Okay, this one checks out. 2674 InstResults.erase(OpName); 2675 } 2676 2677 // Loop over the inputs next. Make a copy of InstInputs so we can destroy 2678 // the copy while we're checking the inputs. 2679 std::map<std::string, TreePatternNode*> InstInputsCheck(InstInputs); 2680 2681 std::vector<TreePatternNode*> ResultNodeOperands; 2682 std::vector<Record*> Operands; 2683 for (unsigned i = NumResults, e = CGI.Operands.size(); i != e; ++i) { 2684 CGIOperandList::OperandInfo &Op = CGI.Operands[i]; 2685 const std::string &OpName = Op.Name; 2686 if (OpName.empty()) 2687 I->error("Operand #" + utostr(i) + " in operands list has no name!"); 2688 2689 if (!InstInputsCheck.count(OpName)) { 2690 // If this is an predicate operand or optional def operand with an 2691 // DefaultOps set filled in, we can ignore this. When we codegen it, 2692 // we will do so as always executed. 2693 if (Op.Rec->isSubClassOf("PredicateOperand") || 2694 Op.Rec->isSubClassOf("OptionalDefOperand")) { 2695 // Does it have a non-empty DefaultOps field? If so, ignore this 2696 // operand. 2697 if (!getDefaultOperand(Op.Rec).DefaultOps.empty()) 2698 continue; 2699 } 2700 I->error("Operand $" + OpName + 2701 " does not appear in the instruction pattern"); 2702 } 2703 TreePatternNode *InVal = InstInputsCheck[OpName]; 2704 InstInputsCheck.erase(OpName); // It occurred, remove from map. 2705 2706 if (InVal->isLeaf() && 2707 dynamic_cast<DefInit*>(InVal->getLeafValue())) { 2708 Record *InRec = static_cast<DefInit*>(InVal->getLeafValue())->getDef(); 2709 if (Op.Rec != InRec && !InRec->isSubClassOf("ComplexPattern")) 2710 I->error("Operand $" + OpName + "'s register class disagrees" 2711 " between the operand and pattern"); 2712 } 2713 Operands.push_back(Op.Rec); 2714 2715 // Construct the result for the dest-pattern operand list. 2716 TreePatternNode *OpNode = InVal->clone(); 2717 2718 // No predicate is useful on the result. 2719 OpNode->clearPredicateFns(); 2720 2721 // Promote the xform function to be an explicit node if set. 2722 if (Record *Xform = OpNode->getTransformFn()) { 2723 OpNode->setTransformFn(0); 2724 std::vector<TreePatternNode*> Children; 2725 Children.push_back(OpNode); 2726 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes()); 2727 } 2728 2729 ResultNodeOperands.push_back(OpNode); 2730 } 2731 2732 if (!InstInputsCheck.empty()) 2733 I->error("Input operand $" + InstInputsCheck.begin()->first + 2734 " occurs in pattern but not in operands list!"); 2735 2736 TreePatternNode *ResultPattern = 2737 new TreePatternNode(I->getRecord(), ResultNodeOperands, 2738 GetNumNodeResults(I->getRecord(), *this)); 2739 // Copy fully inferred output node type to instruction result pattern. 2740 for (unsigned i = 0; i != NumResults; ++i) 2741 ResultPattern->setType(i, Res0Node->getExtType(i)); 2742 2743 // Create and insert the instruction. 2744 // FIXME: InstImpResults should not be part of DAGInstruction. 2745 DAGInstruction TheInst(I, Results, Operands, InstImpResults); 2746 Instructions.insert(std::make_pair(I->getRecord(), TheInst)); 2747 2748 // Use a temporary tree pattern to infer all types and make sure that the 2749 // constructed result is correct. This depends on the instruction already 2750 // being inserted into the Instructions map. 2751 TreePattern Temp(I->getRecord(), ResultPattern, false, *this); 2752 Temp.InferAllTypes(&I->getNamedNodesMap()); 2753 2754 DAGInstruction &TheInsertedInst = Instructions.find(I->getRecord())->second; 2755 TheInsertedInst.setResultPattern(Temp.getOnlyTree()); 2756 2757 DEBUG(I->dump()); 2758 } 2759 2760 // If we can, convert the instructions to be patterns that are matched! 2761 for (std::map<Record*, DAGInstruction, RecordPtrCmp>::iterator II = 2762 Instructions.begin(), 2763 E = Instructions.end(); II != E; ++II) { 2764 DAGInstruction &TheInst = II->second; 2765 const TreePattern *I = TheInst.getPattern(); 2766 if (I == 0) continue; // No pattern. 2767 2768 // FIXME: Assume only the first tree is the pattern. The others are clobber 2769 // nodes. 2770 TreePatternNode *Pattern = I->getTree(0); 2771 TreePatternNode *SrcPattern; 2772 if (Pattern->getOperator()->getName() == "set") { 2773 SrcPattern = Pattern->getChild(Pattern->getNumChildren()-1)->clone(); 2774 } else{ 2775 // Not a set (store or something?) 2776 SrcPattern = Pattern; 2777 } 2778 2779 Record *Instr = II->first; 2780 AddPatternToMatch(I, 2781 PatternToMatch(Instr, 2782 Instr->getValueAsListInit("Predicates"), 2783 SrcPattern, 2784 TheInst.getResultPattern(), 2785 TheInst.getImpResults(), 2786 Instr->getValueAsInt("AddedComplexity"), 2787 Instr->getID())); 2788 } 2789 } 2790 2791 2792 typedef std::pair<const TreePatternNode*, unsigned> NameRecord; 2793 2794 static void FindNames(const TreePatternNode *P, 2795 std::map<std::string, NameRecord> &Names, 2796 const TreePattern *PatternTop) { 2797 if (!P->getName().empty()) { 2798 NameRecord &Rec = Names[P->getName()]; 2799 // If this is the first instance of the name, remember the node. 2800 if (Rec.second++ == 0) 2801 Rec.first = P; 2802 else if (Rec.first->getExtTypes() != P->getExtTypes()) 2803 PatternTop->error("repetition of value: $" + P->getName() + 2804 " where different uses have different types!"); 2805 } 2806 2807 if (!P->isLeaf()) { 2808 for (unsigned i = 0, e = P->getNumChildren(); i != e; ++i) 2809 FindNames(P->getChild(i), Names, PatternTop); 2810 } 2811 } 2812 2813 void CodeGenDAGPatterns::AddPatternToMatch(const TreePattern *Pattern, 2814 const PatternToMatch &PTM) { 2815 // Do some sanity checking on the pattern we're about to match. 2816 std::string Reason; 2817 if (!PTM.getSrcPattern()->canPatternMatch(Reason, *this)) 2818 Pattern->error("Pattern can never match: " + Reason); 2819 2820 // If the source pattern's root is a complex pattern, that complex pattern 2821 // must specify the nodes it can potentially match. 2822 if (const ComplexPattern *CP = 2823 PTM.getSrcPattern()->getComplexPatternInfo(*this)) 2824 if (CP->getRootNodes().empty()) 2825 Pattern->error("ComplexPattern at root must specify list of opcodes it" 2826 " could match"); 2827 2828 2829 // Find all of the named values in the input and output, ensure they have the 2830 // same type. 2831 std::map<std::string, NameRecord> SrcNames, DstNames; 2832 FindNames(PTM.getSrcPattern(), SrcNames, Pattern); 2833 FindNames(PTM.getDstPattern(), DstNames, Pattern); 2834 2835 // Scan all of the named values in the destination pattern, rejecting them if 2836 // they don't exist in the input pattern. 2837 for (std::map<std::string, NameRecord>::iterator 2838 I = DstNames.begin(), E = DstNames.end(); I != E; ++I) { 2839 if (SrcNames[I->first].first == 0) 2840 Pattern->error("Pattern has input without matching name in output: $" + 2841 I->first); 2842 } 2843 2844 // Scan all of the named values in the source pattern, rejecting them if the 2845 // name isn't used in the dest, and isn't used to tie two values together. 2846 for (std::map<std::string, NameRecord>::iterator 2847 I = SrcNames.begin(), E = SrcNames.end(); I != E; ++I) 2848 if (DstNames[I->first].first == 0 && SrcNames[I->first].second == 1) 2849 Pattern->error("Pattern has dead named input: $" + I->first); 2850 2851 PatternsToMatch.push_back(PTM); 2852 } 2853 2854 2855 2856 void CodeGenDAGPatterns::InferInstructionFlags() { 2857 const std::vector<const CodeGenInstruction*> &Instructions = 2858 Target.getInstructionsByEnumValue(); 2859 2860 // First try to infer flags from the primary instruction pattern, if any. 2861 SmallVector<CodeGenInstruction*, 8> Revisit; 2862 unsigned Errors = 0; 2863 for (unsigned i = 0, e = Instructions.size(); i != e; ++i) { 2864 CodeGenInstruction &InstInfo = 2865 const_cast<CodeGenInstruction &>(*Instructions[i]); 2866 2867 // Treat neverHasSideEffects = 1 as the equivalent of hasSideEffects = 0. 2868 // This flag is obsolete and will be removed. 2869 if (InstInfo.neverHasSideEffects) { 2870 assert(!InstInfo.hasSideEffects); 2871 InstInfo.hasSideEffects_Unset = false; 2872 } 2873 2874 // Get the primary instruction pattern. 2875 const TreePattern *Pattern = getInstruction(InstInfo.TheDef).getPattern(); 2876 if (!Pattern) { 2877 if (InstInfo.hasUndefFlags()) 2878 Revisit.push_back(&InstInfo); 2879 continue; 2880 } 2881 InstAnalyzer PatInfo(*this); 2882 PatInfo.Analyze(Pattern); 2883 Errors += InferFromPattern(InstInfo, PatInfo, InstInfo.TheDef); 2884 } 2885 2886 // Second, look for single-instruction patterns defined outside the 2887 // instruction. 2888 for (ptm_iterator I = ptm_begin(), E = ptm_end(); I != E; ++I) { 2889 const PatternToMatch &PTM = *I; 2890 2891 // We can only infer from single-instruction patterns, otherwise we won't 2892 // know which instruction should get the flags. 2893 SmallVector<Record*, 8> PatInstrs; 2894 getInstructionsInTree(PTM.getDstPattern(), PatInstrs); 2895 if (PatInstrs.size() != 1) 2896 continue; 2897 2898 // Get the single instruction. 2899 CodeGenInstruction &InstInfo = Target.getInstruction(PatInstrs.front()); 2900 2901 // Only infer properties from the first pattern. We'll verify the others. 2902 if (InstInfo.InferredFrom) 2903 continue; 2904 2905 InstAnalyzer PatInfo(*this); 2906 PatInfo.Analyze(&PTM); 2907 Errors += InferFromPattern(InstInfo, PatInfo, PTM.getSrcRecord()); 2908 } 2909 2910 if (Errors) 2911 throw "pattern conflicts"; 2912 2913 // Revisit instructions with undefined flags and no pattern. 2914 if (Target.guessInstructionProperties()) { 2915 for (unsigned i = 0, e = Revisit.size(); i != e; ++i) { 2916 CodeGenInstruction &InstInfo = *Revisit[i]; 2917 if (InstInfo.InferredFrom) 2918 continue; 2919 // The mayLoad and mayStore flags default to false. 2920 // Conservatively assume hasSideEffects if it wasn't explicit. 2921 if (InstInfo.hasSideEffects_Unset) 2922 InstInfo.hasSideEffects = true; 2923 } 2924 return; 2925 } 2926 2927 // Complain about any flags that are still undefined. 2928 for (unsigned i = 0, e = Revisit.size(); i != e; ++i) { 2929 CodeGenInstruction &InstInfo = *Revisit[i]; 2930 if (InstInfo.InferredFrom) 2931 continue; 2932 if (InstInfo.hasSideEffects_Unset) 2933 PrintError(InstInfo.TheDef->getLoc(), 2934 "Can't infer hasSideEffects from patterns"); 2935 if (InstInfo.mayStore_Unset) 2936 PrintError(InstInfo.TheDef->getLoc(), 2937 "Can't infer mayStore from patterns"); 2938 if (InstInfo.mayLoad_Unset) 2939 PrintError(InstInfo.TheDef->getLoc(), 2940 "Can't infer mayLoad from patterns"); 2941 } 2942 } 2943 2944 2945 /// Verify instruction flags against pattern node properties. 2946 void CodeGenDAGPatterns::VerifyInstructionFlags() { 2947 unsigned Errors = 0; 2948 for (ptm_iterator I = ptm_begin(), E = ptm_end(); I != E; ++I) { 2949 const PatternToMatch &PTM = *I; 2950 SmallVector<Record*, 8> Instrs; 2951 getInstructionsInTree(PTM.getDstPattern(), Instrs); 2952 if (Instrs.empty()) 2953 continue; 2954 2955 // Count the number of instructions with each flag set. 2956 unsigned NumSideEffects = 0; 2957 unsigned NumStores = 0; 2958 unsigned NumLoads = 0; 2959 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) { 2960 const CodeGenInstruction &InstInfo = Target.getInstruction(Instrs[i]); 2961 NumSideEffects += InstInfo.hasSideEffects; 2962 NumStores += InstInfo.mayStore; 2963 NumLoads += InstInfo.mayLoad; 2964 } 2965 2966 // Analyze the source pattern. 2967 InstAnalyzer PatInfo(*this); 2968 PatInfo.Analyze(&PTM); 2969 2970 // Collect error messages. 2971 SmallVector<std::string, 4> Msgs; 2972 2973 // Check for missing flags in the output. 2974 // Permit extra flags for now at least. 2975 if (PatInfo.hasSideEffects && !NumSideEffects) 2976 Msgs.push_back("pattern has side effects, but hasSideEffects isn't set"); 2977 2978 // Don't verify store flags on instructions with side effects. At least for 2979 // intrinsics, side effects implies mayStore. 2980 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores) 2981 Msgs.push_back("pattern may store, but mayStore isn't set"); 2982 2983 // Similarly, mayStore implies mayLoad on intrinsics. 2984 if (!PatInfo.mayStore && PatInfo.mayLoad && !NumLoads) 2985 Msgs.push_back("pattern may load, but mayLoad isn't set"); 2986 2987 // Print error messages. 2988 if (Msgs.empty()) 2989 continue; 2990 ++Errors; 2991 2992 for (unsigned i = 0, e = Msgs.size(); i != e; ++i) 2993 PrintError(PTM.getSrcRecord()->getLoc(), Twine(Msgs[i]) + " on the " + 2994 (Instrs.size() == 1 ? 2995 "instruction" : "output instructions")); 2996 // Provide the location of the relevant instruction definitions. 2997 for (unsigned i = 0, e = Instrs.size(); i != e; ++i) { 2998 if (Instrs[i] != PTM.getSrcRecord()) 2999 PrintError(Instrs[i]->getLoc(), "defined here"); 3000 const CodeGenInstruction &InstInfo = Target.getInstruction(Instrs[i]); 3001 if (InstInfo.InferredFrom && 3002 InstInfo.InferredFrom != InstInfo.TheDef && 3003 InstInfo.InferredFrom != PTM.getSrcRecord()) 3004 PrintError(InstInfo.InferredFrom->getLoc(), "inferred from patttern"); 3005 } 3006 } 3007 if (Errors) 3008 throw "Errors in DAG patterns"; 3009 } 3010 3011 /// Given a pattern result with an unresolved type, see if we can find one 3012 /// instruction with an unresolved result type. Force this result type to an 3013 /// arbitrary element if it's possible types to converge results. 3014 static bool ForceArbitraryInstResultType(TreePatternNode *N, TreePattern &TP) { 3015 if (N->isLeaf()) 3016 return false; 3017 3018 // Analyze children. 3019 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) 3020 if (ForceArbitraryInstResultType(N->getChild(i), TP)) 3021 return true; 3022 3023 if (!N->getOperator()->isSubClassOf("Instruction")) 3024 return false; 3025 3026 // If this type is already concrete or completely unknown we can't do 3027 // anything. 3028 for (unsigned i = 0, e = N->getNumTypes(); i != e; ++i) { 3029 if (N->getExtType(i).isCompletelyUnknown() || N->getExtType(i).isConcrete()) 3030 continue; 3031 3032 // Otherwise, force its type to the first possibility (an arbitrary choice). 3033 if (N->getExtType(i).MergeInTypeInfo(N->getExtType(i).getTypeList()[0], TP)) 3034 return true; 3035 } 3036 3037 return false; 3038 } 3039 3040 void CodeGenDAGPatterns::ParsePatterns() { 3041 std::vector<Record*> Patterns = Records.getAllDerivedDefinitions("Pattern"); 3042 3043 for (unsigned i = 0, e = Patterns.size(); i != e; ++i) { 3044 Record *CurPattern = Patterns[i]; 3045 DagInit *Tree = CurPattern->getValueAsDag("PatternToMatch"); 3046 3047 // If the pattern references the null_frag, there's nothing to do. 3048 if (hasNullFragReference(Tree)) 3049 continue; 3050 3051 TreePattern *Pattern = new TreePattern(CurPattern, Tree, true, *this); 3052 3053 // Inline pattern fragments into it. 3054 Pattern->InlinePatternFragments(); 3055 3056 ListInit *LI = CurPattern->getValueAsListInit("ResultInstrs"); 3057 if (LI->getSize() == 0) continue; // no pattern. 3058 3059 // Parse the instruction. 3060 TreePattern *Result = new TreePattern(CurPattern, LI, false, *this); 3061 3062 // Inline pattern fragments into it. 3063 Result->InlinePatternFragments(); 3064 3065 if (Result->getNumTrees() != 1) 3066 Result->error("Cannot handle instructions producing instructions " 3067 "with temporaries yet!"); 3068 3069 bool IterateInference; 3070 bool InferredAllPatternTypes, InferredAllResultTypes; 3071 do { 3072 // Infer as many types as possible. If we cannot infer all of them, we 3073 // can never do anything with this pattern: report it to the user. 3074 InferredAllPatternTypes = 3075 Pattern->InferAllTypes(&Pattern->getNamedNodesMap()); 3076 3077 // Infer as many types as possible. If we cannot infer all of them, we 3078 // can never do anything with this pattern: report it to the user. 3079 InferredAllResultTypes = 3080 Result->InferAllTypes(&Pattern->getNamedNodesMap()); 3081 3082 IterateInference = false; 3083 3084 // Apply the type of the result to the source pattern. This helps us 3085 // resolve cases where the input type is known to be a pointer type (which 3086 // is considered resolved), but the result knows it needs to be 32- or 3087 // 64-bits. Infer the other way for good measure. 3088 for (unsigned i = 0, e = std::min(Result->getTree(0)->getNumTypes(), 3089 Pattern->getTree(0)->getNumTypes()); 3090 i != e; ++i) { 3091 IterateInference = Pattern->getTree(0)-> 3092 UpdateNodeType(i, Result->getTree(0)->getExtType(i), *Result); 3093 IterateInference |= Result->getTree(0)-> 3094 UpdateNodeType(i, Pattern->getTree(0)->getExtType(i), *Result); 3095 } 3096 3097 // If our iteration has converged and the input pattern's types are fully 3098 // resolved but the result pattern is not fully resolved, we may have a 3099 // situation where we have two instructions in the result pattern and 3100 // the instructions require a common register class, but don't care about 3101 // what actual MVT is used. This is actually a bug in our modelling: 3102 // output patterns should have register classes, not MVTs. 3103 // 3104 // In any case, to handle this, we just go through and disambiguate some 3105 // arbitrary types to the result pattern's nodes. 3106 if (!IterateInference && InferredAllPatternTypes && 3107 !InferredAllResultTypes) 3108 IterateInference = ForceArbitraryInstResultType(Result->getTree(0), 3109 *Result); 3110 } while (IterateInference); 3111 3112 // Verify that we inferred enough types that we can do something with the 3113 // pattern and result. If these fire the user has to add type casts. 3114 if (!InferredAllPatternTypes) 3115 Pattern->error("Could not infer all types in pattern!"); 3116 if (!InferredAllResultTypes) { 3117 Pattern->dump(); 3118 Result->error("Could not infer all types in pattern result!"); 3119 } 3120 3121 // Validate that the input pattern is correct. 3122 std::map<std::string, TreePatternNode*> InstInputs; 3123 std::map<std::string, TreePatternNode*> InstResults; 3124 std::vector<Record*> InstImpResults; 3125 for (unsigned j = 0, ee = Pattern->getNumTrees(); j != ee; ++j) 3126 FindPatternInputsAndOutputs(Pattern, Pattern->getTree(j), 3127 InstInputs, InstResults, 3128 InstImpResults); 3129 3130 // Promote the xform function to be an explicit node if set. 3131 TreePatternNode *DstPattern = Result->getOnlyTree(); 3132 std::vector<TreePatternNode*> ResultNodeOperands; 3133 for (unsigned ii = 0, ee = DstPattern->getNumChildren(); ii != ee; ++ii) { 3134 TreePatternNode *OpNode = DstPattern->getChild(ii); 3135 if (Record *Xform = OpNode->getTransformFn()) { 3136 OpNode->setTransformFn(0); 3137 std::vector<TreePatternNode*> Children; 3138 Children.push_back(OpNode); 3139 OpNode = new TreePatternNode(Xform, Children, OpNode->getNumTypes()); 3140 } 3141 ResultNodeOperands.push_back(OpNode); 3142 } 3143 DstPattern = Result->getOnlyTree(); 3144 if (!DstPattern->isLeaf()) 3145 DstPattern = new TreePatternNode(DstPattern->getOperator(), 3146 ResultNodeOperands, 3147 DstPattern->getNumTypes()); 3148 3149 for (unsigned i = 0, e = Result->getOnlyTree()->getNumTypes(); i != e; ++i) 3150 DstPattern->setType(i, Result->getOnlyTree()->getExtType(i)); 3151 3152 TreePattern Temp(Result->getRecord(), DstPattern, false, *this); 3153 Temp.InferAllTypes(); 3154 3155 3156 AddPatternToMatch(Pattern, 3157 PatternToMatch(CurPattern, 3158 CurPattern->getValueAsListInit("Predicates"), 3159 Pattern->getTree(0), 3160 Temp.getOnlyTree(), InstImpResults, 3161 CurPattern->getValueAsInt("AddedComplexity"), 3162 CurPattern->getID())); 3163 } 3164 } 3165 3166 /// CombineChildVariants - Given a bunch of permutations of each child of the 3167 /// 'operator' node, put them together in all possible ways. 3168 static void CombineChildVariants(TreePatternNode *Orig, 3169 const std::vector<std::vector<TreePatternNode*> > &ChildVariants, 3170 std::vector<TreePatternNode*> &OutVariants, 3171 CodeGenDAGPatterns &CDP, 3172 const MultipleUseVarSet &DepVars) { 3173 // Make sure that each operand has at least one variant to choose from. 3174 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i) 3175 if (ChildVariants[i].empty()) 3176 return; 3177 3178 // The end result is an all-pairs construction of the resultant pattern. 3179 std::vector<unsigned> Idxs; 3180 Idxs.resize(ChildVariants.size()); 3181 bool NotDone; 3182 do { 3183 #ifndef NDEBUG 3184 DEBUG(if (!Idxs.empty()) { 3185 errs() << Orig->getOperator()->getName() << ": Idxs = [ "; 3186 for (unsigned i = 0; i < Idxs.size(); ++i) { 3187 errs() << Idxs[i] << " "; 3188 } 3189 errs() << "]\n"; 3190 }); 3191 #endif 3192 // Create the variant and add it to the output list. 3193 std::vector<TreePatternNode*> NewChildren; 3194 for (unsigned i = 0, e = ChildVariants.size(); i != e; ++i) 3195 NewChildren.push_back(ChildVariants[i][Idxs[i]]); 3196 TreePatternNode *R = new TreePatternNode(Orig->getOperator(), NewChildren, 3197 Orig->getNumTypes()); 3198 3199 // Copy over properties. 3200 R->setName(Orig->getName()); 3201 R->setPredicateFns(Orig->getPredicateFns()); 3202 R->setTransformFn(Orig->getTransformFn()); 3203 for (unsigned i = 0, e = Orig->getNumTypes(); i != e; ++i) 3204 R->setType(i, Orig->getExtType(i)); 3205 3206 // If this pattern cannot match, do not include it as a variant. 3207 std::string ErrString; 3208 if (!R->canPatternMatch(ErrString, CDP)) { 3209 delete R; 3210 } else { 3211 bool AlreadyExists = false; 3212 3213 // Scan to see if this pattern has already been emitted. We can get 3214 // duplication due to things like commuting: 3215 // (and GPRC:$a, GPRC:$b) -> (and GPRC:$b, GPRC:$a) 3216 // which are the same pattern. Ignore the dups. 3217 for (unsigned i = 0, e = OutVariants.size(); i != e; ++i) 3218 if (R->isIsomorphicTo(OutVariants[i], DepVars)) { 3219 AlreadyExists = true; 3220 break; 3221 } 3222 3223 if (AlreadyExists) 3224 delete R; 3225 else 3226 OutVariants.push_back(R); 3227 } 3228 3229 // Increment indices to the next permutation by incrementing the 3230 // indicies from last index backward, e.g., generate the sequence 3231 // [0, 0], [0, 1], [1, 0], [1, 1]. 3232 int IdxsIdx; 3233 for (IdxsIdx = Idxs.size() - 1; IdxsIdx >= 0; --IdxsIdx) { 3234 if (++Idxs[IdxsIdx] == ChildVariants[IdxsIdx].size()) 3235 Idxs[IdxsIdx] = 0; 3236 else 3237 break; 3238 } 3239 NotDone = (IdxsIdx >= 0); 3240 } while (NotDone); 3241 } 3242 3243 /// CombineChildVariants - A helper function for binary operators. 3244 /// 3245 static void CombineChildVariants(TreePatternNode *Orig, 3246 const std::vector<TreePatternNode*> &LHS, 3247 const std::vector<TreePatternNode*> &RHS, 3248 std::vector<TreePatternNode*> &OutVariants, 3249 CodeGenDAGPatterns &CDP, 3250 const MultipleUseVarSet &DepVars) { 3251 std::vector<std::vector<TreePatternNode*> > ChildVariants; 3252 ChildVariants.push_back(LHS); 3253 ChildVariants.push_back(RHS); 3254 CombineChildVariants(Orig, ChildVariants, OutVariants, CDP, DepVars); 3255 } 3256 3257 3258 static void GatherChildrenOfAssociativeOpcode(TreePatternNode *N, 3259 std::vector<TreePatternNode *> &Children) { 3260 assert(N->getNumChildren()==2 &&"Associative but doesn't have 2 children!"); 3261 Record *Operator = N->getOperator(); 3262 3263 // Only permit raw nodes. 3264 if (!N->getName().empty() || !N->getPredicateFns().empty() || 3265 N->getTransformFn()) { 3266 Children.push_back(N); 3267 return; 3268 } 3269 3270 if (N->getChild(0)->isLeaf() || N->getChild(0)->getOperator() != Operator) 3271 Children.push_back(N->getChild(0)); 3272 else 3273 GatherChildrenOfAssociativeOpcode(N->getChild(0), Children); 3274 3275 if (N->getChild(1)->isLeaf() || N->getChild(1)->getOperator() != Operator) 3276 Children.push_back(N->getChild(1)); 3277 else 3278 GatherChildrenOfAssociativeOpcode(N->getChild(1), Children); 3279 } 3280 3281 /// GenerateVariantsOf - Given a pattern N, generate all permutations we can of 3282 /// the (potentially recursive) pattern by using algebraic laws. 3283 /// 3284 static void GenerateVariantsOf(TreePatternNode *N, 3285 std::vector<TreePatternNode*> &OutVariants, 3286 CodeGenDAGPatterns &CDP, 3287 const MultipleUseVarSet &DepVars) { 3288 // We cannot permute leaves. 3289 if (N->isLeaf()) { 3290 OutVariants.push_back(N); 3291 return; 3292 } 3293 3294 // Look up interesting info about the node. 3295 const SDNodeInfo &NodeInfo = CDP.getSDNodeInfo(N->getOperator()); 3296 3297 // If this node is associative, re-associate. 3298 if (NodeInfo.hasProperty(SDNPAssociative)) { 3299 // Re-associate by pulling together all of the linked operators 3300 std::vector<TreePatternNode*> MaximalChildren; 3301 GatherChildrenOfAssociativeOpcode(N, MaximalChildren); 3302 3303 // Only handle child sizes of 3. Otherwise we'll end up trying too many 3304 // permutations. 3305 if (MaximalChildren.size() == 3) { 3306 // Find the variants of all of our maximal children. 3307 std::vector<TreePatternNode*> AVariants, BVariants, CVariants; 3308 GenerateVariantsOf(MaximalChildren[0], AVariants, CDP, DepVars); 3309 GenerateVariantsOf(MaximalChildren[1], BVariants, CDP, DepVars); 3310 GenerateVariantsOf(MaximalChildren[2], CVariants, CDP, DepVars); 3311 3312 // There are only two ways we can permute the tree: 3313 // (A op B) op C and A op (B op C) 3314 // Within these forms, we can also permute A/B/C. 3315 3316 // Generate legal pair permutations of A/B/C. 3317 std::vector<TreePatternNode*> ABVariants; 3318 std::vector<TreePatternNode*> BAVariants; 3319 std::vector<TreePatternNode*> ACVariants; 3320 std::vector<TreePatternNode*> CAVariants; 3321 std::vector<TreePatternNode*> BCVariants; 3322 std::vector<TreePatternNode*> CBVariants; 3323 CombineChildVariants(N, AVariants, BVariants, ABVariants, CDP, DepVars); 3324 CombineChildVariants(N, BVariants, AVariants, BAVariants, CDP, DepVars); 3325 CombineChildVariants(N, AVariants, CVariants, ACVariants, CDP, DepVars); 3326 CombineChildVariants(N, CVariants, AVariants, CAVariants, CDP, DepVars); 3327 CombineChildVariants(N, BVariants, CVariants, BCVariants, CDP, DepVars); 3328 CombineChildVariants(N, CVariants, BVariants, CBVariants, CDP, DepVars); 3329 3330 // Combine those into the result: (x op x) op x 3331 CombineChildVariants(N, ABVariants, CVariants, OutVariants, CDP, DepVars); 3332 CombineChildVariants(N, BAVariants, CVariants, OutVariants, CDP, DepVars); 3333 CombineChildVariants(N, ACVariants, BVariants, OutVariants, CDP, DepVars); 3334 CombineChildVariants(N, CAVariants, BVariants, OutVariants, CDP, DepVars); 3335 CombineChildVariants(N, BCVariants, AVariants, OutVariants, CDP, DepVars); 3336 CombineChildVariants(N, CBVariants, AVariants, OutVariants, CDP, DepVars); 3337 3338 // Combine those into the result: x op (x op x) 3339 CombineChildVariants(N, CVariants, ABVariants, OutVariants, CDP, DepVars); 3340 CombineChildVariants(N, CVariants, BAVariants, OutVariants, CDP, DepVars); 3341 CombineChildVariants(N, BVariants, ACVariants, OutVariants, CDP, DepVars); 3342 CombineChildVariants(N, BVariants, CAVariants, OutVariants, CDP, DepVars); 3343 CombineChildVariants(N, AVariants, BCVariants, OutVariants, CDP, DepVars); 3344 CombineChildVariants(N, AVariants, CBVariants, OutVariants, CDP, DepVars); 3345 return; 3346 } 3347 } 3348 3349 // Compute permutations of all children. 3350 std::vector<std::vector<TreePatternNode*> > ChildVariants; 3351 ChildVariants.resize(N->getNumChildren()); 3352 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) 3353 GenerateVariantsOf(N->getChild(i), ChildVariants[i], CDP, DepVars); 3354 3355 // Build all permutations based on how the children were formed. 3356 CombineChildVariants(N, ChildVariants, OutVariants, CDP, DepVars); 3357 3358 // If this node is commutative, consider the commuted order. 3359 bool isCommIntrinsic = N->isCommutativeIntrinsic(CDP); 3360 if (NodeInfo.hasProperty(SDNPCommutative) || isCommIntrinsic) { 3361 assert((N->getNumChildren()==2 || isCommIntrinsic) && 3362 "Commutative but doesn't have 2 children!"); 3363 // Don't count children which are actually register references. 3364 unsigned NC = 0; 3365 for (unsigned i = 0, e = N->getNumChildren(); i != e; ++i) { 3366 TreePatternNode *Child = N->getChild(i); 3367 if (Child->isLeaf()) 3368 if (DefInit *DI = dynamic_cast<DefInit*>(Child->getLeafValue())) { 3369 Record *RR = DI->getDef(); 3370 if (RR->isSubClassOf("Register")) 3371 continue; 3372 } 3373 NC++; 3374 } 3375 // Consider the commuted order. 3376 if (isCommIntrinsic) { 3377 // Commutative intrinsic. First operand is the intrinsic id, 2nd and 3rd 3378 // operands are the commutative operands, and there might be more operands 3379 // after those. 3380 assert(NC >= 3 && 3381 "Commutative intrinsic should have at least 3 childrean!"); 3382 std::vector<std::vector<TreePatternNode*> > Variants; 3383 Variants.push_back(ChildVariants[0]); // Intrinsic id. 3384 Variants.push_back(ChildVariants[2]); 3385 Variants.push_back(ChildVariants[1]); 3386 for (unsigned i = 3; i != NC; ++i) 3387 Variants.push_back(ChildVariants[i]); 3388 CombineChildVariants(N, Variants, OutVariants, CDP, DepVars); 3389 } else if (NC == 2) 3390 CombineChildVariants(N, ChildVariants[1], ChildVariants[0], 3391 OutVariants, CDP, DepVars); 3392 } 3393 } 3394 3395 3396 // GenerateVariants - Generate variants. For example, commutative patterns can 3397 // match multiple ways. Add them to PatternsToMatch as well. 3398 void CodeGenDAGPatterns::GenerateVariants() { 3399 DEBUG(errs() << "Generating instruction variants.\n"); 3400 3401 // Loop over all of the patterns we've collected, checking to see if we can 3402 // generate variants of the instruction, through the exploitation of 3403 // identities. This permits the target to provide aggressive matching without 3404 // the .td file having to contain tons of variants of instructions. 3405 // 3406 // Note that this loop adds new patterns to the PatternsToMatch list, but we 3407 // intentionally do not reconsider these. Any variants of added patterns have 3408 // already been added. 3409 // 3410 for (unsigned i = 0, e = PatternsToMatch.size(); i != e; ++i) { 3411 MultipleUseVarSet DepVars; 3412 std::vector<TreePatternNode*> Variants; 3413 FindDepVars(PatternsToMatch[i].getSrcPattern(), DepVars); 3414 DEBUG(errs() << "Dependent/multiply used variables: "); 3415 DEBUG(DumpDepVars(DepVars)); 3416 DEBUG(errs() << "\n"); 3417 GenerateVariantsOf(PatternsToMatch[i].getSrcPattern(), Variants, *this, 3418 DepVars); 3419 3420 assert(!Variants.empty() && "Must create at least original variant!"); 3421 Variants.erase(Variants.begin()); // Remove the original pattern. 3422 3423 if (Variants.empty()) // No variants for this pattern. 3424 continue; 3425 3426 DEBUG(errs() << "FOUND VARIANTS OF: "; 3427 PatternsToMatch[i].getSrcPattern()->dump(); 3428 errs() << "\n"); 3429 3430 for (unsigned v = 0, e = Variants.size(); v != e; ++v) { 3431 TreePatternNode *Variant = Variants[v]; 3432 3433 DEBUG(errs() << " VAR#" << v << ": "; 3434 Variant->dump(); 3435 errs() << "\n"); 3436 3437 // Scan to see if an instruction or explicit pattern already matches this. 3438 bool AlreadyExists = false; 3439 for (unsigned p = 0, e = PatternsToMatch.size(); p != e; ++p) { 3440 // Skip if the top level predicates do not match. 3441 if (PatternsToMatch[i].getPredicates() != 3442 PatternsToMatch[p].getPredicates()) 3443 continue; 3444 // Check to see if this variant already exists. 3445 if (Variant->isIsomorphicTo(PatternsToMatch[p].getSrcPattern(), 3446 DepVars)) { 3447 DEBUG(errs() << " *** ALREADY EXISTS, ignoring variant.\n"); 3448 AlreadyExists = true; 3449 break; 3450 } 3451 } 3452 // If we already have it, ignore the variant. 3453 if (AlreadyExists) continue; 3454 3455 // Otherwise, add it to the list of patterns we have. 3456 PatternsToMatch. 3457 push_back(PatternToMatch(PatternsToMatch[i].getSrcRecord(), 3458 PatternsToMatch[i].getPredicates(), 3459 Variant, PatternsToMatch[i].getDstPattern(), 3460 PatternsToMatch[i].getDstRegs(), 3461 PatternsToMatch[i].getAddedComplexity(), 3462 Record::getNewUID())); 3463 } 3464 3465 DEBUG(errs() << "\n"); 3466 } 3467 } 3468