2002-08-09 04:10:38 +08:00
|
|
|
//===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
|
2005-04-22 07:48:37 +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 07:48:37 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-09 04:10:38 +08:00
|
|
|
//
|
|
|
|
// This file implements two versions of the LLVM "Hello World" pass described
|
|
|
|
// in docs/WritingAnLLVMPass.html
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
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"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Pass.h"
|
2009-08-23 19:37:21 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2004-01-09 14:12:26 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2014-04-22 10:55:47 +08:00
|
|
|
#define DEBUG_TYPE "hello"
|
|
|
|
|
2006-12-20 06:24:09 +08:00
|
|
|
STATISTIC(HelloCounter, "Counts number of functions greeted");
|
|
|
|
|
2002-08-09 04:10:38 +08:00
|
|
|
namespace {
|
|
|
|
// Hello - The first implementation, without getAnalysisUsage.
|
|
|
|
struct Hello : public FunctionPass {
|
2007-05-06 21:37:16 +08:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-08-07 02:33:48 +08:00
|
|
|
Hello() : FunctionPass(ID) {}
|
2007-05-02 05:15:47 +08:00
|
|
|
|
2014-03-05 17:10:37 +08:00
|
|
|
bool runOnFunction(Function &F) override {
|
2010-06-22 23:08:57 +08:00
|
|
|
++HelloCounter;
|
2009-10-18 04:43:19 +08:00
|
|
|
errs() << "Hello: ";
|
|
|
|
errs().write_escaped(F.getName()) << '\n';
|
2002-08-09 04:10:38 +08:00
|
|
|
return false;
|
|
|
|
}
|
2005-04-22 07:48:37 +08:00
|
|
|
};
|
2008-05-13 08:00:25 +08:00
|
|
|
}
|
2007-05-02 05:15:47 +08:00
|
|
|
|
2008-05-13 08:00:25 +08:00
|
|
|
char Hello::ID = 0;
|
2010-10-07 08:31:16 +08:00
|
|
|
static RegisterPass<Hello> X("hello", "Hello World Pass");
|
2002-08-09 04:10:38 +08:00
|
|
|
|
2008-05-13 08:00:25 +08:00
|
|
|
namespace {
|
2002-08-09 04:10:38 +08:00
|
|
|
// Hello2 - The second implementation with getAnalysisUsage implemented.
|
|
|
|
struct Hello2 : public FunctionPass {
|
2007-05-06 21:37:16 +08:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-08-07 02:33:48 +08:00
|
|
|
Hello2() : FunctionPass(ID) {}
|
2007-05-02 05:15:47 +08:00
|
|
|
|
2014-03-05 17:10:37 +08:00
|
|
|
bool runOnFunction(Function &F) override {
|
2010-06-22 23:08:57 +08:00
|
|
|
++HelloCounter;
|
2009-10-18 04:43:19 +08:00
|
|
|
errs() << "Hello: ";
|
|
|
|
errs().write_escaped(F.getName()) << '\n';
|
2002-08-09 04:10:38 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-09-27 15:36:10 +08:00
|
|
|
// We don't modify the program, so we preserve all analyses.
|
2014-03-05 17:10:37 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2002-08-09 04:10:38 +08:00
|
|
|
AU.setPreservesAll();
|
2009-12-19 15:05:23 +08:00
|
|
|
}
|
2005-04-22 07:48:37 +08:00
|
|
|
};
|
2002-08-09 04:10:38 +08:00
|
|
|
}
|
2008-05-13 08:00:25 +08:00
|
|
|
|
|
|
|
char Hello2::ID = 0;
|
2010-10-07 08:31:16 +08:00
|
|
|
static RegisterPass<Hello2>
|
|
|
|
Y("hello2", "Hello World Pass (with getAnalysisUsage implemented)");
|