43 cl::desc(
"Removes debug compile units which reference "
44 "to non-existing global constants"));
48 for (
User *U : V->users())
56 assert(
C->use_empty() &&
"Constant is not dead!");
62 if (!GV->hasLocalLinkage())
return;
63 GV->eraseFromParent();
64 }
else if (!isa<Function>(
C)) {
66 if (isa<StructType>(
C->getType()) || isa<ArrayType>(
C->getType()) ||
67 isa<VectorType>(
C->getType()))
80 Value *V = VI->getValue();
82 if (!isa<GlobalValue>(V) || cast<GlobalValue>(V)->hasLocalLinkage()) {
83 if (!PreserveDbgInfo || !V->getName().starts_with(
"llvm.dbg"))
93 StructTypes.
run(M,
false);
96 if (STy->isLiteral() || STy->getName().empty())
continue;
98 if (PreserveDbgInfo && STy->getName().starts_with(
"llvm.dbg"))
108 if (!LLVMUsed)
return;
109 UsedValues.
insert(LLVMUsed);
124 findUsedValues(M.getGlobalVariable(
"llvm.compiler.used"), llvmUsedValues);
127 if (GV.hasLocalLinkage() && !llvmUsedValues.
contains(&GV))
128 if (!PreserveDbgInfo || !GV.getName().starts_with(
"llvm.dbg"))
133 if (
I.hasLocalLinkage() && !llvmUsedValues.
contains(&
I))
134 if (!PreserveDbgInfo || !
I.getName().starts_with(
"llvm.dbg"))
136 if (
auto *Symtab =
I.getValueSymbolTable())
149 std::vector<Constant*> DeadConstants;
156 assert(CI->
use_empty() &&
"llvm.dbg intrinsic should have void result");
159 if (
Constant *
C = dyn_cast<Constant>(Arg1))
160 DeadConstants.push_back(
C);
165 if (
Constant *
C = dyn_cast<Constant>(Arg2))
166 DeadConstants.push_back(
C);
171 while (!DeadConstants.empty()) {
173 DeadConstants.pop_back();
175 if (GV->hasLocalLinkage())
185 bool Changed =
false;
202 std::set<DIGlobalVariableExpression *> LiveGVs;
205 GV.getDebugInfo(GVEs);
206 for (
auto *GVE : GVEs)
210 std::set<DICompileUnit *> LiveCUs;
212 for (
const Function &
F : M.functions()) {
213 if (
auto *SP = cast_or_null<DISubprogram>(
F.getSubprogram()))
219 LiveCUs.insert(FoundCUs.begin(), FoundCUs.end());
221 bool HasDeadCUs =
false;
224 bool GlobalVariableChange =
false;
225 for (
auto *DIG : DIC->getGlobalVariables()) {
226 if (DIG->getExpression() && DIG->getExpression()->isConstant() &&
231 if (!VisitedSet.
insert(DIG).second)
235 if (LiveGVs.count(DIG))
238 GlobalVariableChange =
true;
241 if (!LiveGlobalVariables.
empty())
243 else if (!LiveCUs.count(DIC))
248 if (GlobalVariableChange) {
249 DIC->replaceGlobalVariables(
MDTuple::get(
C, LiveGlobalVariables));
254 LiveGlobalVariables.
clear();
259 NamedMDNode *NMD = M.getOrInsertNamedMetadata(
"llvm.dbg.cu");
261 if (!LiveCUs.empty()) {
305 auto *CGProf = dyn_cast_or_null<MDTuple>(M.getModuleFlag(
"CG Profile"));
311 if (
auto *EdgeAsNode = dyn_cast_or_null<MDNode>(
Edge))
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Expand Atomic instructions
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
mir Rename Register Operands
std::pair< BasicBlock *, BasicBlock * > Edge
This file defines the SmallPtrSet class.
static bool stripDeadDebugInfoImpl(Module &M)
static bool stripDebugDeclareImpl(Module &M)
static bool OnlyUsedBy(Value *V, Value *Usr)
OnlyUsedBy - Return true if V is only used by Usr.
static cl::opt< bool > StripGlobalConstants("strip-global-constants", cl::init(false), cl::Hidden, cl::desc("Removes debug compile units which reference " "to non-existing global constants"))
static void findUsedValues(GlobalVariable *LLVMUsed, SmallPtrSetImpl< const GlobalValue * > &UsedValues)
Find values that are marked as llvm.used.
static void StripSymtab(ValueSymbolTable &ST, bool PreserveDbgInfo)
static void StripTypeNames(Module &M, bool PreserveDbgInfo)
static bool StripSymbolNames(Module &M, bool PreserveDbgInfo)
StripSymbolNames - Strip symbol names.
static void RemoveDeadConstant(Constant *C)
A container for analyses that lazily runs them and caches their results.
Represents analyses that only rely on functions' control flow.
Value * getArgOperand(unsigned i) const
This class represents a function call, abstracting a target machine's calling convention.
ConstantArray - Constant Array Declarations.
This is an important base class in LLVM.
This class represents an Operation in the Expression.
Utility to find all debug info in a module.
LLVM_ABI void processInstruction(const Module &M, const Instruction &I)
Process a single instruction and collect debug info anchors.
LLVM_ABI void processSubprogram(DISubprogram *SP)
Process subprogram.
iterator_range< compile_unit_iterator > compile_units() const
Implements a dense probed hash-table based set.
void eraseFromParent()
eraseFromParent - This method unlinks 'this' from the containing module and deletes it.
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
This is an important class for using LLVM in a threaded context.
static MDTuple * getDistinct(LLVMContext &Context, ArrayRef< Metadata * > MDs)
Return a distinct node.
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
A Module instance is used to store all the information related to an LLVM module.
@ Append
Appends the two values, which are required to be metadata nodes.
LLVM_ABI void clearOperands()
Drop all references to this node's operands.
LLVM_ABI void addOperand(MDNode *M)
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Class to represent struct types.
TypeFinder - Walk over a module, identifying all of the types that are used by the module.
void run(const Module &M, bool onlyNamed)
Value * getOperand(unsigned i) const
unsigned getNumOperands() const
This class provides a symbol table of name/value pairs.
LLVM Value Representation.
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
std::pair< iterator, bool > insert(const ValueT &V)
@ C
The default llvm calling convention, compatible with C.
LLVM_ABI Function * getDeclarationIfExists(const Module *M, ID id)
Look up the Function declaration of the intrinsic id in the Module M and return it if it exists.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI bool RecursivelyDeleteTriviallyDeadInstructions(Value *V, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, std::function< void(Value *)> AboutToDeleteCallback=std::function< void(Value *)>())
If the specified value is a trivially dead instruction, delete it.
LLVM_ABI bool StripDebugInfo(Module &M)
Strip debug info in the module if it exists.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)