1 //===- MergeICmps.cpp - Optimize chains of integer comparisons ------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This pass turns chains of integer comparisons into memcmp (the memcmp is 10 // later typically inlined as a chain of efficient hardware comparisons). This 11 // typically benefits c++ member or nonmember operator==(). 12 // 13 // The basic idea is to replace a longer chain of integer comparisons loaded 14 // from contiguous memory locations into a shorter chain of larger integer 15 // comparisons. Benefits are double: 16 // - There are less jumps, and therefore less opportunities for mispredictions 17 // and I-cache misses. 18 // - Code size is smaller, both because jumps are removed and because the 19 // encoding of a 2*n byte compare is smaller than that of two n-byte 20 // compares. 21 // 22 // Example: 23 // 24 // struct S { 25 // int a; 26 // char b; 27 // char c; 28 // uint16_t d; 29 // bool operator==(const S& o) const { 30 // return a == o.a && b == o.b && c == o.c && d == o.d; 31 // } 32 // }; 33 // 34 // Is optimized as : 35 // 36 // bool S::operator==(const S& o) const { 37 // return memcmp(this, &o, 8) == 0; 38 // } 39 // 40 // Which will later be expanded (ExpandMemCmp) as a single 8-bytes icmp. 41 // 42 //===----------------------------------------------------------------------===// 43 44 #include "llvm/Transforms/Scalar/MergeICmps.h" 45 #include "llvm/Analysis/DomTreeUpdater.h" 46 #include "llvm/Analysis/GlobalsModRef.h" 47 #include "llvm/Analysis/Loads.h" 48 #include "llvm/Analysis/TargetLibraryInfo.h" 49 #include "llvm/Analysis/TargetTransformInfo.h" 50 #include "llvm/IR/Dominators.h" 51 #include "llvm/IR/Function.h" 52 #include "llvm/IR/IRBuilder.h" 53 #include "llvm/InitializePasses.h" 54 #include "llvm/Pass.h" 55 #include "llvm/Transforms/Scalar.h" 56 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 57 #include "llvm/Transforms/Utils/BuildLibCalls.h" 58 #include <algorithm> 59 #include <numeric> 60 #include <utility> 61 #include <vector> 62 63 using namespace llvm; 64 65 namespace { 66 67 #define DEBUG_TYPE "mergeicmps" 68 69 // A BCE atom "Binary Compare Expression Atom" represents an integer load 70 // that is a constant offset from a base value, e.g. `a` or `o.c` in the example 71 // at the top. 72 struct BCEAtom { 73 BCEAtom() = default; 74 BCEAtom(GetElementPtrInst *GEP, LoadInst *LoadI, int BaseId, APInt Offset) 75 : GEP(GEP), LoadI(LoadI), BaseId(BaseId), Offset(Offset) {} 76 77 BCEAtom(const BCEAtom &) = delete; 78 BCEAtom &operator=(const BCEAtom &) = delete; 79 80 BCEAtom(BCEAtom &&that) = default; 81 BCEAtom &operator=(BCEAtom &&that) { 82 if (this == &that) 83 return *this; 84 GEP = that.GEP; 85 LoadI = that.LoadI; 86 BaseId = that.BaseId; 87 Offset = std::move(that.Offset); 88 return *this; 89 } 90 91 // We want to order BCEAtoms by (Base, Offset). However we cannot use 92 // the pointer values for Base because these are non-deterministic. 93 // To make sure that the sort order is stable, we first assign to each atom 94 // base value an index based on its order of appearance in the chain of 95 // comparisons. We call this index `BaseOrdering`. For example, for: 96 // b[3] == c[2] && a[1] == d[1] && b[4] == c[3] 97 // | block 1 | | block 2 | | block 3 | 98 // b gets assigned index 0 and a index 1, because b appears as LHS in block 1, 99 // which is before block 2. 100 // We then sort by (BaseOrdering[LHS.Base()], LHS.Offset), which is stable. 101 bool operator<(const BCEAtom &O) const { 102 return BaseId != O.BaseId ? BaseId < O.BaseId : Offset.slt(O.Offset); 103 } 104 105 GetElementPtrInst *GEP = nullptr; 106 LoadInst *LoadI = nullptr; 107 unsigned BaseId = 0; 108 APInt Offset; 109 }; 110 111 // A class that assigns increasing ids to values in the order in which they are 112 // seen. See comment in `BCEAtom::operator<()``. 113 class BaseIdentifier { 114 public: 115 // Returns the id for value `Base`, after assigning one if `Base` has not been 116 // seen before. 117 int getBaseId(const Value *Base) { 118 assert(Base && "invalid base"); 119 const auto Insertion = BaseToIndex.try_emplace(Base, Order); 120 if (Insertion.second) 121 ++Order; 122 return Insertion.first->second; 123 } 124 125 private: 126 unsigned Order = 1; 127 DenseMap<const Value*, int> BaseToIndex; 128 }; 129 130 // If this value is a load from a constant offset w.r.t. a base address, and 131 // there are no other users of the load or address, returns the base address and 132 // the offset. 133 BCEAtom visitICmpLoadOperand(Value *const Val, BaseIdentifier &BaseId) { 134 auto *const LoadI = dyn_cast<LoadInst>(Val); 135 if (!LoadI) 136 return {}; 137 LLVM_DEBUG(dbgs() << "load\n"); 138 if (LoadI->isUsedOutsideOfBlock(LoadI->getParent())) { 139 LLVM_DEBUG(dbgs() << "used outside of block\n"); 140 return {}; 141 } 142 // Do not optimize atomic loads to non-atomic memcmp 143 if (!LoadI->isSimple()) { 144 LLVM_DEBUG(dbgs() << "volatile or atomic\n"); 145 return {}; 146 } 147 Value *Addr = LoadI->getOperand(0); 148 if (Addr->getType()->getPointerAddressSpace() != 0) { 149 LLVM_DEBUG(dbgs() << "from non-zero AddressSpace\n"); 150 return {}; 151 } 152 const auto &DL = LoadI->getModule()->getDataLayout(); 153 if (!isDereferenceablePointer(Addr, LoadI->getType(), DL)) { 154 LLVM_DEBUG(dbgs() << "not dereferenceable\n"); 155 // We need to make sure that we can do comparison in any order, so we 156 // require memory to be unconditionnally dereferencable. 157 return {}; 158 } 159 160 APInt Offset = APInt(DL.getPointerTypeSizeInBits(Addr->getType()), 0); 161 Value *Base = Addr; 162 auto *GEP = dyn_cast<GetElementPtrInst>(Addr); 163 if (GEP) { 164 LLVM_DEBUG(dbgs() << "GEP\n"); 165 if (GEP->isUsedOutsideOfBlock(LoadI->getParent())) { 166 LLVM_DEBUG(dbgs() << "used outside of block\n"); 167 return {}; 168 } 169 if (!GEP->accumulateConstantOffset(DL, Offset)) 170 return {}; 171 Base = GEP->getPointerOperand(); 172 } 173 return BCEAtom(GEP, LoadI, BaseId.getBaseId(Base), Offset); 174 } 175 176 // A comparison between two BCE atoms, e.g. `a == o.a` in the example at the 177 // top. 178 // Note: the terminology is misleading: the comparison is symmetric, so there 179 // is no real {l/r}hs. What we want though is to have the same base on the 180 // left (resp. right), so that we can detect consecutive loads. To ensure this 181 // we put the smallest atom on the left. 182 struct BCECmp { 183 BCEAtom Lhs; 184 BCEAtom Rhs; 185 int SizeBits; 186 const ICmpInst *CmpI; 187 188 BCECmp(BCEAtom L, BCEAtom R, int SizeBits, const ICmpInst *CmpI) 189 : Lhs(std::move(L)), Rhs(std::move(R)), SizeBits(SizeBits), CmpI(CmpI) { 190 if (Rhs < Lhs) std::swap(Rhs, Lhs); 191 } 192 }; 193 194 // A basic block with a comparison between two BCE atoms. 195 // The block might do extra work besides the atom comparison, in which case 196 // doesOtherWork() returns true. Under some conditions, the block can be 197 // split into the atom comparison part and the "other work" part 198 // (see canSplit()). 199 class BCECmpBlock { 200 public: 201 typedef SmallDenseSet<const Instruction *, 8> InstructionSet; 202 203 BCECmpBlock(BCECmp Cmp, BasicBlock *BB, InstructionSet BlockInsts) 204 : BB(BB), BlockInsts(std::move(BlockInsts)), Cmp(std::move(Cmp)) {} 205 206 const BCEAtom &Lhs() const { return Cmp.Lhs; } 207 const BCEAtom &Rhs() const { return Cmp.Rhs; } 208 int SizeBits() const { return Cmp.SizeBits; } 209 210 // Returns true if the block does other works besides comparison. 211 bool doesOtherWork() const; 212 213 // Returns true if the non-BCE-cmp instructions can be separated from BCE-cmp 214 // instructions in the block. 215 bool canSplit(AliasAnalysis &AA) const; 216 217 // Return true if this all the relevant instructions in the BCE-cmp-block can 218 // be sunk below this instruction. By doing this, we know we can separate the 219 // BCE-cmp-block instructions from the non-BCE-cmp-block instructions in the 220 // block. 221 bool canSinkBCECmpInst(const Instruction *, AliasAnalysis &AA) const; 222 223 // We can separate the BCE-cmp-block instructions and the non-BCE-cmp-block 224 // instructions. Split the old block and move all non-BCE-cmp-insts into the 225 // new parent block. 226 void split(BasicBlock *NewParent, AliasAnalysis &AA) const; 227 228 // The basic block where this comparison happens. 229 BasicBlock *BB; 230 // Instructions relating to the BCECmp and branch. 231 InstructionSet BlockInsts; 232 // The block requires splitting. 233 bool RequireSplit = false; 234 // Original order of this block in the chain. 235 unsigned OrigOrder = 0; 236 237 private: 238 BCECmp Cmp; 239 }; 240 241 bool BCECmpBlock::canSinkBCECmpInst(const Instruction *Inst, 242 AliasAnalysis &AA) const { 243 // If this instruction may clobber the loads and is in middle of the BCE cmp 244 // block instructions, then bail for now. 245 if (Inst->mayWriteToMemory()) { 246 auto MayClobber = [&](LoadInst *LI) { 247 // If a potentially clobbering instruction comes before the load, 248 // we can still safely sink the load. 249 return (Inst->getParent() != LI->getParent() || !Inst->comesBefore(LI)) && 250 isModSet(AA.getModRefInfo(Inst, MemoryLocation::get(LI))); 251 }; 252 if (MayClobber(Cmp.Lhs.LoadI) || MayClobber(Cmp.Rhs.LoadI)) 253 return false; 254 } 255 // Make sure this instruction does not use any of the BCE cmp block 256 // instructions as operand. 257 return llvm::none_of(Inst->operands(), [&](const Value *Op) { 258 const Instruction *OpI = dyn_cast<Instruction>(Op); 259 return OpI && BlockInsts.contains(OpI); 260 }); 261 } 262 263 void BCECmpBlock::split(BasicBlock *NewParent, AliasAnalysis &AA) const { 264 llvm::SmallVector<Instruction *, 4> OtherInsts; 265 for (Instruction &Inst : *BB) { 266 if (BlockInsts.count(&Inst)) 267 continue; 268 assert(canSinkBCECmpInst(&Inst, AA) && "Split unsplittable block"); 269 // This is a non-BCE-cmp-block instruction. And it can be separated 270 // from the BCE-cmp-block instruction. 271 OtherInsts.push_back(&Inst); 272 } 273 274 // Do the actual spliting. 275 for (Instruction *Inst : reverse(OtherInsts)) { 276 Inst->moveBefore(&*NewParent->begin()); 277 } 278 } 279 280 bool BCECmpBlock::canSplit(AliasAnalysis &AA) const { 281 for (Instruction &Inst : *BB) { 282 if (!BlockInsts.count(&Inst)) { 283 if (!canSinkBCECmpInst(&Inst, AA)) 284 return false; 285 } 286 } 287 return true; 288 } 289 290 bool BCECmpBlock::doesOtherWork() const { 291 // TODO(courbet): Can we allow some other things ? This is very conservative. 292 // We might be able to get away with anything does not have any side 293 // effects outside of the basic block. 294 // Note: The GEPs and/or loads are not necessarily in the same block. 295 for (const Instruction &Inst : *BB) { 296 if (!BlockInsts.count(&Inst)) 297 return true; 298 } 299 return false; 300 } 301 302 // Visit the given comparison. If this is a comparison between two valid 303 // BCE atoms, returns the comparison. 304 Optional<BCECmp> visitICmp(const ICmpInst *const CmpI, 305 const ICmpInst::Predicate ExpectedPredicate, 306 BaseIdentifier &BaseId) { 307 // The comparison can only be used once: 308 // - For intermediate blocks, as a branch condition. 309 // - For the final block, as an incoming value for the Phi. 310 // If there are any other uses of the comparison, we cannot merge it with 311 // other comparisons as we would create an orphan use of the value. 312 if (!CmpI->hasOneUse()) { 313 LLVM_DEBUG(dbgs() << "cmp has several uses\n"); 314 return None; 315 } 316 if (CmpI->getPredicate() != ExpectedPredicate) 317 return None; 318 LLVM_DEBUG(dbgs() << "cmp " 319 << (ExpectedPredicate == ICmpInst::ICMP_EQ ? "eq" : "ne") 320 << "\n"); 321 auto Lhs = visitICmpLoadOperand(CmpI->getOperand(0), BaseId); 322 if (!Lhs.BaseId) 323 return None; 324 auto Rhs = visitICmpLoadOperand(CmpI->getOperand(1), BaseId); 325 if (!Rhs.BaseId) 326 return None; 327 const auto &DL = CmpI->getModule()->getDataLayout(); 328 return BCECmp(std::move(Lhs), std::move(Rhs), 329 DL.getTypeSizeInBits(CmpI->getOperand(0)->getType()), CmpI); 330 } 331 332 // Visit the given comparison block. If this is a comparison between two valid 333 // BCE atoms, returns the comparison. 334 Optional<BCECmpBlock> visitCmpBlock(Value *const Val, BasicBlock *const Block, 335 const BasicBlock *const PhiBlock, 336 BaseIdentifier &BaseId) { 337 if (Block->empty()) return None; 338 auto *const BranchI = dyn_cast<BranchInst>(Block->getTerminator()); 339 if (!BranchI) return None; 340 LLVM_DEBUG(dbgs() << "branch\n"); 341 Value *Cond; 342 ICmpInst::Predicate ExpectedPredicate; 343 if (BranchI->isUnconditional()) { 344 // In this case, we expect an incoming value which is the result of the 345 // comparison. This is the last link in the chain of comparisons (note 346 // that this does not mean that this is the last incoming value, blocks 347 // can be reordered). 348 Cond = Val; 349 ExpectedPredicate = ICmpInst::ICMP_EQ; 350 } else { 351 // In this case, we expect a constant incoming value (the comparison is 352 // chained). 353 const auto *const Const = cast<ConstantInt>(Val); 354 LLVM_DEBUG(dbgs() << "const\n"); 355 if (!Const->isZero()) return None; 356 LLVM_DEBUG(dbgs() << "false\n"); 357 assert(BranchI->getNumSuccessors() == 2 && "expecting a cond branch"); 358 BasicBlock *const FalseBlock = BranchI->getSuccessor(1); 359 Cond = BranchI->getCondition(); 360 ExpectedPredicate = 361 FalseBlock == PhiBlock ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE; 362 } 363 364 auto *CmpI = dyn_cast<ICmpInst>(Cond); 365 if (!CmpI) return None; 366 LLVM_DEBUG(dbgs() << "icmp\n"); 367 368 Optional<BCECmp> Result = visitICmp(CmpI, ExpectedPredicate, BaseId); 369 if (!Result) 370 return None; 371 372 BCECmpBlock::InstructionSet BlockInsts( 373 {Result->Lhs.LoadI, Result->Rhs.LoadI, Result->CmpI, BranchI}); 374 if (Result->Lhs.GEP) 375 BlockInsts.insert(Result->Lhs.GEP); 376 if (Result->Rhs.GEP) 377 BlockInsts.insert(Result->Rhs.GEP); 378 return BCECmpBlock(std::move(*Result), Block, BlockInsts); 379 } 380 381 static inline void enqueueBlock(std::vector<BCECmpBlock> &Comparisons, 382 BCECmpBlock &&Comparison) { 383 LLVM_DEBUG(dbgs() << "Block '" << Comparison.BB->getName() 384 << "': Found cmp of " << Comparison.SizeBits() 385 << " bits between " << Comparison.Lhs().BaseId << " + " 386 << Comparison.Lhs().Offset << " and " 387 << Comparison.Rhs().BaseId << " + " 388 << Comparison.Rhs().Offset << "\n"); 389 LLVM_DEBUG(dbgs() << "\n"); 390 Comparison.OrigOrder = Comparisons.size(); 391 Comparisons.push_back(std::move(Comparison)); 392 } 393 394 // A chain of comparisons. 395 class BCECmpChain { 396 public: 397 using ContiguousBlocks = std::vector<BCECmpBlock>; 398 399 BCECmpChain(const std::vector<BasicBlock *> &Blocks, PHINode &Phi, 400 AliasAnalysis &AA); 401 402 bool simplify(const TargetLibraryInfo &TLI, AliasAnalysis &AA, 403 DomTreeUpdater &DTU); 404 405 bool atLeastOneMerged() const { 406 return any_of(MergedBlocks_, 407 [](const auto &Blocks) { return Blocks.size() > 1; }); 408 } 409 410 private: 411 PHINode &Phi_; 412 // The list of all blocks in the chain, grouped by contiguity. 413 std::vector<ContiguousBlocks> MergedBlocks_; 414 // The original entry block (before sorting); 415 BasicBlock *EntryBlock_; 416 }; 417 418 static bool areContiguous(const BCECmpBlock &First, const BCECmpBlock &Second) { 419 return First.Lhs().BaseId == Second.Lhs().BaseId && 420 First.Rhs().BaseId == Second.Rhs().BaseId && 421 First.Lhs().Offset + First.SizeBits() / 8 == Second.Lhs().Offset && 422 First.Rhs().Offset + First.SizeBits() / 8 == Second.Rhs().Offset; 423 } 424 425 static unsigned getMinOrigOrder(const BCECmpChain::ContiguousBlocks &Blocks) { 426 unsigned MinOrigOrder = std::numeric_limits<unsigned>::max(); 427 for (const BCECmpBlock &Block : Blocks) 428 MinOrigOrder = std::min(MinOrigOrder, Block.OrigOrder); 429 return MinOrigOrder; 430 } 431 432 /// Given a chain of comparison blocks, groups the blocks into contiguous 433 /// ranges that can be merged together into a single comparison. 434 static std::vector<BCECmpChain::ContiguousBlocks> 435 mergeBlocks(std::vector<BCECmpBlock> &&Blocks) { 436 std::vector<BCECmpChain::ContiguousBlocks> MergedBlocks; 437 438 // Sort to detect continuous offsets. 439 llvm::sort(Blocks, 440 [](const BCECmpBlock &LhsBlock, const BCECmpBlock &RhsBlock) { 441 return std::tie(LhsBlock.Lhs(), LhsBlock.Rhs()) < 442 std::tie(RhsBlock.Lhs(), RhsBlock.Rhs()); 443 }); 444 445 BCECmpChain::ContiguousBlocks *LastMergedBlock = nullptr; 446 for (BCECmpBlock &Block : Blocks) { 447 if (!LastMergedBlock || !areContiguous(LastMergedBlock->back(), Block)) { 448 MergedBlocks.emplace_back(); 449 LastMergedBlock = &MergedBlocks.back(); 450 } else { 451 LLVM_DEBUG(dbgs() << "Merging block " << Block.BB->getName() << " into " 452 << LastMergedBlock->back().BB->getName() << "\n"); 453 } 454 LastMergedBlock->push_back(std::move(Block)); 455 } 456 457 // While we allow reordering for merging, do not reorder unmerged comparisons. 458 // Doing so may introduce branch on poison. 459 llvm::sort(MergedBlocks, [](const BCECmpChain::ContiguousBlocks &LhsBlocks, 460 const BCECmpChain::ContiguousBlocks &RhsBlocks) { 461 return getMinOrigOrder(LhsBlocks) < getMinOrigOrder(RhsBlocks); 462 }); 463 464 return MergedBlocks; 465 } 466 467 BCECmpChain::BCECmpChain(const std::vector<BasicBlock *> &Blocks, PHINode &Phi, 468 AliasAnalysis &AA) 469 : Phi_(Phi) { 470 assert(!Blocks.empty() && "a chain should have at least one block"); 471 // Now look inside blocks to check for BCE comparisons. 472 std::vector<BCECmpBlock> Comparisons; 473 BaseIdentifier BaseId; 474 for (BasicBlock *const Block : Blocks) { 475 assert(Block && "invalid block"); 476 Optional<BCECmpBlock> Comparison = visitCmpBlock( 477 Phi.getIncomingValueForBlock(Block), Block, Phi.getParent(), BaseId); 478 if (!Comparison) { 479 LLVM_DEBUG(dbgs() << "chain with invalid BCECmpBlock, no merge.\n"); 480 return; 481 } 482 if (Comparison->doesOtherWork()) { 483 LLVM_DEBUG(dbgs() << "block '" << Comparison->BB->getName() 484 << "' does extra work besides compare\n"); 485 if (Comparisons.empty()) { 486 // This is the initial block in the chain, in case this block does other 487 // work, we can try to split the block and move the irrelevant 488 // instructions to the predecessor. 489 // 490 // If this is not the initial block in the chain, splitting it wont 491 // work. 492 // 493 // As once split, there will still be instructions before the BCE cmp 494 // instructions that do other work in program order, i.e. within the 495 // chain before sorting. Unless we can abort the chain at this point 496 // and start anew. 497 // 498 // NOTE: we only handle blocks a with single predecessor for now. 499 if (Comparison->canSplit(AA)) { 500 LLVM_DEBUG(dbgs() 501 << "Split initial block '" << Comparison->BB->getName() 502 << "' that does extra work besides compare\n"); 503 Comparison->RequireSplit = true; 504 enqueueBlock(Comparisons, std::move(*Comparison)); 505 } else { 506 LLVM_DEBUG(dbgs() 507 << "ignoring initial block '" << Comparison->BB->getName() 508 << "' that does extra work besides compare\n"); 509 } 510 continue; 511 } 512 // TODO(courbet): Right now we abort the whole chain. We could be 513 // merging only the blocks that don't do other work and resume the 514 // chain from there. For example: 515 // if (a[0] == b[0]) { // bb1 516 // if (a[1] == b[1]) { // bb2 517 // some_value = 3; //bb3 518 // if (a[2] == b[2]) { //bb3 519 // do a ton of stuff //bb4 520 // } 521 // } 522 // } 523 // 524 // This is: 525 // 526 // bb1 --eq--> bb2 --eq--> bb3* -eq--> bb4 --+ 527 // \ \ \ \ 528 // ne ne ne \ 529 // \ \ \ v 530 // +------------+-----------+----------> bb_phi 531 // 532 // We can only merge the first two comparisons, because bb3* does 533 // "other work" (setting some_value to 3). 534 // We could still merge bb1 and bb2 though. 535 return; 536 } 537 enqueueBlock(Comparisons, std::move(*Comparison)); 538 } 539 540 // It is possible we have no suitable comparison to merge. 541 if (Comparisons.empty()) { 542 LLVM_DEBUG(dbgs() << "chain with no BCE basic blocks, no merge\n"); 543 return; 544 } 545 EntryBlock_ = Comparisons[0].BB; 546 MergedBlocks_ = mergeBlocks(std::move(Comparisons)); 547 } 548 549 namespace { 550 551 // A class to compute the name of a set of merged basic blocks. 552 // This is optimized for the common case of no block names. 553 class MergedBlockName { 554 // Storage for the uncommon case of several named blocks. 555 SmallString<16> Scratch; 556 557 public: 558 explicit MergedBlockName(ArrayRef<BCECmpBlock> Comparisons) 559 : Name(makeName(Comparisons)) {} 560 const StringRef Name; 561 562 private: 563 StringRef makeName(ArrayRef<BCECmpBlock> Comparisons) { 564 assert(!Comparisons.empty() && "no basic block"); 565 // Fast path: only one block, or no names at all. 566 if (Comparisons.size() == 1) 567 return Comparisons[0].BB->getName(); 568 const int size = std::accumulate(Comparisons.begin(), Comparisons.end(), 0, 569 [](int i, const BCECmpBlock &Cmp) { 570 return i + Cmp.BB->getName().size(); 571 }); 572 if (size == 0) 573 return StringRef("", 0); 574 575 // Slow path: at least two blocks, at least one block with a name. 576 Scratch.clear(); 577 // We'll have `size` bytes for name and `Comparisons.size() - 1` bytes for 578 // separators. 579 Scratch.reserve(size + Comparisons.size() - 1); 580 const auto append = [this](StringRef str) { 581 Scratch.append(str.begin(), str.end()); 582 }; 583 append(Comparisons[0].BB->getName()); 584 for (int I = 1, E = Comparisons.size(); I < E; ++I) { 585 const BasicBlock *const BB = Comparisons[I].BB; 586 if (!BB->getName().empty()) { 587 append("+"); 588 append(BB->getName()); 589 } 590 } 591 return Scratch.str(); 592 } 593 }; 594 } // namespace 595 596 // Merges the given contiguous comparison blocks into one memcmp block. 597 static BasicBlock *mergeComparisons(ArrayRef<BCECmpBlock> Comparisons, 598 BasicBlock *const InsertBefore, 599 BasicBlock *const NextCmpBlock, 600 PHINode &Phi, const TargetLibraryInfo &TLI, 601 AliasAnalysis &AA, DomTreeUpdater &DTU) { 602 assert(!Comparisons.empty() && "merging zero comparisons"); 603 LLVMContext &Context = NextCmpBlock->getContext(); 604 const BCECmpBlock &FirstCmp = Comparisons[0]; 605 606 // Create a new cmp block before next cmp block. 607 BasicBlock *const BB = 608 BasicBlock::Create(Context, MergedBlockName(Comparisons).Name, 609 NextCmpBlock->getParent(), InsertBefore); 610 IRBuilder<> Builder(BB); 611 // Add the GEPs from the first BCECmpBlock. 612 Value *Lhs, *Rhs; 613 if (FirstCmp.Lhs().GEP) 614 Lhs = Builder.Insert(FirstCmp.Lhs().GEP->clone()); 615 else 616 Lhs = FirstCmp.Lhs().LoadI->getPointerOperand(); 617 if (FirstCmp.Rhs().GEP) 618 Rhs = Builder.Insert(FirstCmp.Rhs().GEP->clone()); 619 else 620 Rhs = FirstCmp.Rhs().LoadI->getPointerOperand(); 621 622 Value *IsEqual = nullptr; 623 LLVM_DEBUG(dbgs() << "Merging " << Comparisons.size() << " comparisons -> " 624 << BB->getName() << "\n"); 625 626 // If there is one block that requires splitting, we do it now, i.e. 627 // just before we know we will collapse the chain. The instructions 628 // can be executed before any of the instructions in the chain. 629 const auto ToSplit = llvm::find_if( 630 Comparisons, [](const BCECmpBlock &B) { return B.RequireSplit; }); 631 if (ToSplit != Comparisons.end()) { 632 LLVM_DEBUG(dbgs() << "Splitting non_BCE work to header\n"); 633 ToSplit->split(BB, AA); 634 } 635 636 if (Comparisons.size() == 1) { 637 LLVM_DEBUG(dbgs() << "Only one comparison, updating branches\n"); 638 Value *const LhsLoad = 639 Builder.CreateLoad(FirstCmp.Lhs().LoadI->getType(), Lhs); 640 Value *const RhsLoad = 641 Builder.CreateLoad(FirstCmp.Rhs().LoadI->getType(), Rhs); 642 // There are no blocks to merge, just do the comparison. 643 IsEqual = Builder.CreateICmpEQ(LhsLoad, RhsLoad); 644 } else { 645 const unsigned TotalSizeBits = std::accumulate( 646 Comparisons.begin(), Comparisons.end(), 0u, 647 [](int Size, const BCECmpBlock &C) { return Size + C.SizeBits(); }); 648 649 // Create memcmp() == 0. 650 const auto &DL = Phi.getModule()->getDataLayout(); 651 Value *const MemCmpCall = emitMemCmp( 652 Lhs, Rhs, 653 ConstantInt::get(DL.getIntPtrType(Context), TotalSizeBits / 8), Builder, 654 DL, &TLI); 655 IsEqual = Builder.CreateICmpEQ( 656 MemCmpCall, ConstantInt::get(Type::getInt32Ty(Context), 0)); 657 } 658 659 BasicBlock *const PhiBB = Phi.getParent(); 660 // Add a branch to the next basic block in the chain. 661 if (NextCmpBlock == PhiBB) { 662 // Continue to phi, passing it the comparison result. 663 Builder.CreateBr(PhiBB); 664 Phi.addIncoming(IsEqual, BB); 665 DTU.applyUpdates({{DominatorTree::Insert, BB, PhiBB}}); 666 } else { 667 // Continue to next block if equal, exit to phi else. 668 Builder.CreateCondBr(IsEqual, NextCmpBlock, PhiBB); 669 Phi.addIncoming(ConstantInt::getFalse(Context), BB); 670 DTU.applyUpdates({{DominatorTree::Insert, BB, NextCmpBlock}, 671 {DominatorTree::Insert, BB, PhiBB}}); 672 } 673 return BB; 674 } 675 676 bool BCECmpChain::simplify(const TargetLibraryInfo &TLI, AliasAnalysis &AA, 677 DomTreeUpdater &DTU) { 678 assert(atLeastOneMerged() && "simplifying trivial BCECmpChain"); 679 LLVM_DEBUG(dbgs() << "Simplifying comparison chain starting at block " 680 << EntryBlock_->getName() << "\n"); 681 682 // Effectively merge blocks. We go in the reverse direction from the phi block 683 // so that the next block is always available to branch to. 684 BasicBlock *InsertBefore = EntryBlock_; 685 BasicBlock *NextCmpBlock = Phi_.getParent(); 686 for (const auto &Blocks : reverse(MergedBlocks_)) { 687 InsertBefore = NextCmpBlock = mergeComparisons( 688 Blocks, InsertBefore, NextCmpBlock, Phi_, TLI, AA, DTU); 689 } 690 691 // Replace the original cmp chain with the new cmp chain by pointing all 692 // predecessors of EntryBlock_ to NextCmpBlock instead. This makes all cmp 693 // blocks in the old chain unreachable. 694 while (!pred_empty(EntryBlock_)) { 695 BasicBlock* const Pred = *pred_begin(EntryBlock_); 696 LLVM_DEBUG(dbgs() << "Updating jump into old chain from " << Pred->getName() 697 << "\n"); 698 Pred->getTerminator()->replaceUsesOfWith(EntryBlock_, NextCmpBlock); 699 DTU.applyUpdates({{DominatorTree::Delete, Pred, EntryBlock_}, 700 {DominatorTree::Insert, Pred, NextCmpBlock}}); 701 } 702 703 // If the old cmp chain was the function entry, we need to update the function 704 // entry. 705 const bool ChainEntryIsFnEntry = EntryBlock_->isEntryBlock(); 706 if (ChainEntryIsFnEntry && DTU.hasDomTree()) { 707 LLVM_DEBUG(dbgs() << "Changing function entry from " 708 << EntryBlock_->getName() << " to " 709 << NextCmpBlock->getName() << "\n"); 710 DTU.getDomTree().setNewRoot(NextCmpBlock); 711 DTU.applyUpdates({{DominatorTree::Delete, NextCmpBlock, EntryBlock_}}); 712 } 713 EntryBlock_ = nullptr; 714 715 // Delete merged blocks. This also removes incoming values in phi. 716 SmallVector<BasicBlock *, 16> DeadBlocks; 717 for (const auto &Blocks : MergedBlocks_) { 718 for (const BCECmpBlock &Block : Blocks) { 719 LLVM_DEBUG(dbgs() << "Deleting merged block " << Block.BB->getName() 720 << "\n"); 721 DeadBlocks.push_back(Block.BB); 722 } 723 } 724 DeleteDeadBlocks(DeadBlocks, &DTU); 725 726 MergedBlocks_.clear(); 727 return true; 728 } 729 730 std::vector<BasicBlock *> getOrderedBlocks(PHINode &Phi, 731 BasicBlock *const LastBlock, 732 int NumBlocks) { 733 // Walk up from the last block to find other blocks. 734 std::vector<BasicBlock *> Blocks(NumBlocks); 735 assert(LastBlock && "invalid last block"); 736 BasicBlock *CurBlock = LastBlock; 737 for (int BlockIndex = NumBlocks - 1; BlockIndex > 0; --BlockIndex) { 738 if (CurBlock->hasAddressTaken()) { 739 // Somebody is jumping to the block through an address, all bets are 740 // off. 741 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex 742 << " has its address taken\n"); 743 return {}; 744 } 745 Blocks[BlockIndex] = CurBlock; 746 auto *SinglePredecessor = CurBlock->getSinglePredecessor(); 747 if (!SinglePredecessor) { 748 // The block has two or more predecessors. 749 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex 750 << " has two or more predecessors\n"); 751 return {}; 752 } 753 if (Phi.getBasicBlockIndex(SinglePredecessor) < 0) { 754 // The block does not link back to the phi. 755 LLVM_DEBUG(dbgs() << "skip: block " << BlockIndex 756 << " does not link back to the phi\n"); 757 return {}; 758 } 759 CurBlock = SinglePredecessor; 760 } 761 Blocks[0] = CurBlock; 762 return Blocks; 763 } 764 765 bool processPhi(PHINode &Phi, const TargetLibraryInfo &TLI, AliasAnalysis &AA, 766 DomTreeUpdater &DTU) { 767 LLVM_DEBUG(dbgs() << "processPhi()\n"); 768 if (Phi.getNumIncomingValues() <= 1) { 769 LLVM_DEBUG(dbgs() << "skip: only one incoming value in phi\n"); 770 return false; 771 } 772 // We are looking for something that has the following structure: 773 // bb1 --eq--> bb2 --eq--> bb3 --eq--> bb4 --+ 774 // \ \ \ \ 775 // ne ne ne \ 776 // \ \ \ v 777 // +------------+-----------+----------> bb_phi 778 // 779 // - The last basic block (bb4 here) must branch unconditionally to bb_phi. 780 // It's the only block that contributes a non-constant value to the Phi. 781 // - All other blocks (b1, b2, b3) must have exactly two successors, one of 782 // them being the phi block. 783 // - All intermediate blocks (bb2, bb3) must have only one predecessor. 784 // - Blocks cannot do other work besides the comparison, see doesOtherWork() 785 786 // The blocks are not necessarily ordered in the phi, so we start from the 787 // last block and reconstruct the order. 788 BasicBlock *LastBlock = nullptr; 789 for (unsigned I = 0; I < Phi.getNumIncomingValues(); ++I) { 790 if (isa<ConstantInt>(Phi.getIncomingValue(I))) continue; 791 if (LastBlock) { 792 // There are several non-constant values. 793 LLVM_DEBUG(dbgs() << "skip: several non-constant values\n"); 794 return false; 795 } 796 if (!isa<ICmpInst>(Phi.getIncomingValue(I)) || 797 cast<ICmpInst>(Phi.getIncomingValue(I))->getParent() != 798 Phi.getIncomingBlock(I)) { 799 // Non-constant incoming value is not from a cmp instruction or not 800 // produced by the last block. We could end up processing the value 801 // producing block more than once. 802 // 803 // This is an uncommon case, so we bail. 804 LLVM_DEBUG( 805 dbgs() 806 << "skip: non-constant value not from cmp or not from last block.\n"); 807 return false; 808 } 809 LastBlock = Phi.getIncomingBlock(I); 810 } 811 if (!LastBlock) { 812 // There is no non-constant block. 813 LLVM_DEBUG(dbgs() << "skip: no non-constant block\n"); 814 return false; 815 } 816 if (LastBlock->getSingleSuccessor() != Phi.getParent()) { 817 LLVM_DEBUG(dbgs() << "skip: last block non-phi successor\n"); 818 return false; 819 } 820 821 const auto Blocks = 822 getOrderedBlocks(Phi, LastBlock, Phi.getNumIncomingValues()); 823 if (Blocks.empty()) return false; 824 BCECmpChain CmpChain(Blocks, Phi, AA); 825 826 if (!CmpChain.atLeastOneMerged()) { 827 LLVM_DEBUG(dbgs() << "skip: nothing merged\n"); 828 return false; 829 } 830 831 return CmpChain.simplify(TLI, AA, DTU); 832 } 833 834 static bool runImpl(Function &F, const TargetLibraryInfo &TLI, 835 const TargetTransformInfo &TTI, AliasAnalysis &AA, 836 DominatorTree *DT) { 837 LLVM_DEBUG(dbgs() << "MergeICmpsLegacyPass: " << F.getName() << "\n"); 838 839 // We only try merging comparisons if the target wants to expand memcmp later. 840 // The rationale is to avoid turning small chains into memcmp calls. 841 if (!TTI.enableMemCmpExpansion(F.hasOptSize(), true)) 842 return false; 843 844 // If we don't have memcmp avaiable we can't emit calls to it. 845 if (!TLI.has(LibFunc_memcmp)) 846 return false; 847 848 DomTreeUpdater DTU(DT, /*PostDominatorTree*/ nullptr, 849 DomTreeUpdater::UpdateStrategy::Eager); 850 851 bool MadeChange = false; 852 853 for (BasicBlock &BB : llvm::drop_begin(F)) { 854 // A Phi operation is always first in a basic block. 855 if (auto *const Phi = dyn_cast<PHINode>(&*BB.begin())) 856 MadeChange |= processPhi(*Phi, TLI, AA, DTU); 857 } 858 859 return MadeChange; 860 } 861 862 class MergeICmpsLegacyPass : public FunctionPass { 863 public: 864 static char ID; 865 866 MergeICmpsLegacyPass() : FunctionPass(ID) { 867 initializeMergeICmpsLegacyPassPass(*PassRegistry::getPassRegistry()); 868 } 869 870 bool runOnFunction(Function &F) override { 871 if (skipFunction(F)) return false; 872 const auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F); 873 const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F); 874 // MergeICmps does not need the DominatorTree, but we update it if it's 875 // already available. 876 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); 877 auto &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); 878 return runImpl(F, TLI, TTI, AA, DTWP ? &DTWP->getDomTree() : nullptr); 879 } 880 881 private: 882 void getAnalysisUsage(AnalysisUsage &AU) const override { 883 AU.addRequired<TargetLibraryInfoWrapperPass>(); 884 AU.addRequired<TargetTransformInfoWrapperPass>(); 885 AU.addRequired<AAResultsWrapperPass>(); 886 AU.addPreserved<GlobalsAAWrapperPass>(); 887 AU.addPreserved<DominatorTreeWrapperPass>(); 888 } 889 }; 890 891 } // namespace 892 893 char MergeICmpsLegacyPass::ID = 0; 894 INITIALIZE_PASS_BEGIN(MergeICmpsLegacyPass, "mergeicmps", 895 "Merge contiguous icmps into a memcmp", false, false) 896 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) 897 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) 898 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) 899 INITIALIZE_PASS_END(MergeICmpsLegacyPass, "mergeicmps", 900 "Merge contiguous icmps into a memcmp", false, false) 901 902 Pass *llvm::createMergeICmpsLegacyPass() { return new MergeICmpsLegacyPass(); } 903 904 PreservedAnalyses MergeICmpsPass::run(Function &F, 905 FunctionAnalysisManager &AM) { 906 auto &TLI = AM.getResult<TargetLibraryAnalysis>(F); 907 auto &TTI = AM.getResult<TargetIRAnalysis>(F); 908 auto &AA = AM.getResult<AAManager>(F); 909 auto *DT = AM.getCachedResult<DominatorTreeAnalysis>(F); 910 const bool MadeChanges = runImpl(F, TLI, TTI, AA, DT); 911 if (!MadeChanges) 912 return PreservedAnalyses::all(); 913 PreservedAnalyses PA; 914 PA.preserve<DominatorTreeAnalysis>(); 915 return PA; 916 } 917