blob: 94cca50d63d1f310c10b6ae95ad9c4ac2299bbd0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- AnalysisWrappers.cpp - Wrappers around non-pass analyses -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5f5a5732007-12-29 20:44:31 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines pass wrappers around LLVM analyses that don't make sense to
11// be passes. It provides a nice standard pass interface to these classes so
12// that they can be printed out by analyze.
13//
14// These classes are separated out of analyze.cpp so that it is more clear which
15// code is the integral part of the analyze tool, and which part of the code is
16// just making it so more passes are available.
17//
18//===----------------------------------------------------------------------===//
19
20#include "llvm/Module.h"
21#include "llvm/Pass.h"
22#include "llvm/Support/CallSite.h"
23#include "llvm/Analysis/CallGraph.h"
24#include <iostream>
25using namespace llvm;
26
27namespace {
28 /// ExternalFunctionsPassedConstants - This pass prints out call sites to
29 /// external functions that are called with constant arguments. This can be
30 /// useful when looking for standard library functions we should constant fold
31 /// or handle in alias analyses.
32 struct ExternalFunctionsPassedConstants : public ModulePass {
33 static char ID; // Pass ID, replacement for typeid
34 ExternalFunctionsPassedConstants() : ModulePass((intptr_t)&ID) {}
35 virtual bool runOnModule(Module &M) {
36 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
37 if (I->isDeclaration()) {
38 bool PrintedFn = false;
39 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
40 UI != E; ++UI)
41 if (Instruction *User = dyn_cast<Instruction>(*UI)) {
42 CallSite CS = CallSite::get(User);
43 if (CS.getInstruction()) {
44 for (CallSite::arg_iterator AI = CS.arg_begin(),
45 E = CS.arg_end(); AI != E; ++AI)
46 if (isa<Constant>(*AI)) {
47 if (!PrintedFn) {
48 std::cerr << "Function '" << I->getName() << "':\n";
49 PrintedFn = true;
50 }
51 std::cerr << *User;
52 break;
53 }
54 }
55 }
56 }
57
58 return false;
59 }
60
61 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
62 AU.setPreservesAll();
63 }
64 };
65
66 char ExternalFunctionsPassedConstants::ID = 0;
67 RegisterPass<ExternalFunctionsPassedConstants>
Duncan Sandsd10d6f72008-09-23 12:47:39 +000068 P1("print-externalfnconstants",
69 "Print external fn callsites passed constants");
Duncan Sandsf7dbeb32008-09-19 07:57:09 +000070
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071 struct CallGraphPrinter : public ModulePass {
72 static char ID; // Pass ID, replacement for typeid
73 CallGraphPrinter() : ModulePass((intptr_t)&ID) {}
74
75 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
76 AU.setPreservesAll();
77 AU.addRequiredTransitive<CallGraph>();
78 }
Duncan Sandsf7dbeb32008-09-19 07:57:09 +000079 virtual bool runOnModule(Module &M) {
80 getAnalysis<CallGraph>().print(std::cerr, &M);
81 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 }
83 };
Duncan Sandsf7dbeb32008-09-19 07:57:09 +000084
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085 char CallGraphPrinter::ID = 0;
86 RegisterPass<CallGraphPrinter>
Duncan Sandsd10d6f72008-09-23 12:47:39 +000087 P2("print-callgraph", "Print a call graph");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088}