2002-11-13 19:22:13 +01:00
|
|
|
//===-- InstCount.cpp - Collects the count of all instructions ------------===//
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-13 19:22:13 +01:00
|
|
|
//
|
2005-04-21 23:13:18 +02:00
|
|
|
// This pass collects the count of all instructions and reports them
|
2002-11-13 19:22:13 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 23:30:33 +01:00
|
|
|
#define DEBUG_TYPE "instcount"
|
2005-10-24 03:00:45 +02:00
|
|
|
#include "llvm/Analysis/Passes.h"
|
2002-11-13 19:22:13 +01:00
|
|
|
#include "llvm/Pass.h"
|
2003-08-29 16:43:17 +02:00
|
|
|
#include "llvm/Function.h"
|
2009-12-23 21:34:27 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-11 15:10:19 +02:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2002-11-13 19:22:13 +01:00
|
|
|
#include "llvm/Support/InstVisitor.h"
|
2009-08-23 06:37:46 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2005-03-22 04:55:10 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2006-12-19 23:30:33 +01:00
|
|
|
STATISTIC(TotalInsts , "Number of instructions (of all types)");
|
|
|
|
STATISTIC(TotalBlocks, "Number of basic blocks");
|
|
|
|
STATISTIC(TotalFuncs , "Number of non-external functions");
|
|
|
|
STATISTIC(TotalMemInst, "Number of memory instructions");
|
2002-12-08 00:24:24 +01:00
|
|
|
|
2002-12-03 20:40:16 +01:00
|
|
|
#define HANDLE_INST(N, OPCODE, CLASS) \
|
2006-12-19 23:30:33 +01:00
|
|
|
STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
|
2002-12-03 20:40:16 +01:00
|
|
|
|
|
|
|
#include "llvm/Instruction.def"
|
2002-11-13 19:22:13 +01:00
|
|
|
|
2006-12-19 23:30:33 +01:00
|
|
|
|
|
|
|
namespace {
|
2009-10-25 07:33:48 +01:00
|
|
|
class InstCount : public FunctionPass, public InstVisitor<InstCount> {
|
2004-11-16 07:58:55 +01:00
|
|
|
friend class InstVisitor<InstCount>;
|
2002-11-13 19:22:13 +01:00
|
|
|
|
2002-12-08 00:24:24 +01:00
|
|
|
void visitFunction (Function &F) { ++TotalFuncs; }
|
|
|
|
void visitBasicBlock(BasicBlock &BB) { ++TotalBlocks; }
|
|
|
|
|
2002-12-03 20:40:16 +01:00
|
|
|
#define HANDLE_INST(N, OPCODE, CLASS) \
|
2002-12-08 00:24:24 +01:00
|
|
|
void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
|
2002-11-13 19:22:13 +01:00
|
|
|
|
2002-12-03 20:40:16 +01:00
|
|
|
#include "llvm/Instruction.def"
|
2002-11-13 19:22:13 +01:00
|
|
|
|
2010-08-15 12:27:23 +02:00
|
|
|
void visitInstruction(Instruction &I) {
|
2009-12-24 00:29:28 +01:00
|
|
|
errs() << "Instruction Count does not know about " << I;
|
2009-07-14 18:55:14 +02:00
|
|
|
llvm_unreachable(0);
|
2002-11-13 19:22:13 +01:00
|
|
|
}
|
|
|
|
public:
|
2007-05-06 15:37:16 +02:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-10-19 19:21:58 +02:00
|
|
|
InstCount() : FunctionPass(ID) {
|
|
|
|
initializeInstCountPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2007-05-01 23:15:47 +02:00
|
|
|
|
2003-08-29 16:43:17 +02:00
|
|
|
virtual bool runOnFunction(Function &F);
|
2002-11-13 19:22:13 +01:00
|
|
|
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
2009-08-23 08:03:38 +02:00
|
|
|
virtual void print(raw_ostream &O, const Module *M) const {}
|
2002-12-03 20:40:16 +01:00
|
|
|
|
2002-11-13 19:22:13 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2008-05-13 02:00:25 +02:00
|
|
|
char InstCount::ID = 0;
|
2010-07-22 00:09:45 +02:00
|
|
|
INITIALIZE_PASS(InstCount, "instcount",
|
2010-10-08 00:25:06 +02:00
|
|
|
"Counts the various types of Instructions", false, true)
|
2008-05-13 02:00:25 +02:00
|
|
|
|
2005-10-24 03:00:45 +02:00
|
|
|
FunctionPass *llvm::createInstCountPass() { return new InstCount(); }
|
|
|
|
|
2002-11-13 19:22:13 +01:00
|
|
|
// InstCount::run - This is the main Analysis entry point for a
|
|
|
|
// function.
|
|
|
|
//
|
2003-08-29 16:43:17 +02:00
|
|
|
bool InstCount::runOnFunction(Function &F) {
|
2005-03-22 04:55:10 +01:00
|
|
|
unsigned StartMemInsts =
|
2005-04-21 23:13:18 +02:00
|
|
|
NumGetElementPtrInst + NumLoadInst + NumStoreInst + NumCallInst +
|
2009-10-27 00:43:48 +01:00
|
|
|
NumInvokeInst + NumAllocaInst;
|
2003-08-29 16:43:17 +02:00
|
|
|
visit(F);
|
2005-03-22 04:55:10 +01:00
|
|
|
unsigned EndMemInsts =
|
2005-04-21 23:13:18 +02:00
|
|
|
NumGetElementPtrInst + NumLoadInst + NumStoreInst + NumCallInst +
|
2009-10-27 00:43:48 +01:00
|
|
|
NumInvokeInst + NumAllocaInst;
|
2005-03-22 04:55:10 +01:00
|
|
|
TotalMemInst += EndMemInsts-StartMemInsts;
|
2002-11-13 19:22:13 +01:00
|
|
|
return false;
|
|
|
|
}
|