46ede0a15342c21dbe08d71f55b80b31f32e9e24
[oota-llvm.git] / tools / opt / AnalysisWrappers.cpp
1 //===- AnalysisWrappers.cpp - Wrappers around non-pass analyses -----------===//
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 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 <iostream>
24 using namespace llvm;
25
26 namespace {
27   /// ExternalFunctionsPassedConstants - This pass prints out call sites to
28   /// external functions that are called with constant arguments.  This can be
29   /// useful when looking for standard library functions we should constant fold
30   /// or handle in alias analyses.
31   struct ExternalFunctionsPassedConstants : public ModulePass {
32     virtual bool runOnModule(Module &M) {
33       for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
34         if (I->isExternal()) {
35           bool PrintedFn = false;
36           for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
37                UI != E; ++UI)
38             if (Instruction *User = dyn_cast<Instruction>(*UI)) {
39               CallSite CS = CallSite::get(User);
40               if (CS.getInstruction()) {
41                 for (CallSite::arg_iterator AI = CS.arg_begin(),
42                        E = CS.arg_end(); AI != E; ++AI)
43                   if (isa<Constant>(*AI)) {
44                     if (!PrintedFn) {
45                       std::cerr << "Function '" << I->getName() << "':\n";
46                       PrintedFn = true;
47                     }
48                     std::cerr << *User;
49                     break;
50                   }
51               }
52             }
53         }
54
55       return false;
56     }
57
58     void print(std::ostream &OS) const {}
59     
60     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
61       AU.setPreservesAll();
62     }
63   };
64
65   RegisterAnalysis<ExternalFunctionsPassedConstants>
66   P2("externalfnconstants", "Print external fn callsites passed constants");
67 }