#include <BreakConstantExpr.h>
Definition at line 29 of file BreakConstantExpr.h.
◆ BreakConstantGEPs()
SVF::BreakConstantGEPs::BreakConstantGEPs |
( |
| ) |
|
|
inline |
◆ getPassName()
llvm::StringRef SVF::BreakConstantGEPs::getPassName |
( |
| ) |
const |
|
inline |
Definition at line 39 of file BreakConstantExpr.h.
40 {
41 return "Remove Constant GEP Expressions";
42 }
◆ runOnModule()
Definition at line 188 of file BreakConstantExpr.cpp.
189{
191 for (Module::iterator F =
module.begin(),
E =
module.end(); F !=
E; ++F)
192 {
193
194 std::vector<Instruction* >
Worklist;
195
196
197
198
199
200 for (Function::iterator
BB = (*F).begin();
BB != (*F).end(); ++
BB)
201 {
202 for (BasicBlock::iterator
i =
BB->begin();
i !=
BB->end(); ++
i)
203 {
204
205
206
207
210 {
212 {
214 }
215 }
216 }
217 }
218
219
220
221
223
224
225
226
227
228
230 {
233
234
235
236
237
238
239
240 if (
PHINode * PHI = SVFUtil::dyn_cast<PHINode>(I))
241 {
243 {
244
245
246
247
248
249
250
251
254 {
257 {
258 if ((PHI->getIncomingBlock (
i2)) == PHI->getIncomingBlock (
index))
260 }
262 }
263 }
264 }
265 else
266 {
268 {
269
270
271
272
273
275 {
279 }
280 }
281 }
282 }
283
284 }
286}
static Instruction * convertExpression(ConstantExpr *CE, Instruction *InsertPt)
static ConstantExpr * hasConstantExpr(Value *V)
llvm::Instruction Instruction
llvm::ConstantExpr ConstantExpr
llvm::IRBuilder IRBuilder
◆ ID
char BreakConstantGEPs::ID = 0 |
|
static |
The documentation for this class was generated from the following files: