2002-11-13 18:22:13 +00:00
|
|
|
//===-- InstCount.cpp - Collects the count of all instructions ------------===//
|
|
|
|
//
|
|
|
|
// This pass collects the count of all instructions and reports them
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Pass.h"
|
2003-08-29 14:43:17 +00:00
|
|
|
#include "llvm/Function.h"
|
2002-11-13 18:22:13 +00:00
|
|
|
#include "llvm/Support/InstVisitor.h"
|
|
|
|
#include "Support/Statistic.h"
|
|
|
|
|
|
|
|
namespace {
|
2002-12-07 23:24:24 +00:00
|
|
|
Statistic<> TotalInsts ("instcount", "Number of instructions (of all types)");
|
|
|
|
Statistic<> TotalBlocks("instcount", "Number of basic blocks");
|
|
|
|
Statistic<> TotalFuncs ("instcount", "Number of non-external functions");
|
|
|
|
|
2002-12-03 19:40:16 +00:00
|
|
|
#define HANDLE_INST(N, OPCODE, CLASS) \
|
|
|
|
Statistic<> Num##OPCODE##Inst("instcount", "Number of " #OPCODE " insts");
|
|
|
|
|
|
|
|
#include "llvm/Instruction.def"
|
2002-11-13 18:22:13 +00:00
|
|
|
|
2003-08-29 14:43:17 +00:00
|
|
|
class InstCount : public FunctionPass, public InstVisitor<InstCount> {
|
2002-12-03 19:40:16 +00:00
|
|
|
friend class InstVisitor<InstCount>;
|
2002-11-13 18:22:13 +00:00
|
|
|
|
2002-12-07 23:24:24 +00:00
|
|
|
void visitFunction (Function &F) { ++TotalFuncs; }
|
|
|
|
void visitBasicBlock(BasicBlock &BB) { ++TotalBlocks; }
|
|
|
|
|
2002-12-03 19:40:16 +00:00
|
|
|
#define HANDLE_INST(N, OPCODE, CLASS) \
|
2002-12-07 23:24:24 +00:00
|
|
|
void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
|
2002-11-13 18:22:13 +00:00
|
|
|
|
2002-12-03 19:40:16 +00:00
|
|
|
#include "llvm/Instruction.def"
|
2002-11-13 18:22:13 +00:00
|
|
|
|
2002-12-03 19:40:16 +00:00
|
|
|
void visitInstruction(Instruction &I) {
|
2002-11-13 18:22:13 +00:00
|
|
|
std::cerr << "Instruction Count does not know about " << I;
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
public:
|
2003-08-29 14:43:17 +00:00
|
|
|
virtual bool runOnFunction(Function &F);
|
2002-11-13 18:22:13 +00:00
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
2002-12-07 23:24:24 +00:00
|
|
|
virtual void print(std::ostream &O, const Module *M) const {}
|
2002-12-03 19:40:16 +00:00
|
|
|
|
2002-11-13 18:22:13 +00:00
|
|
|
};
|
|
|
|
|
2002-11-17 22:15:40 +00:00
|
|
|
RegisterAnalysis<InstCount> X("instcount",
|
2002-12-03 19:40:16 +00:00
|
|
|
"Counts the various types of Instructions");
|
2002-11-13 18:22:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// InstCount::run - This is the main Analysis entry point for a
|
|
|
|
// function.
|
|
|
|
//
|
2003-08-29 14:43:17 +00:00
|
|
|
bool InstCount::runOnFunction(Function &F) {
|
|
|
|
visit(F);
|
2002-11-13 18:22:13 +00:00
|
|
|
return false;
|
|
|
|
}
|