blob: ce2c34dcd25711a5d5fa45a8003ec7ffcf864564 [file] [log] [blame]
Chris Lattner781e6f52002-07-29 21:24:10 +00001//===- AnalysisWrappers.cpp - Wrappers around non-pass analyses -----------===//
Misha Brukman3da94ae2005-04-22 00:00:37 +00002//
John Criswell7c0e0222003-10-20 17:47:21 +00003// 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.
Misha Brukman3da94ae2005-04-22 00:00:37 +00007//
John Criswell7c0e0222003-10-20 17:47:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner781e6f52002-07-29 21:24:10 +00009//
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//
Misha Brukmanbc0e9982003-07-14 17:20:40 +000014// These classes are separated out of analyze.cpp so that it is more clear which
Chris Lattner781e6f52002-07-29 21:24:10 +000015// 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
Chris Lattnerd9572112004-05-27 06:13:36 +000020#include "llvm/Module.h"
Chris Lattner04eaef22004-04-02 20:56:33 +000021#include "llvm/Pass.h"
Chris Lattnerd9572112004-05-27 06:13:36 +000022#include "llvm/Support/CallSite.h"
Chris Lattner171eee52005-12-22 19:26:06 +000023#include "llvm/Analysis/CallGraph.h"
Reid Spencer86f42bd2004-07-04 12:20:55 +000024#include <iostream>
Brian Gaeked0fde302003-11-11 22:41:34 +000025using namespace llvm;
26
Chris Lattner781e6f52002-07-29 21:24:10 +000027namespace {
Chris Lattnerd9572112004-05-27 06:13:36 +000028 /// 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.
Chris Lattnerb12914b2004-09-20 04:48:05 +000032 struct ExternalFunctionsPassedConstants : public ModulePass {
Devang Patel19974732007-05-03 01:11:54 +000033 static char ID; // Pass ID, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000034 ExternalFunctionsPassedConstants() : ModulePass((intptr_t)&ID) {}
Chris Lattnerb12914b2004-09-20 04:48:05 +000035 virtual bool runOnModule(Module &M) {
Chris Lattnerd9572112004-05-27 06:13:36 +000036 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Reid Spencer5cbf9852007-01-30 20:08:39 +000037 if (I->isDeclaration()) {
Chris Lattnerd9572112004-05-27 06:13:36 +000038 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)
Reid Spencer593eb952004-07-18 00:44:14 +000046 if (isa<Constant>(*AI)) {
Chris Lattnerd9572112004-05-27 06:13:36 +000047 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
Chris Lattnerd9572112004-05-27 06:13:36 +000061 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
62 AU.setPreservesAll();
63 }
64 };
65
Devang Patel19974732007-05-03 01:11:54 +000066 char ExternalFunctionsPassedConstants::ID = 0;
Chris Lattner5d8925c2006-08-27 22:30:17 +000067 RegisterPass<ExternalFunctionsPassedConstants>
Chris Lattner171eee52005-12-22 19:26:06 +000068 P1("externalfnconstants", "Print external fn callsites passed constants");
69
70 struct CallGraphPrinter : public ModulePass {
Devang Patel19974732007-05-03 01:11:54 +000071 static char ID; // Pass ID, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000072 CallGraphPrinter() : ModulePass((intptr_t)&ID) {}
73
Chris Lattner171eee52005-12-22 19:26:06 +000074 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
75 AU.setPreservesAll();
Chris Lattner8257bee2006-12-05 19:43:42 +000076 AU.addRequiredTransitive<CallGraph>();
Chris Lattner171eee52005-12-22 19:26:06 +000077 }
78 virtual bool runOnModule(Module &M) { return false; }
79
Andrew Lenharth0cafa922006-04-18 23:45:19 +000080 virtual void print(std::ostream &OS, const Module *M) const {
Chris Lattner171eee52005-12-22 19:26:06 +000081 getAnalysis<CallGraph>().print(OS, M);
82 }
83 };
84
Devang Patel19974732007-05-03 01:11:54 +000085 char CallGraphPrinter::ID = 0;
Chris Lattner5d8925c2006-08-27 22:30:17 +000086 RegisterPass<CallGraphPrinter>
Chris Lattner171eee52005-12-22 19:26:06 +000087 P2("callgraph", "Print a call graph");
Chris Lattnerd9572112004-05-27 06:13:36 +000088}