Static Value-Flow Analysis
Loading...
Searching...
No Matches
BreakConstantExpr.h
Go to the documentation of this file.
1//===- BreakConstantGEPs.h - Change constant GEPs into GEP instructions --- --//
2//
3// The SAFECode Compiler
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 pass changes all GEP constant expressions into GEP instructions. This
11// permits the rest of SAFECode to put run-time checks on them if necessary.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef BREAKCONSTANTGEPS_H
16#define BREAKCONSTANTGEPS_H
17
18
19namespace SVF
20{
21
22//
23// Pass: BreakConstantGEPs
24//
25// Description:
26// This pass modifies a function so that it uses GEP instructions instead of
27// GEP constant expressions.
28//
30{
31private:
32 // Private methods
33
34 // Private variables
35
36public:
37 static char ID;
39 llvm::StringRef getPassName() const
40 {
41 return "Remove Constant GEP Expressions";
42 }
43 virtual bool runOnModule (Module & M);
44};
45
46
47//
48// Pass: MergeFunctionRets
49//
50// Description:
51// This pass modifies a function so that each function only have one unified exit basic block
52//
54{
55private:
56 // Private methods
57
58 // Private variables
59
60public:
61 static char ID;
63 llvm::StringRef getPassName() const
64 {
65 return "unify function exit into one dummy exit basic block";
66 }
67 virtual bool runOnModule (Module & M)
68 {
70 return true;
71 }
73 {
74 for (Module::const_iterator iter = module.begin(), eiter = module.end();
75 iter != eiter; ++iter)
76 {
77 const Function& fun = *iter;
78 if(fun.isDeclaration())
79 continue;
80 getUnifyExit(fun)->runOnFunction(const_cast<Function&>(fun));
81 }
82 }
85 {
86 assert(!fn.isDeclaration() && "external function does not have DF");
87 return &getAnalysis<UnifyFunctionExitNodes>(const_cast<Function&>(fn));
88 }
89};
90
91} // End namespace SVF
92
93#endif
llvm::StringRef getPassName() const
virtual bool runOnModule(Module &M)
UnifyFunctionExitNodes * getUnifyExit(const Function &fn)
Get Unified Exit basic block node.
llvm::StringRef getPassName() const
void UnifyFunctionExit(Module &module)
virtual bool runOnModule(Module &M)
for isBitcode
Definition BasicTypes.h:68
llvm::Function Function
Definition BasicTypes.h:85
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
llvm::Module Module
Definition BasicTypes.h:84
llvm::ModulePass ModulePass
Definition BasicTypes.h:73
llvm::UnifyFunctionExitNodes UnifyFunctionExitNodes
Definition BasicTypes.h:78