1 //===-- DeadArgumentElimination.cpp - Eliminate dead arguments ------------===// 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 pass deletes dead arguments from internal functions. Dead argument 11 // elimination removes arguments which are directly dead, as well as arguments 12 // only passed into function calls as dead arguments of other functions. This 13 // pass also deletes dead return values in a similar way. 14 // 15 // This pass is often useful as a cleanup pass to run after aggressive 16 // interprocedural passes, which add possibly-dead arguments or return values. 17 // 18 //===----------------------------------------------------------------------===// 19 20 #include "llvm/Transforms/IPO/DeadArgumentElimination.h" 21 #include "llvm/ADT/SmallVector.h" 22 #include "llvm/ADT/Statistic.h" 23 #include "llvm/ADT/StringExtras.h" 24 #include "llvm/IR/CallSite.h" 25 #include "llvm/IR/CallingConv.h" 26 #include "llvm/IR/Constant.h" 27 #include "llvm/IR/DIBuilder.h" 28 #include "llvm/IR/DebugInfo.h" 29 #include "llvm/IR/DerivedTypes.h" 30 #include "llvm/IR/Instructions.h" 31 #include "llvm/IR/IntrinsicInst.h" 32 #include "llvm/IR/LLVMContext.h" 33 #include "llvm/IR/Module.h" 34 #include "llvm/Pass.h" 35 #include "llvm/Support/Debug.h" 36 #include "llvm/Support/raw_ostream.h" 37 #include "llvm/Transforms/IPO.h" 38 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 39 #include <set> 40 #include <tuple> 41 using namespace llvm; 42 43 #define DEBUG_TYPE "deadargelim" 44 45 STATISTIC(NumArgumentsEliminated, "Number of unread args removed"); 46 STATISTIC(NumRetValsEliminated , "Number of unused return values removed"); 47 STATISTIC(NumArgumentsReplacedWithUndef, 48 "Number of unread args replaced with undef"); 49 namespace { 50 /// DAE - The dead argument elimination pass. 51 /// 52 class DAE : public ModulePass { 53 protected: 54 // DAH uses this to specify a different ID. 55 explicit DAE(char &ID) : ModulePass(ID) {} 56 57 public: 58 static char ID; // Pass identification, replacement for typeid 59 DAE() : ModulePass(ID) { 60 initializeDAEPass(*PassRegistry::getPassRegistry()); 61 } 62 63 bool runOnModule(Module &M) override { 64 if (skipModule(M)) 65 return false; 66 DeadArgumentEliminationPass DAEP(ShouldHackArguments()); 67 ModuleAnalysisManager DummyMAM; 68 PreservedAnalyses PA = DAEP.run(M, DummyMAM); 69 return !PA.areAllPreserved(); 70 } 71 72 virtual bool ShouldHackArguments() const { return false; } 73 }; 74 } 75 76 77 char DAE::ID = 0; 78 INITIALIZE_PASS(DAE, "deadargelim", "Dead Argument Elimination", false, false) 79 80 namespace { 81 /// DAH - DeadArgumentHacking pass - Same as dead argument elimination, but 82 /// deletes arguments to functions which are external. This is only for use 83 /// by bugpoint. 84 struct DAH : public DAE { 85 static char ID; 86 DAH() : DAE(ID) {} 87 88 bool ShouldHackArguments() const override { return true; } 89 }; 90 } 91 92 char DAH::ID = 0; 93 INITIALIZE_PASS(DAH, "deadarghaX0r", 94 "Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)", 95 false, false) 96 97 /// createDeadArgEliminationPass - This pass removes arguments from functions 98 /// which are not used by the body of the function. 99 /// 100 ModulePass *llvm::createDeadArgEliminationPass() { return new DAE(); } 101 ModulePass *llvm::createDeadArgHackingPass() { return new DAH(); } 102 103 /// DeleteDeadVarargs - If this is an function that takes a ... list, and if 104 /// llvm.vastart is never called, the varargs list is dead for the function. 105 bool DeadArgumentEliminationPass::DeleteDeadVarargs(Function &Fn) { 106 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!"); 107 if (Fn.isDeclaration() || !Fn.hasLocalLinkage()) return false; 108 109 // Ensure that the function is only directly called. 110 if (Fn.hasAddressTaken()) 111 return false; 112 113 // Don't touch naked functions. The assembly might be using an argument, or 114 // otherwise rely on the frame layout in a way that this analysis will not 115 // see. 116 if (Fn.hasFnAttribute(Attribute::Naked)) { 117 return false; 118 } 119 120 // Okay, we know we can transform this function if safe. Scan its body 121 // looking for calls marked musttail or calls to llvm.vastart. 122 for (BasicBlock &BB : Fn) { 123 for (Instruction &I : BB) { 124 CallInst *CI = dyn_cast<CallInst>(&I); 125 if (!CI) 126 continue; 127 if (CI->isMustTailCall()) 128 return false; 129 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI)) { 130 if (II->getIntrinsicID() == Intrinsic::vastart) 131 return false; 132 } 133 } 134 } 135 136 // If we get here, there are no calls to llvm.vastart in the function body, 137 // remove the "..." and adjust all the calls. 138 139 // Start by computing a new prototype for the function, which is the same as 140 // the old function, but doesn't have isVarArg set. 141 FunctionType *FTy = Fn.getFunctionType(); 142 143 std::vector<Type*> Params(FTy->param_begin(), FTy->param_end()); 144 FunctionType *NFTy = FunctionType::get(FTy->getReturnType(), 145 Params, false); 146 unsigned NumArgs = Params.size(); 147 148 // Create the new function body and insert it into the module... 149 Function *NF = Function::Create(NFTy, Fn.getLinkage()); 150 NF->copyAttributesFrom(&Fn); 151 NF->setComdat(Fn.getComdat()); 152 Fn.getParent()->getFunctionList().insert(Fn.getIterator(), NF); 153 NF->takeName(&Fn); 154 155 // Loop over all of the callers of the function, transforming the call sites 156 // to pass in a smaller number of arguments into the new function. 157 // 158 std::vector<Value*> Args; 159 for (Value::user_iterator I = Fn.user_begin(), E = Fn.user_end(); I != E; ) { 160 CallSite CS(*I++); 161 if (!CS) 162 continue; 163 Instruction *Call = CS.getInstruction(); 164 165 // Pass all the same arguments. 166 Args.assign(CS.arg_begin(), CS.arg_begin() + NumArgs); 167 168 // Drop any attributes that were on the vararg arguments. 169 AttributeList PAL = CS.getAttributes(); 170 if (!PAL.isEmpty() && PAL.getSlotIndex(PAL.getNumSlots() - 1) > NumArgs) { 171 SmallVector<AttributeList, 8> AttributesVec; 172 for (unsigned i = 0; PAL.getSlotIndex(i) <= NumArgs; ++i) 173 AttributesVec.push_back(PAL.getSlotAttributes(i)); 174 if (PAL.hasAttributes(AttributeList::FunctionIndex)) 175 AttributesVec.push_back( 176 AttributeList::get(Fn.getContext(), PAL.getFnAttributes())); 177 PAL = AttributeList::get(Fn.getContext(), AttributesVec); 178 } 179 180 SmallVector<OperandBundleDef, 1> OpBundles; 181 CS.getOperandBundlesAsDefs(OpBundles); 182 183 Instruction *New; 184 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) { 185 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(), 186 Args, OpBundles, "", Call); 187 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv()); 188 cast<InvokeInst>(New)->setAttributes(PAL); 189 } else { 190 New = CallInst::Create(NF, Args, OpBundles, "", Call); 191 cast<CallInst>(New)->setCallingConv(CS.getCallingConv()); 192 cast<CallInst>(New)->setAttributes(PAL); 193 cast<CallInst>(New)->setTailCallKind( 194 cast<CallInst>(Call)->getTailCallKind()); 195 } 196 New->setDebugLoc(Call->getDebugLoc()); 197 uint64_t W; 198 if (Call->extractProfTotalWeight(W)) 199 New->setProfWeight(W); 200 201 Args.clear(); 202 203 if (!Call->use_empty()) 204 Call->replaceAllUsesWith(New); 205 206 New->takeName(Call); 207 208 // Finally, remove the old call from the program, reducing the use-count of 209 // F. 210 Call->eraseFromParent(); 211 } 212 213 // Since we have now created the new function, splice the body of the old 214 // function right into the new function, leaving the old rotting hulk of the 215 // function empty. 216 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList()); 217 218 // Loop over the argument list, transferring uses of the old arguments over to 219 // the new arguments, also transferring over the names as well. While we're at 220 // it, remove the dead arguments from the DeadArguments list. 221 // 222 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end(), 223 I2 = NF->arg_begin(); I != E; ++I, ++I2) { 224 // Move the name and users over to the new version. 225 I->replaceAllUsesWith(&*I2); 226 I2->takeName(&*I); 227 } 228 229 // Patch the pointer to LLVM function in debug info descriptor. 230 NF->setSubprogram(Fn.getSubprogram()); 231 232 // Fix up any BlockAddresses that refer to the function. 233 Fn.replaceAllUsesWith(ConstantExpr::getBitCast(NF, Fn.getType())); 234 // Delete the bitcast that we just created, so that NF does not 235 // appear to be address-taken. 236 NF->removeDeadConstantUsers(); 237 // Finally, nuke the old function. 238 Fn.eraseFromParent(); 239 return true; 240 } 241 242 /// RemoveDeadArgumentsFromCallers - Checks if the given function has any 243 /// arguments that are unused, and changes the caller parameters to be undefined 244 /// instead. 245 bool DeadArgumentEliminationPass::RemoveDeadArgumentsFromCallers(Function &Fn) { 246 // We cannot change the arguments if this TU does not define the function or 247 // if the linker may choose a function body from another TU, even if the 248 // nominal linkage indicates that other copies of the function have the same 249 // semantics. In the below example, the dead load from %p may not have been 250 // eliminated from the linker-chosen copy of f, so replacing %p with undef 251 // in callers may introduce undefined behavior. 252 // 253 // define linkonce_odr void @f(i32* %p) { 254 // %v = load i32 %p 255 // ret void 256 // } 257 if (!Fn.hasExactDefinition()) 258 return false; 259 260 // Functions with local linkage should already have been handled, except the 261 // fragile (variadic) ones which we can improve here. 262 if (Fn.hasLocalLinkage() && !Fn.getFunctionType()->isVarArg()) 263 return false; 264 265 // Don't touch naked functions. The assembly might be using an argument, or 266 // otherwise rely on the frame layout in a way that this analysis will not 267 // see. 268 if (Fn.hasFnAttribute(Attribute::Naked)) 269 return false; 270 271 if (Fn.use_empty()) 272 return false; 273 274 SmallVector<unsigned, 8> UnusedArgs; 275 for (Argument &Arg : Fn.args()) { 276 if (!Arg.hasSwiftErrorAttr() && Arg.use_empty() && !Arg.hasByValOrInAllocaAttr()) 277 UnusedArgs.push_back(Arg.getArgNo()); 278 } 279 280 if (UnusedArgs.empty()) 281 return false; 282 283 bool Changed = false; 284 285 for (Use &U : Fn.uses()) { 286 CallSite CS(U.getUser()); 287 if (!CS || !CS.isCallee(&U)) 288 continue; 289 290 // Now go through all unused args and replace them with "undef". 291 for (unsigned I = 0, E = UnusedArgs.size(); I != E; ++I) { 292 unsigned ArgNo = UnusedArgs[I]; 293 294 Value *Arg = CS.getArgument(ArgNo); 295 CS.setArgument(ArgNo, UndefValue::get(Arg->getType())); 296 ++NumArgumentsReplacedWithUndef; 297 Changed = true; 298 } 299 } 300 301 return Changed; 302 } 303 304 /// Convenience function that returns the number of return values. It returns 0 305 /// for void functions and 1 for functions not returning a struct. It returns 306 /// the number of struct elements for functions returning a struct. 307 static unsigned NumRetVals(const Function *F) { 308 Type *RetTy = F->getReturnType(); 309 if (RetTy->isVoidTy()) 310 return 0; 311 else if (StructType *STy = dyn_cast<StructType>(RetTy)) 312 return STy->getNumElements(); 313 else if (ArrayType *ATy = dyn_cast<ArrayType>(RetTy)) 314 return ATy->getNumElements(); 315 else 316 return 1; 317 } 318 319 /// Returns the sub-type a function will return at a given Idx. Should 320 /// correspond to the result type of an ExtractValue instruction executed with 321 /// just that one Idx (i.e. only top-level structure is considered). 322 static Type *getRetComponentType(const Function *F, unsigned Idx) { 323 Type *RetTy = F->getReturnType(); 324 assert(!RetTy->isVoidTy() && "void type has no subtype"); 325 326 if (StructType *STy = dyn_cast<StructType>(RetTy)) 327 return STy->getElementType(Idx); 328 else if (ArrayType *ATy = dyn_cast<ArrayType>(RetTy)) 329 return ATy->getElementType(); 330 else 331 return RetTy; 332 } 333 334 /// MarkIfNotLive - This checks Use for liveness in LiveValues. If Use is not 335 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined 336 /// liveness of Use. 337 DeadArgumentEliminationPass::Liveness 338 DeadArgumentEliminationPass::MarkIfNotLive(RetOrArg Use, 339 UseVector &MaybeLiveUses) { 340 // We're live if our use or its Function is already marked as live. 341 if (LiveFunctions.count(Use.F) || LiveValues.count(Use)) 342 return Live; 343 344 // We're maybe live otherwise, but remember that we must become live if 345 // Use becomes live. 346 MaybeLiveUses.push_back(Use); 347 return MaybeLive; 348 } 349 350 351 /// SurveyUse - This looks at a single use of an argument or return value 352 /// and determines if it should be alive or not. Adds this use to MaybeLiveUses 353 /// if it causes the used value to become MaybeLive. 354 /// 355 /// RetValNum is the return value number to use when this use is used in a 356 /// return instruction. This is used in the recursion, you should always leave 357 /// it at 0. 358 DeadArgumentEliminationPass::Liveness 359 DeadArgumentEliminationPass::SurveyUse(const Use *U, UseVector &MaybeLiveUses, 360 unsigned RetValNum) { 361 const User *V = U->getUser(); 362 if (const ReturnInst *RI = dyn_cast<ReturnInst>(V)) { 363 // The value is returned from a function. It's only live when the 364 // function's return value is live. We use RetValNum here, for the case 365 // that U is really a use of an insertvalue instruction that uses the 366 // original Use. 367 const Function *F = RI->getParent()->getParent(); 368 if (RetValNum != -1U) { 369 RetOrArg Use = CreateRet(F, RetValNum); 370 // We might be live, depending on the liveness of Use. 371 return MarkIfNotLive(Use, MaybeLiveUses); 372 } else { 373 DeadArgumentEliminationPass::Liveness Result = MaybeLive; 374 for (unsigned i = 0; i < NumRetVals(F); ++i) { 375 RetOrArg Use = CreateRet(F, i); 376 // We might be live, depending on the liveness of Use. If any 377 // sub-value is live, then the entire value is considered live. This 378 // is a conservative choice, and better tracking is possible. 379 DeadArgumentEliminationPass::Liveness SubResult = 380 MarkIfNotLive(Use, MaybeLiveUses); 381 if (Result != Live) 382 Result = SubResult; 383 } 384 return Result; 385 } 386 } 387 if (const InsertValueInst *IV = dyn_cast<InsertValueInst>(V)) { 388 if (U->getOperandNo() != InsertValueInst::getAggregateOperandIndex() 389 && IV->hasIndices()) 390 // The use we are examining is inserted into an aggregate. Our liveness 391 // depends on all uses of that aggregate, but if it is used as a return 392 // value, only index at which we were inserted counts. 393 RetValNum = *IV->idx_begin(); 394 395 // Note that if we are used as the aggregate operand to the insertvalue, 396 // we don't change RetValNum, but do survey all our uses. 397 398 Liveness Result = MaybeLive; 399 for (const Use &UU : IV->uses()) { 400 Result = SurveyUse(&UU, MaybeLiveUses, RetValNum); 401 if (Result == Live) 402 break; 403 } 404 return Result; 405 } 406 407 if (auto CS = ImmutableCallSite(V)) { 408 const Function *F = CS.getCalledFunction(); 409 if (F) { 410 // Used in a direct call. 411 412 // The function argument is live if it is used as a bundle operand. 413 if (CS.isBundleOperand(U)) 414 return Live; 415 416 // Find the argument number. We know for sure that this use is an 417 // argument, since if it was the function argument this would be an 418 // indirect call and the we know can't be looking at a value of the 419 // label type (for the invoke instruction). 420 unsigned ArgNo = CS.getArgumentNo(U); 421 422 if (ArgNo >= F->getFunctionType()->getNumParams()) 423 // The value is passed in through a vararg! Must be live. 424 return Live; 425 426 assert(CS.getArgument(ArgNo) 427 == CS->getOperand(U->getOperandNo()) 428 && "Argument is not where we expected it"); 429 430 // Value passed to a normal call. It's only live when the corresponding 431 // argument to the called function turns out live. 432 RetOrArg Use = CreateArg(F, ArgNo); 433 return MarkIfNotLive(Use, MaybeLiveUses); 434 } 435 } 436 // Used in any other way? Value must be live. 437 return Live; 438 } 439 440 /// SurveyUses - This looks at all the uses of the given value 441 /// Returns the Liveness deduced from the uses of this value. 442 /// 443 /// Adds all uses that cause the result to be MaybeLive to MaybeLiveRetUses. If 444 /// the result is Live, MaybeLiveUses might be modified but its content should 445 /// be ignored (since it might not be complete). 446 DeadArgumentEliminationPass::Liveness 447 DeadArgumentEliminationPass::SurveyUses(const Value *V, 448 UseVector &MaybeLiveUses) { 449 // Assume it's dead (which will only hold if there are no uses at all..). 450 Liveness Result = MaybeLive; 451 // Check each use. 452 for (const Use &U : V->uses()) { 453 Result = SurveyUse(&U, MaybeLiveUses); 454 if (Result == Live) 455 break; 456 } 457 return Result; 458 } 459 460 // SurveyFunction - This performs the initial survey of the specified function, 461 // checking out whether or not it uses any of its incoming arguments or whether 462 // any callers use the return value. This fills in the LiveValues set and Uses 463 // map. 464 // 465 // We consider arguments of non-internal functions to be intrinsically alive as 466 // well as arguments to functions which have their "address taken". 467 // 468 void DeadArgumentEliminationPass::SurveyFunction(const Function &F) { 469 // Functions with inalloca parameters are expecting args in a particular 470 // register and memory layout. 471 if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca)) { 472 MarkLive(F); 473 return; 474 } 475 476 // Don't touch naked functions. The assembly might be using an argument, or 477 // otherwise rely on the frame layout in a way that this analysis will not 478 // see. 479 if (F.hasFnAttribute(Attribute::Naked)) { 480 MarkLive(F); 481 return; 482 } 483 484 unsigned RetCount = NumRetVals(&F); 485 // Assume all return values are dead 486 typedef SmallVector<Liveness, 5> RetVals; 487 RetVals RetValLiveness(RetCount, MaybeLive); 488 489 typedef SmallVector<UseVector, 5> RetUses; 490 // These vectors map each return value to the uses that make it MaybeLive, so 491 // we can add those to the Uses map if the return value really turns out to be 492 // MaybeLive. Initialized to a list of RetCount empty lists. 493 RetUses MaybeLiveRetUses(RetCount); 494 495 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB) 496 if (const ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) 497 if (RI->getNumOperands() != 0 && RI->getOperand(0)->getType() 498 != F.getFunctionType()->getReturnType()) { 499 // We don't support old style multiple return values. 500 MarkLive(F); 501 return; 502 } 503 504 if (!F.hasLocalLinkage() && (!ShouldHackArguments || F.isIntrinsic())) { 505 MarkLive(F); 506 return; 507 } 508 509 DEBUG(dbgs() << "DeadArgumentEliminationPass - Inspecting callers for fn: " 510 << F.getName() << "\n"); 511 // Keep track of the number of live retvals, so we can skip checks once all 512 // of them turn out to be live. 513 unsigned NumLiveRetVals = 0; 514 // Loop all uses of the function. 515 for (const Use &U : F.uses()) { 516 // If the function is PASSED IN as an argument, its address has been 517 // taken. 518 ImmutableCallSite CS(U.getUser()); 519 if (!CS || !CS.isCallee(&U)) { 520 MarkLive(F); 521 return; 522 } 523 524 // If this use is anything other than a call site, the function is alive. 525 const Instruction *TheCall = CS.getInstruction(); 526 if (!TheCall) { // Not a direct call site? 527 MarkLive(F); 528 return; 529 } 530 531 // If we end up here, we are looking at a direct call to our function. 532 533 // Now, check how our return value(s) is/are used in this caller. Don't 534 // bother checking return values if all of them are live already. 535 if (NumLiveRetVals == RetCount) 536 continue; 537 538 // Check all uses of the return value. 539 for (const Use &U : TheCall->uses()) { 540 if (ExtractValueInst *Ext = dyn_cast<ExtractValueInst>(U.getUser())) { 541 // This use uses a part of our return value, survey the uses of 542 // that part and store the results for this index only. 543 unsigned Idx = *Ext->idx_begin(); 544 if (RetValLiveness[Idx] != Live) { 545 RetValLiveness[Idx] = SurveyUses(Ext, MaybeLiveRetUses[Idx]); 546 if (RetValLiveness[Idx] == Live) 547 NumLiveRetVals++; 548 } 549 } else { 550 // Used by something else than extractvalue. Survey, but assume that the 551 // result applies to all sub-values. 552 UseVector MaybeLiveAggregateUses; 553 if (SurveyUse(&U, MaybeLiveAggregateUses) == Live) { 554 NumLiveRetVals = RetCount; 555 RetValLiveness.assign(RetCount, Live); 556 break; 557 } else { 558 for (unsigned i = 0; i != RetCount; ++i) { 559 if (RetValLiveness[i] != Live) 560 MaybeLiveRetUses[i].append(MaybeLiveAggregateUses.begin(), 561 MaybeLiveAggregateUses.end()); 562 } 563 } 564 } 565 } 566 } 567 568 // Now we've inspected all callers, record the liveness of our return values. 569 for (unsigned i = 0; i != RetCount; ++i) 570 MarkValue(CreateRet(&F, i), RetValLiveness[i], MaybeLiveRetUses[i]); 571 572 DEBUG(dbgs() << "DeadArgumentEliminationPass - Inspecting args for fn: " 573 << F.getName() << "\n"); 574 575 // Now, check all of our arguments. 576 unsigned i = 0; 577 UseVector MaybeLiveArgUses; 578 for (Function::const_arg_iterator AI = F.arg_begin(), 579 E = F.arg_end(); AI != E; ++AI, ++i) { 580 Liveness Result; 581 if (F.getFunctionType()->isVarArg()) { 582 // Variadic functions will already have a va_arg function expanded inside 583 // them, making them potentially very sensitive to ABI changes resulting 584 // from removing arguments entirely, so don't. For example AArch64 handles 585 // register and stack HFAs very differently, and this is reflected in the 586 // IR which has already been generated. 587 Result = Live; 588 } else { 589 // See what the effect of this use is (recording any uses that cause 590 // MaybeLive in MaybeLiveArgUses). 591 Result = SurveyUses(&*AI, MaybeLiveArgUses); 592 } 593 594 // Mark the result. 595 MarkValue(CreateArg(&F, i), Result, MaybeLiveArgUses); 596 // Clear the vector again for the next iteration. 597 MaybeLiveArgUses.clear(); 598 } 599 } 600 601 /// MarkValue - This function marks the liveness of RA depending on L. If L is 602 /// MaybeLive, it also takes all uses in MaybeLiveUses and records them in Uses, 603 /// such that RA will be marked live if any use in MaybeLiveUses gets marked 604 /// live later on. 605 void DeadArgumentEliminationPass::MarkValue(const RetOrArg &RA, Liveness L, 606 const UseVector &MaybeLiveUses) { 607 switch (L) { 608 case Live: MarkLive(RA); break; 609 case MaybeLive: 610 { 611 // Note any uses of this value, so this return value can be 612 // marked live whenever one of the uses becomes live. 613 for (const auto &MaybeLiveUse : MaybeLiveUses) 614 Uses.insert(std::make_pair(MaybeLiveUse, RA)); 615 break; 616 } 617 } 618 } 619 620 /// MarkLive - Mark the given Function as alive, meaning that it cannot be 621 /// changed in any way. Additionally, 622 /// mark any values that are used as this function's parameters or by its return 623 /// values (according to Uses) live as well. 624 void DeadArgumentEliminationPass::MarkLive(const Function &F) { 625 DEBUG(dbgs() << "DeadArgumentEliminationPass - Intrinsically live fn: " 626 << F.getName() << "\n"); 627 // Mark the function as live. 628 LiveFunctions.insert(&F); 629 // Mark all arguments as live. 630 for (unsigned i = 0, e = F.arg_size(); i != e; ++i) 631 PropagateLiveness(CreateArg(&F, i)); 632 // Mark all return values as live. 633 for (unsigned i = 0, e = NumRetVals(&F); i != e; ++i) 634 PropagateLiveness(CreateRet(&F, i)); 635 } 636 637 /// MarkLive - Mark the given return value or argument as live. Additionally, 638 /// mark any values that are used by this value (according to Uses) live as 639 /// well. 640 void DeadArgumentEliminationPass::MarkLive(const RetOrArg &RA) { 641 if (LiveFunctions.count(RA.F)) 642 return; // Function was already marked Live. 643 644 if (!LiveValues.insert(RA).second) 645 return; // We were already marked Live. 646 647 DEBUG(dbgs() << "DeadArgumentEliminationPass - Marking " 648 << RA.getDescription() << " live\n"); 649 PropagateLiveness(RA); 650 } 651 652 /// PropagateLiveness - Given that RA is a live value, propagate it's liveness 653 /// to any other values it uses (according to Uses). 654 void DeadArgumentEliminationPass::PropagateLiveness(const RetOrArg &RA) { 655 // We don't use upper_bound (or equal_range) here, because our recursive call 656 // to ourselves is likely to cause the upper_bound (which is the first value 657 // not belonging to RA) to become erased and the iterator invalidated. 658 UseMap::iterator Begin = Uses.lower_bound(RA); 659 UseMap::iterator E = Uses.end(); 660 UseMap::iterator I; 661 for (I = Begin; I != E && I->first == RA; ++I) 662 MarkLive(I->second); 663 664 // Erase RA from the Uses map (from the lower bound to wherever we ended up 665 // after the loop). 666 Uses.erase(Begin, I); 667 } 668 669 // RemoveDeadStuffFromFunction - Remove any arguments and return values from F 670 // that are not in LiveValues. Transform the function and all of the callees of 671 // the function to not have these arguments and return values. 672 // 673 bool DeadArgumentEliminationPass::RemoveDeadStuffFromFunction(Function *F) { 674 // Don't modify fully live functions 675 if (LiveFunctions.count(F)) 676 return false; 677 678 // Start by computing a new prototype for the function, which is the same as 679 // the old function, but has fewer arguments and a different return type. 680 FunctionType *FTy = F->getFunctionType(); 681 std::vector<Type*> Params; 682 683 // Keep track of if we have a live 'returned' argument 684 bool HasLiveReturnedArg = false; 685 686 // Set up to build a new list of parameter attributes. 687 SmallVector<AttributeList, 8> AttributesVec; 688 const AttributeList &PAL = F->getAttributes(); 689 690 // Remember which arguments are still alive. 691 SmallVector<bool, 10> ArgAlive(FTy->getNumParams(), false); 692 // Construct the new parameter list from non-dead arguments. Also construct 693 // a new set of parameter attributes to correspond. Skip the first parameter 694 // attribute, since that belongs to the return value. 695 unsigned i = 0; 696 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); 697 I != E; ++I, ++i) { 698 RetOrArg Arg = CreateArg(F, i); 699 if (LiveValues.erase(Arg)) { 700 Params.push_back(I->getType()); 701 ArgAlive[i] = true; 702 703 // Get the original parameter attributes (skipping the first one, that is 704 // for the return value. 705 if (PAL.hasAttributes(i + 1)) { 706 AttrBuilder B(PAL, i + 1); 707 if (B.contains(Attribute::Returned)) 708 HasLiveReturnedArg = true; 709 AttributesVec.push_back( 710 AttributeList::get(F->getContext(), Params.size(), B)); 711 } 712 } else { 713 ++NumArgumentsEliminated; 714 DEBUG(dbgs() << "DeadArgumentEliminationPass - Removing argument " << i 715 << " (" << I->getName() << ") from " << F->getName() 716 << "\n"); 717 } 718 } 719 720 // Find out the new return value. 721 Type *RetTy = FTy->getReturnType(); 722 Type *NRetTy = nullptr; 723 unsigned RetCount = NumRetVals(F); 724 725 // -1 means unused, other numbers are the new index 726 SmallVector<int, 5> NewRetIdxs(RetCount, -1); 727 std::vector<Type*> RetTypes; 728 729 // If there is a function with a live 'returned' argument but a dead return 730 // value, then there are two possible actions: 731 // 1) Eliminate the return value and take off the 'returned' attribute on the 732 // argument. 733 // 2) Retain the 'returned' attribute and treat the return value (but not the 734 // entire function) as live so that it is not eliminated. 735 // 736 // It's not clear in the general case which option is more profitable because, 737 // even in the absence of explicit uses of the return value, code generation 738 // is free to use the 'returned' attribute to do things like eliding 739 // save/restores of registers across calls. Whether or not this happens is 740 // target and ABI-specific as well as depending on the amount of register 741 // pressure, so there's no good way for an IR-level pass to figure this out. 742 // 743 // Fortunately, the only places where 'returned' is currently generated by 744 // the FE are places where 'returned' is basically free and almost always a 745 // performance win, so the second option can just be used always for now. 746 // 747 // This should be revisited if 'returned' is ever applied more liberally. 748 if (RetTy->isVoidTy() || HasLiveReturnedArg) { 749 NRetTy = RetTy; 750 } else { 751 // Look at each of the original return values individually. 752 for (unsigned i = 0; i != RetCount; ++i) { 753 RetOrArg Ret = CreateRet(F, i); 754 if (LiveValues.erase(Ret)) { 755 RetTypes.push_back(getRetComponentType(F, i)); 756 NewRetIdxs[i] = RetTypes.size() - 1; 757 } else { 758 ++NumRetValsEliminated; 759 DEBUG(dbgs() << "DeadArgumentEliminationPass - Removing return value " 760 << i << " from " << F->getName() << "\n"); 761 } 762 } 763 if (RetTypes.size() > 1) { 764 // More than one return type? Reduce it down to size. 765 if (StructType *STy = dyn_cast<StructType>(RetTy)) { 766 // Make the new struct packed if we used to return a packed struct 767 // already. 768 NRetTy = StructType::get(STy->getContext(), RetTypes, STy->isPacked()); 769 } else { 770 assert(isa<ArrayType>(RetTy) && "unexpected multi-value return"); 771 NRetTy = ArrayType::get(RetTypes[0], RetTypes.size()); 772 } 773 } else if (RetTypes.size() == 1) 774 // One return type? Just a simple value then, but only if we didn't use to 775 // return a struct with that simple value before. 776 NRetTy = RetTypes.front(); 777 else if (RetTypes.size() == 0) 778 // No return types? Make it void, but only if we didn't use to return {}. 779 NRetTy = Type::getVoidTy(F->getContext()); 780 } 781 782 assert(NRetTy && "No new return type found?"); 783 784 // The existing function return attributes. 785 AttributeList RAttrs = PAL.getRetAttributes(); 786 787 // Remove any incompatible attributes, but only if we removed all return 788 // values. Otherwise, ensure that we don't have any conflicting attributes 789 // here. Currently, this should not be possible, but special handling might be 790 // required when new return value attributes are added. 791 if (NRetTy->isVoidTy()) 792 RAttrs = RAttrs.removeAttributes(NRetTy->getContext(), 793 AttributeList::ReturnIndex, 794 AttributeFuncs::typeIncompatible(NRetTy)); 795 else 796 assert(!AttrBuilder(RAttrs, AttributeList::ReturnIndex) 797 .overlaps(AttributeFuncs::typeIncompatible(NRetTy)) && 798 "Return attributes no longer compatible?"); 799 800 if (RAttrs.hasAttributes(AttributeList::ReturnIndex)) 801 AttributesVec.push_back(AttributeList::get(NRetTy->getContext(), RAttrs)); 802 803 if (PAL.hasAttributes(AttributeList::FunctionIndex)) 804 AttributesVec.push_back( 805 AttributeList::get(F->getContext(), PAL.getFnAttributes())); 806 807 // Reconstruct the AttributesList based on the vector we constructed. 808 AttributeList NewPAL = AttributeList::get(F->getContext(), AttributesVec); 809 810 // Create the new function type based on the recomputed parameters. 811 FunctionType *NFTy = FunctionType::get(NRetTy, Params, FTy->isVarArg()); 812 813 // No change? 814 if (NFTy == FTy) 815 return false; 816 817 // Create the new function body and insert it into the module... 818 Function *NF = Function::Create(NFTy, F->getLinkage()); 819 NF->copyAttributesFrom(F); 820 NF->setComdat(F->getComdat()); 821 NF->setAttributes(NewPAL); 822 // Insert the new function before the old function, so we won't be processing 823 // it again. 824 F->getParent()->getFunctionList().insert(F->getIterator(), NF); 825 NF->takeName(F); 826 827 // Loop over all of the callers of the function, transforming the call sites 828 // to pass in a smaller number of arguments into the new function. 829 // 830 std::vector<Value*> Args; 831 while (!F->use_empty()) { 832 CallSite CS(F->user_back()); 833 Instruction *Call = CS.getInstruction(); 834 835 AttributesVec.clear(); 836 const AttributeList &CallPAL = CS.getAttributes(); 837 838 // The call return attributes. 839 AttributeList RAttrs = CallPAL.getRetAttributes(); 840 841 // Adjust in case the function was changed to return void. 842 RAttrs = RAttrs.removeAttributes( 843 NRetTy->getContext(), AttributeList::ReturnIndex, 844 AttributeFuncs::typeIncompatible(NF->getReturnType())); 845 if (RAttrs.hasAttributes(AttributeList::ReturnIndex)) 846 AttributesVec.push_back(AttributeList::get(NF->getContext(), RAttrs)); 847 848 // Declare these outside of the loops, so we can reuse them for the second 849 // loop, which loops the varargs. 850 CallSite::arg_iterator I = CS.arg_begin(); 851 unsigned i = 0; 852 // Loop over those operands, corresponding to the normal arguments to the 853 // original function, and add those that are still alive. 854 for (unsigned e = FTy->getNumParams(); i != e; ++I, ++i) 855 if (ArgAlive[i]) { 856 Args.push_back(*I); 857 // Get original parameter attributes, but skip return attributes. 858 if (CallPAL.hasAttributes(i + 1)) { 859 AttrBuilder B(CallPAL, i + 1); 860 // If the return type has changed, then get rid of 'returned' on the 861 // call site. The alternative is to make all 'returned' attributes on 862 // call sites keep the return value alive just like 'returned' 863 // attributes on function declaration but it's less clearly a win 864 // and this is not an expected case anyway 865 if (NRetTy != RetTy && B.contains(Attribute::Returned)) 866 B.removeAttribute(Attribute::Returned); 867 AttributesVec.push_back( 868 AttributeList::get(F->getContext(), Args.size(), B)); 869 } 870 } 871 872 // Push any varargs arguments on the list. Don't forget their attributes. 873 for (CallSite::arg_iterator E = CS.arg_end(); I != E; ++I, ++i) { 874 Args.push_back(*I); 875 if (CallPAL.hasAttributes(i + 1)) { 876 AttrBuilder B(CallPAL, i + 1); 877 AttributesVec.push_back( 878 AttributeList::get(F->getContext(), Args.size(), B)); 879 } 880 } 881 882 if (CallPAL.hasAttributes(AttributeList::FunctionIndex)) 883 AttributesVec.push_back( 884 AttributeList::get(Call->getContext(), CallPAL.getFnAttributes())); 885 886 // Reconstruct the AttributesList based on the vector we constructed. 887 AttributeList NewCallPAL = 888 AttributeList::get(F->getContext(), AttributesVec); 889 890 SmallVector<OperandBundleDef, 1> OpBundles; 891 CS.getOperandBundlesAsDefs(OpBundles); 892 893 Instruction *New; 894 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) { 895 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(), 896 Args, OpBundles, "", Call->getParent()); 897 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv()); 898 cast<InvokeInst>(New)->setAttributes(NewCallPAL); 899 } else { 900 New = CallInst::Create(NF, Args, OpBundles, "", Call); 901 cast<CallInst>(New)->setCallingConv(CS.getCallingConv()); 902 cast<CallInst>(New)->setAttributes(NewCallPAL); 903 cast<CallInst>(New)->setTailCallKind( 904 cast<CallInst>(Call)->getTailCallKind()); 905 } 906 New->setDebugLoc(Call->getDebugLoc()); 907 uint64_t W; 908 if (Call->extractProfTotalWeight(W)) 909 New->setProfWeight(W); 910 911 Args.clear(); 912 913 if (!Call->use_empty()) { 914 if (New->getType() == Call->getType()) { 915 // Return type not changed? Just replace users then. 916 Call->replaceAllUsesWith(New); 917 New->takeName(Call); 918 } else if (New->getType()->isVoidTy()) { 919 // Our return value has uses, but they will get removed later on. 920 // Replace by null for now. 921 if (!Call->getType()->isX86_MMXTy()) 922 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType())); 923 } else { 924 assert((RetTy->isStructTy() || RetTy->isArrayTy()) && 925 "Return type changed, but not into a void. The old return type" 926 " must have been a struct or an array!"); 927 Instruction *InsertPt = Call; 928 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) { 929 BasicBlock *NewEdge = SplitEdge(New->getParent(), II->getNormalDest()); 930 InsertPt = &*NewEdge->getFirstInsertionPt(); 931 } 932 933 // We used to return a struct or array. Instead of doing smart stuff 934 // with all the uses, we will just rebuild it using extract/insertvalue 935 // chaining and let instcombine clean that up. 936 // 937 // Start out building up our return value from undef 938 Value *RetVal = UndefValue::get(RetTy); 939 for (unsigned i = 0; i != RetCount; ++i) 940 if (NewRetIdxs[i] != -1) { 941 Value *V; 942 if (RetTypes.size() > 1) 943 // We are still returning a struct, so extract the value from our 944 // return value 945 V = ExtractValueInst::Create(New, NewRetIdxs[i], "newret", 946 InsertPt); 947 else 948 // We are now returning a single element, so just insert that 949 V = New; 950 // Insert the value at the old position 951 RetVal = InsertValueInst::Create(RetVal, V, i, "oldret", InsertPt); 952 } 953 // Now, replace all uses of the old call instruction with the return 954 // struct we built 955 Call->replaceAllUsesWith(RetVal); 956 New->takeName(Call); 957 } 958 } 959 960 // Finally, remove the old call from the program, reducing the use-count of 961 // F. 962 Call->eraseFromParent(); 963 } 964 965 // Since we have now created the new function, splice the body of the old 966 // function right into the new function, leaving the old rotting hulk of the 967 // function empty. 968 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList()); 969 970 // Loop over the argument list, transferring uses of the old arguments over to 971 // the new arguments, also transferring over the names as well. 972 i = 0; 973 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(), 974 I2 = NF->arg_begin(); I != E; ++I, ++i) 975 if (ArgAlive[i]) { 976 // If this is a live argument, move the name and users over to the new 977 // version. 978 I->replaceAllUsesWith(&*I2); 979 I2->takeName(&*I); 980 ++I2; 981 } else { 982 // If this argument is dead, replace any uses of it with null constants 983 // (these are guaranteed to become unused later on). 984 if (!I->getType()->isX86_MMXTy()) 985 I->replaceAllUsesWith(Constant::getNullValue(I->getType())); 986 } 987 988 // If we change the return value of the function we must rewrite any return 989 // instructions. Check this now. 990 if (F->getReturnType() != NF->getReturnType()) 991 for (BasicBlock &BB : *NF) 992 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator())) { 993 Value *RetVal; 994 995 if (NFTy->getReturnType()->isVoidTy()) { 996 RetVal = nullptr; 997 } else { 998 assert(RetTy->isStructTy() || RetTy->isArrayTy()); 999 // The original return value was a struct or array, insert 1000 // extractvalue/insertvalue chains to extract only the values we need 1001 // to return and insert them into our new result. 1002 // This does generate messy code, but we'll let it to instcombine to 1003 // clean that up. 1004 Value *OldRet = RI->getOperand(0); 1005 // Start out building up our return value from undef 1006 RetVal = UndefValue::get(NRetTy); 1007 for (unsigned i = 0; i != RetCount; ++i) 1008 if (NewRetIdxs[i] != -1) { 1009 ExtractValueInst *EV = ExtractValueInst::Create(OldRet, i, 1010 "oldret", RI); 1011 if (RetTypes.size() > 1) { 1012 // We're still returning a struct, so reinsert the value into 1013 // our new return value at the new index 1014 1015 RetVal = InsertValueInst::Create(RetVal, EV, NewRetIdxs[i], 1016 "newret", RI); 1017 } else { 1018 // We are now only returning a simple value, so just return the 1019 // extracted value. 1020 RetVal = EV; 1021 } 1022 } 1023 } 1024 // Replace the return instruction with one returning the new return 1025 // value (possibly 0 if we became void). 1026 ReturnInst::Create(F->getContext(), RetVal, RI); 1027 BB.getInstList().erase(RI); 1028 } 1029 1030 // Patch the pointer to LLVM function in debug info descriptor. 1031 NF->setSubprogram(F->getSubprogram()); 1032 1033 // Now that the old function is dead, delete it. 1034 F->eraseFromParent(); 1035 1036 return true; 1037 } 1038 1039 PreservedAnalyses DeadArgumentEliminationPass::run(Module &M, 1040 ModuleAnalysisManager &) { 1041 bool Changed = false; 1042 1043 // First pass: Do a simple check to see if any functions can have their "..." 1044 // removed. We can do this if they never call va_start. This loop cannot be 1045 // fused with the next loop, because deleting a function invalidates 1046 // information computed while surveying other functions. 1047 DEBUG(dbgs() << "DeadArgumentEliminationPass - Deleting dead varargs\n"); 1048 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) { 1049 Function &F = *I++; 1050 if (F.getFunctionType()->isVarArg()) 1051 Changed |= DeleteDeadVarargs(F); 1052 } 1053 1054 // Second phase:loop through the module, determining which arguments are live. 1055 // We assume all arguments are dead unless proven otherwise (allowing us to 1056 // determine that dead arguments passed into recursive functions are dead). 1057 // 1058 DEBUG(dbgs() << "DeadArgumentEliminationPass - Determining liveness\n"); 1059 for (auto &F : M) 1060 SurveyFunction(F); 1061 1062 // Now, remove all dead arguments and return values from each function in 1063 // turn. 1064 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) { 1065 // Increment now, because the function will probably get removed (ie. 1066 // replaced by a new one). 1067 Function *F = &*I++; 1068 Changed |= RemoveDeadStuffFromFunction(F); 1069 } 1070 1071 // Finally, look for any unused parameters in functions with non-local 1072 // linkage and replace the passed in parameters with undef. 1073 for (auto &F : M) 1074 Changed |= RemoveDeadArgumentsFromCallers(F); 1075 1076 if (!Changed) 1077 return PreservedAnalyses::all(); 1078 return PreservedAnalyses::none(); 1079 } 1080