2002-11-13 18:22:13 +00:00
|
|
|
//===-- InstCount.cpp - Collects the count of all instructions ------------===//
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-13 18:22:13 +00:00
|
|
|
//
|
2005-04-21 21:13:18 +00:00
|
|
|
// This pass collects the count of all instructions and reports them
|
2002-11-13 18:22:13 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-24 01:00:45 +00:00
|
|
|
#include "llvm/Analysis/Passes.h"
|
2002-11-13 18:22:13 +00:00
|
|
|
#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"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2006-01-22 23:19:18 +00:00
|
|
|
#include <iostream>
|
2005-03-22 03:55:10 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-11-13 18:22:13 +00:00
|
|
|
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");
|
2005-03-22 03:55:10 +00:00
|
|
|
Statistic<> TotalMemInst("instcount", "Number of memory instructions");
|
2002-12-07 23:24:24 +00:00
|
|
|
|
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> {
|
2004-11-16 06:58:55 +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
|
|
|
};
|
|
|
|
|
2006-08-27 22:30:17 +00:00
|
|
|
RegisterPass<InstCount> X("instcount",
|
|
|
|
"Counts the various types of Instructions");
|
2002-11-13 18:22:13 +00:00
|
|
|
}
|
|
|
|
|
2005-10-24 01:00:45 +00:00
|
|
|
FunctionPass *llvm::createInstCountPass() { return new InstCount(); }
|
|
|
|
|
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) {
|
2005-03-22 03:55:10 +00:00
|
|
|
unsigned StartMemInsts =
|
2005-04-21 21:13:18 +00:00
|
|
|
NumGetElementPtrInst + NumLoadInst + NumStoreInst + NumCallInst +
|
2005-03-22 03:55:10 +00:00
|
|
|
NumInvokeInst + NumAllocaInst + NumMallocInst + NumFreeInst;
|
2003-08-29 14:43:17 +00:00
|
|
|
visit(F);
|
2005-03-22 03:55:10 +00:00
|
|
|
unsigned EndMemInsts =
|
2005-04-21 21:13:18 +00:00
|
|
|
NumGetElementPtrInst + NumLoadInst + NumStoreInst + NumCallInst +
|
2005-03-22 03:55:10 +00:00
|
|
|
NumInvokeInst + NumAllocaInst + NumMallocInst + NumFreeInst;
|
|
|
|
TotalMemInst += EndMemInsts-StartMemInsts;
|
2002-11-13 18:22:13 +00:00
|
|
|
return false;
|
|
|
|
}
|