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
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file 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"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Function.h"
|
2014-03-06 03:23:41 +00:00
|
|
|
#include "llvm/IR/InstVisitor.h"
|
2002-11-13 18:22:13 +00:00
|
|
|
#include "llvm/Pass.h"
|
2009-12-23 20:34:27 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-11 13:10:19 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-08-23 04:37:46 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2005-03-22 03:55:10 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2014-04-22 02:48:03 +00:00
|
|
|
#define DEBUG_TYPE "instcount"
|
|
|
|
|
2006-12-19 22:30:33 +00: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-07 23:24:24 +00:00
|
|
|
|
2002-12-03 19:40:16 +00:00
|
|
|
#define HANDLE_INST(N, OPCODE, CLASS) \
|
2006-12-19 22:30:33 +00:00
|
|
|
STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
|
2002-12-03 19:40:16 +00:00
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Instruction.def"
|
2002-11-13 18:22:13 +00:00
|
|
|
|
2006-12-19 22:30:33 +00:00
|
|
|
|
|
|
|
namespace {
|
2009-10-25 06:33:48 +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
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Instruction.def"
|
2002-11-13 18:22:13 +00:00
|
|
|
|
2010-08-15 10:27:23 +00:00
|
|
|
void visitInstruction(Instruction &I) {
|
2009-12-23 23:29:28 +00:00
|
|
|
errs() << "Instruction Count does not know about " << I;
|
2014-04-15 04:59:12 +00:00
|
|
|
llvm_unreachable(nullptr);
|
2002-11-13 18:22:13 +00:00
|
|
|
}
|
|
|
|
public:
|
2007-05-06 13:37:16 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-10-19 17:21:58 +00:00
|
|
|
InstCount() : FunctionPass(ID) {
|
|
|
|
initializeInstCountPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2007-05-01 21:15:47 +00:00
|
|
|
|
2014-03-05 07:30:04 +00:00
|
|
|
bool runOnFunction(Function &F) override;
|
2002-11-13 18:22:13 +00:00
|
|
|
|
2014-03-05 07:30:04 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2002-11-13 18:22:13 +00:00
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
2014-03-05 07:30:04 +00:00
|
|
|
void print(raw_ostream &O, const Module *M) const override {}
|
2002-12-03 19:40:16 +00:00
|
|
|
|
2002-11-13 18:22:13 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
char InstCount::ID = 0;
|
2010-07-21 22:09:45 +00:00
|
|
|
INITIALIZE_PASS(InstCount, "instcount",
|
2010-10-07 22:25:06 +00:00
|
|
|
"Counts the various types of Instructions", false, true)
|
2008-05-13 00:00:25 +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 +
|
2009-10-26 23:43:48 +00:00
|
|
|
NumInvokeInst + NumAllocaInst;
|
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 +
|
2009-10-26 23:43:48 +00:00
|
|
|
NumInvokeInst + NumAllocaInst;
|
2005-03-22 03:55:10 +00:00
|
|
|
TotalMemInst += EndMemInsts-StartMemInsts;
|
2002-11-13 18:22:13 +00:00
|
|
|
return false;
|
|
|
|
}
|