eliminate static ctor from example.
[oota-llvm.git] / lib / Transforms / Hello / Hello.cpp
1 //===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements two versions of the LLVM "Hello World" pass described
11 // in docs/WritingAnLLVMPass.html
12 //
13 //===----------------------------------------------------------------------===//
14
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/SlowOperationInformer.h"
20 #include "llvm/Support/Streams.h"
21 #include "llvm/ADT/Statistic.h"
22 using namespace llvm;
23
24 STATISTIC(HelloCounter, "Counts number of functions greeted");
25
26 namespace {
27   // Hello - The first implementation, without getAnalysisUsage.
28   struct Hello : public FunctionPass {
29     virtual bool runOnFunction(Function &F) {
30       SlowOperationInformer soi("EscapeString");
31       HelloCounter++;
32       std::string fname = F.getName();
33       EscapeString(fname);
34       cerr << "Hello: " << fname << "\n";
35       return false;
36     }
37   };
38   RegisterPass<Hello> X("hello", "Hello World Pass");
39
40   // Hello2 - The second implementation with getAnalysisUsage implemented.
41   struct Hello2 : public FunctionPass {
42     virtual bool runOnFunction(Function &F) {
43       SlowOperationInformer soi("EscapeString");
44       HelloCounter++;
45       std::string fname = F.getName();
46       EscapeString(fname);
47       cerr << "Hello: " << fname << "\n";
48       return false;
49     }
50
51     // We don't modify the program, so we preserve all analyses
52     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
53       AU.setPreservesAll();
54     };
55   };
56   RegisterPass<Hello2> Y("hello2",
57                         "Hello World Pass (with getAnalysisUsage implemented)");
58 }