LLVM 23.0.0git
CallGraphUpdater.cpp
Go to the documentation of this file.
1//===- CallGraphUpdater.cpp - A (lazy) call graph update helper -----------===//
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/// \file
9///
10/// This file provides interfaces used to manipulate a call graph, regardless
11/// if it is a "old style" CallGraph or an "new style" LazyCallGraph.
12///
13//===----------------------------------------------------------------------===//
14
16#include "llvm/IR/Constants.h"
18
19using namespace llvm;
20
22 if (!DeadFunctionsInComdats.empty()) {
23 filterDeadComdatFunctions(DeadFunctionsInComdats);
24 DeadFunctions.append(DeadFunctionsInComdats.begin(),
25 DeadFunctionsInComdats.end());
26 }
27
28 // This is the code path for the new lazy call graph and for the case were
29 // no call graph was provided.
30 for (Function *DeadFn : DeadFunctions) {
31 DeadFn->removeDeadConstantUsers();
32 // If the function is used by metadata, we don't want it to be replaced with
33 // poison in the metadata, so we replace it with nullptr in the metadata
34 // before RAUW'ing the non-metadata uses below.
35 if (DeadFn->isUsedByMetadata())
37 DeadFn->replaceNonMetadataUsesWith(PoisonValue::get(DeadFn->getType()));
38
39 if (LCG && !ReplacedFunctions.count(DeadFn)) {
40 // Taken mostly from the inliner:
41 LazyCallGraph::Node &N = LCG->get(*DeadFn);
42 auto *DeadSCC = LCG->lookupSCC(N);
43 assert(DeadSCC && DeadSCC->size() == 1 &&
44 &DeadSCC->begin()->getFunction() == DeadFn);
45
46 FAM->clear(*DeadFn, DeadFn->getName());
47 AM->clear(*DeadSCC, DeadSCC->getName());
48 LCG->markDeadFunction(*DeadFn);
49
50 // Mark the relevant parts of the call graph as invalid so we don't
51 // visit them.
52 UR->InvalidatedSCCs.insert(LCG->lookupSCC(N));
53 UR->DeadFunctions.push_back(DeadFn);
54 } else {
55 // The CGSCC infrastructure batch deletes functions at the end of the
56 // call graph walk, so only erase the function if we're not using that
57 // infrastructure.
58 // The function is now really dead and de-attached from everything.
59 DeadFn->eraseFromParent();
60 }
61 }
62
63 bool Changed = !DeadFunctions.empty();
64 DeadFunctionsInComdats.clear();
65 DeadFunctions.clear();
66 return Changed;
67}
68
70 if (LCG) {
71 LazyCallGraph::Node &N = LCG->get(Fn);
72 LazyCallGraph::SCC *C = LCG->lookupSCC(N);
73 updateCGAndAnalysisManagerForCGSCCPass(*LCG, *C, N, *AM, *UR, *FAM);
74 }
75}
76
78 Function &NewFn) {
79 if (LCG)
80 LCG->addSplitFunction(OriginalFn, NewFn);
81}
82
84 DeadFn.deleteBody();
86 if (DeadFn.hasComdat())
87 DeadFunctionsInComdats.push_back(&DeadFn);
88 else
89 DeadFunctions.push_back(&DeadFn);
90
91 if (FAM)
92 FAM->clear(DeadFn, DeadFn.getName());
93}
94
97 ReplacedFunctions.insert(&OldFn);
98 if (LCG) {
99 // Directly substitute the functions in the call graph.
100 LazyCallGraph::Node &OldLCGN = LCG->get(OldFn);
101 SCC->getOuterRefSCC().replaceNodeFunction(OldLCGN, NewFn);
102 }
103 removeFunction(OldFn);
104}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file provides interfaces used to manipulate a call graph, regardless if it is a "old style" Call...
This file contains the declarations for the subclasses of Constant, which represent the different fla...
LLVM_ABI void registerOutlinedFunction(Function &OriginalFn, Function &NewFn)
If a new function was created by outlining, this method can be called to update the call graph for th...
LLVM_ABI void removeFunction(Function &Fn)
Remove Fn from the call graph.
LLVM_ABI void replaceFunctionWith(Function &OldFn, Function &NewFn)
Replace OldFn in the call graph (and SCC) with NewFn.
LLVM_ABI void reanalyzeFunction(Function &Fn)
After an CGSCC pass changes a function in ways that affect the call graph, this method can be called ...
LLVM_ABI void removeDeadConstantUsers() const
If there are any dead constant users dangling off of this constant, remove them.
void deleteBody()
deleteBody - This method deletes the body of the function, and converts the linkage to external.
Definition Function.h:732
bool hasComdat() const
void setLinkage(LinkageTypes LT)
@ ExternalLinkage
Externally visible function.
Definition GlobalValue.h:53
A node in the call graph.
An SCC of the call graph.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
static LLVM_ABI void handleDeletion(Value *V)
Definition Metadata.cpp:533
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Definition Value.cpp:318
Changed
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI LazyCallGraph::SCC & updateCGAndAnalysisManagerForCGSCCPass(LazyCallGraph &G, LazyCallGraph::SCC &C, LazyCallGraph::Node &N, CGSCCAnalysisManager &AM, CGSCCUpdateResult &UR, FunctionAnalysisManager &FAM)
Helper to update the call graph after running a CGSCC pass.
LLVM_ABI void filterDeadComdatFunctions(SmallVectorImpl< Function * > &DeadComdatFunctions)
Filter out potentially dead comdat functions where other entries keep the entire comdat group alive.
#define N