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