2002-08-08 20:10:38 +00:00
|
|
|
//===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00: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-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-08 20:10:38 +00:00
|
|
|
//
|
|
|
|
// This file implements two versions of the LLVM "Hello World" pass described
|
|
|
|
// in docs/WritingAnLLVMPass.html
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Pass.h"
|
|
|
|
#include "llvm/Function.h"
|
2006-08-07 23:17:24 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
#include "llvm/Support/SlowOperationInformer.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
2004-08-12 02:44:23 +00:00
|
|
|
#include <iostream>
|
2004-01-09 06:12:26 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-08-08 20:10:38 +00:00
|
|
|
namespace {
|
2006-08-07 23:17:24 +00:00
|
|
|
Statistic<int> HelloCounter("hellocount",
|
|
|
|
"Counts number of functions greeted");
|
2002-08-08 20:10:38 +00:00
|
|
|
// Hello - The first implementation, without getAnalysisUsage.
|
|
|
|
struct Hello : public FunctionPass {
|
|
|
|
virtual bool runOnFunction(Function &F) {
|
2006-08-07 23:17:24 +00:00
|
|
|
SlowOperationInformer soi("EscapeString");
|
|
|
|
HelloCounter++;
|
|
|
|
std::string fname = F.getName();
|
|
|
|
EscapeString(fname);
|
|
|
|
std::cerr << "Hello: " << fname << "\n";
|
2002-08-08 20:10:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
};
|
2006-08-27 22:42:52 +00:00
|
|
|
RegisterPass<Hello> X("hello", "Hello World Pass");
|
2002-08-08 20:10:38 +00:00
|
|
|
|
|
|
|
// Hello2 - The second implementation with getAnalysisUsage implemented.
|
|
|
|
struct Hello2 : public FunctionPass {
|
|
|
|
virtual bool runOnFunction(Function &F) {
|
2006-08-07 23:17:24 +00:00
|
|
|
SlowOperationInformer soi("EscapeString");
|
|
|
|
HelloCounter++;
|
|
|
|
std::string fname = F.getName();
|
|
|
|
EscapeString(fname);
|
|
|
|
std::cerr << "Hello: " << fname << "\n";
|
2002-08-08 20:10:38 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We don't modify the program, so we preserve all analyses
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
};
|
2005-04-21 23:48:37 +00:00
|
|
|
};
|
2006-08-27 22:42:52 +00:00
|
|
|
RegisterPass<Hello2> Y("hello2",
|
|
|
|
"Hello World Pass (with getAnalysisUsage implemented)");
|
2002-08-08 20:10:38 +00:00
|
|
|
}
|