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
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2013-01-02 12:36:10 +01:00
|
|
|
#include "llvm/IR/Function.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include "llvm/Pass.h"
|
2009-08-23 13:37:21 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2004-01-09 07:12:26 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2014-04-22 04:55:47 +02:00
|
|
|
#define DEBUG_TYPE "hello"
|
|
|
|
|
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
|
|
|
|
2014-03-05 10:10:37 +01:00
|
|
|
bool runOnFunction(Function &F) override {
|
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
|
|
|
};
|
2015-06-23 11:49:53 +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
|
|
|
|
2014-03-05 10:10:37 +01:00
|
|
|
bool runOnFunction(Function &F) override {
|
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;
|
|
|
|
}
|
|
|
|
|
2013-09-27 09:36:10 +02:00
|
|
|
// We don't modify the program, so we preserve all analyses.
|
2014-03-05 10:10:37 +01:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2002-08-08 22:10:38 +02:00
|
|
|
AU.setPreservesAll();
|
2009-12-19 08:05:23 +01:00
|
|
|
}
|
2005-04-22 01:48:37 +02:00
|
|
|
};
|
2015-06-23 11:49:53 +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)");
|