LLVM 20.0.0git
StripDeadPrototypes.cpp
Go to the documentation of this file.
1//===-- StripDeadPrototypes.cpp - Remove unused function declarations ----===//
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 loops over all of the functions in the input module, looking for
10// dead declarations and removes them. Dead declarations are declarations of
11// functions for which no implementation is available (i.e., declarations for
12// unused library functions).
13//
14//===----------------------------------------------------------------------===//
15
17#include "llvm/ADT/Statistic.h"
18#include "llvm/IR/Module.h"
19
20using namespace llvm;
21
22#define DEBUG_TYPE "strip-dead-prototypes"
23
24STATISTIC(NumDeadPrototypes, "Number of dead prototypes removed");
25
26static bool stripDeadPrototypes(Module &M) {
27 bool MadeChange = false;
28
29 // Erase dead function prototypes.
31 // Function must be a prototype and unused.
32 if (F.isDeclaration() && F.use_empty()) {
33 F.eraseFromParent();
34 ++NumDeadPrototypes;
35 MadeChange = true;
36 }
37 }
38
39 // Erase dead global var prototypes.
40 for (GlobalVariable &GV : llvm::make_early_inc_range(M.globals())) {
41 // Global must be a prototype and unused.
42 if (GV.isDeclaration() && GV.use_empty())
43 GV.eraseFromParent();
44 }
45
46 // Return an indication of whether we changed anything or not.
47 return MadeChange;
48}
49
55}
Module.h This file contains the declarations for the Module class.
#define F(x, y, z)
Definition: MD5.cpp:55
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition: Statistic.h:166
static bool stripDeadPrototypes(Module &M)
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:111
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition: Analysis.h:114
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:117
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition: STLExtras.h:657
PreservedAnalyses run(Module &M, ModuleAnalysisManager &)