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
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and 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"
|
2006-08-08 01:17:24 +02:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2006-11-26 10:17:06 +01:00
|
|
|
#include "llvm/Support/Streams.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 {
|
|
|
|
virtual bool runOnFunction(Function &F) {
|
2006-08-08 01:17:24 +02:00
|
|
|
HelloCounter++;
|
|
|
|
std::string fname = F.getName();
|
|
|
|
EscapeString(fname);
|
2006-12-07 02:30:32 +01:00
|
|
|
cerr << "Hello: " << fname << "\n";
|
2002-08-08 22:10:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
2005-04-22 01:48:37 +02:00
|
|
|
};
|
2006-08-28 00:42:52 +02:00
|
|
|
RegisterPass<Hello> X("hello", "Hello World Pass");
|
2002-08-08 22:10:38 +02:00
|
|
|
|
|
|
|
// Hello2 - The second implementation with getAnalysisUsage implemented.
|
|
|
|
struct Hello2 : public FunctionPass {
|
|
|
|
virtual bool runOnFunction(Function &F) {
|
2006-08-08 01:17:24 +02:00
|
|
|
HelloCounter++;
|
|
|
|
std::string fname = F.getName();
|
|
|
|
EscapeString(fname);
|
2006-12-07 02:30:32 +01:00
|
|
|
cerr << "Hello: " << fname << "\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();
|
|
|
|
};
|
2005-04-22 01:48:37 +02:00
|
|
|
};
|
2006-08-28 00:42:52 +02:00
|
|
|
RegisterPass<Hello2> Y("hello2",
|
|
|
|
"Hello World Pass (with getAnalysisUsage implemented)");
|
2002-08-08 22:10:38 +02:00
|
|
|
}
|