1 //===-- InstCount.cpp - Collects the count of all instructions ------------===//
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
7 //===----------------------------------------------------------------------===//
9 // This pass collects the count of all instructions and reports them
11 //===----------------------------------------------------------------------===//
13 #include "llvm/Analysis/InstCount.h"
14 #include "llvm/ADT/Statistic.h"
15 #include "llvm/Analysis/Passes.h"
16 #include "llvm/IR/Function.h"
17 #include "llvm/IR/InstVisitor.h"
18 #include "llvm/InitializePasses.h"
19 #include "llvm/Pass.h"
20 #include "llvm/Support/Debug.h"
21 #include "llvm/Support/ErrorHandling.h"
22 #include "llvm/Support/raw_ostream.h"
25 #define DEBUG_TYPE "instcount"
27 STATISTIC(TotalInsts
, "Number of instructions (of all types)");
28 STATISTIC(TotalBlocks
, "Number of basic blocks");
29 STATISTIC(TotalFuncs
, "Number of non-external functions");
31 #define HANDLE_INST(N, OPCODE, CLASS) \
32 STATISTIC(Num##OPCODE##Inst, "Number of " #OPCODE " insts");
34 #include "llvm/IR/Instruction.def"
37 class InstCount
: public InstVisitor
<InstCount
> {
38 friend class InstVisitor
<InstCount
>;
40 void visitFunction(Function
&F
) { ++TotalFuncs
; }
41 void visitBasicBlock(BasicBlock
&BB
) { ++TotalBlocks
; }
43 #define HANDLE_INST(N, OPCODE, CLASS) \
44 void visit##OPCODE(CLASS &) { \
45 ++Num##OPCODE##Inst; \
49 #include "llvm/IR/Instruction.def"
51 void visitInstruction(Instruction
&I
) {
52 errs() << "Instruction Count does not know about " << I
;
53 llvm_unreachable(nullptr);
58 PreservedAnalyses
InstCountPass::run(Function
&F
,
59 FunctionAnalysisManager
&FAM
) {
60 LLVM_DEBUG(dbgs() << "INSTCOUNT: running on function " << F
.getName()
64 return PreservedAnalyses::all();
68 class InstCountLegacyPass
: public FunctionPass
{
70 static char ID
; // Pass identification, replacement for typeid
71 InstCountLegacyPass() : FunctionPass(ID
) {
72 initializeInstCountLegacyPassPass(*PassRegistry::getPassRegistry());
75 bool runOnFunction(Function
&F
) override
{
76 LLVM_DEBUG(dbgs() << "INSTCOUNT: running on function " << F
.getName()
82 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
86 void print(raw_ostream
&O
, const Module
*M
) const override
{}
90 char InstCountLegacyPass::ID
= 0;
91 INITIALIZE_PASS(InstCountLegacyPass
, "instcount",
92 "Counts the various types of Instructions", false, true)
94 FunctionPass
*llvm::createInstCountPass() { return new InstCountLegacyPass(); }