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