1 //===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements two versions of the LLVM "Hello World" pass described
11 // in docs/WritingAnLLVMPass.html
13 //===----------------------------------------------------------------------===//
15 #define DEBUG_TYPE "hello"
16 #include "llvm/Pass.h"
17 #include "llvm/Function.h"
18 #include "llvm/ADT/StringExtras.h"
19 #include "llvm/Support/Streams.h"
20 #include "llvm/ADT/Statistic.h"
23 STATISTIC(HelloCounter
, "Counts number of functions greeted");
26 // Hello - The first implementation, without getAnalysisUsage.
27 struct Hello
: public FunctionPass
{
28 static char ID
; // Pass identification, replacement for typeid
29 Hello() : FunctionPass(&ID
) {}
31 virtual bool runOnFunction(Function
&F
) {
33 std::string fname
= F
.getName();
35 cerr
<< "Hello: " << fname
<< "\n";
42 static RegisterPass
<Hello
> X("hello", "Hello World Pass");
45 // Hello2 - The second implementation with getAnalysisUsage implemented.
46 struct Hello2
: public FunctionPass
{
47 static char ID
; // Pass identification, replacement for typeid
48 Hello2() : FunctionPass(&ID
) {}
50 virtual bool runOnFunction(Function
&F
) {
52 std::string fname
= F
.getName();
54 cerr
<< "Hello: " << fname
<< "\n";
58 // We don't modify the program, so we preserve all analyses
59 virtual void getAnalysisUsage(AnalysisUsage
&AU
) const {
66 static RegisterPass
<Hello2
>
67 Y("hello2", "Hello World Pass (with getAnalysisUsage implemented)");