Static Value-Flow Analysis
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | List of all members
SVF::BreakConstantGEPs Class Reference

#include <BreakConstantExpr.h>

Inheritance diagram for SVF::BreakConstantGEPs:

Public Member Functions

 BreakConstantGEPs ()
 
llvm::StringRef getPassName () const
 
virtual bool runOnModule (Module &M)
 

Static Public Attributes

static char ID = 0
 

Detailed Description

Definition at line 29 of file BreakConstantExpr.h.

Constructor & Destructor Documentation

◆ BreakConstantGEPs()

SVF::BreakConstantGEPs::BreakConstantGEPs ( )
inline

Definition at line 38 of file BreakConstantExpr.h.

38: ModulePass(ID) {}
llvm::ModulePass ModulePass
Definition BasicTypes.h:73

Member Function Documentation

◆ 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()

bool BreakConstantGEPs::runOnModule ( Module M)
virtual

Definition at line 188 of file BreakConstantExpr.cpp.

189{
190 bool modified = false;
191 for (Module::iterator F = module.begin(), E = module.end(); F != E; ++F)
192 {
193 // Worklist of values to check for constant GEP expressions
194 std::vector<Instruction* > Worklist;
195
196 //
197 // Initialize the worklist by finding all instructions that have one or more
198 // operands containing a constant GEP expression.
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 // Scan through the operands of this instruction. If it is a constant
206 // expression GEP, insert an instruction GEP before the instruction.
207 //
208 Instruction* I = &(*i);
209 for (u32_t index = 0; index < I->getNumOperands(); ++index)
210 {
211 if (hasConstantExpr(I->getOperand(index)))
212 {
213 Worklist.push_back (I);
214 }
215 }
216 }
217 }
218
219 //
220 // Determine whether we will modify anything.
221 //
222 if (Worklist.size()) modified = true;
223
224 //
225 // While the worklist is not empty, take an item from it, convert the
226 // operands into instructions if necessary, and determine if the newly
227 // added instructions need to be processed as well.
228 //
229 while (Worklist.size())
230 {
231 Instruction* I = Worklist.back();
232 Worklist.pop_back();
233
234 //
235 // Scan through the operands of this instruction and convert each into an
236 // instruction. Note that this works a little differently for phi
237 // instructions because the new instruction must be added to the
238 // appropriate predecessor block.
239 //
240 if (PHINode * PHI = SVFUtil::dyn_cast<PHINode>(I))
241 {
242 for (u32_t index = 0; index < PHI->getNumIncomingValues(); ++index)
243 {
244 //
245 // For PHI Nodes, if an operand is a constant expression with a GEP, we
246 // want to insert the new instructions in the predecessor basic block.
247 //
248 // Note: It seems that it's possible for a phi to have the same
249 // incoming basic block listed multiple times; this seems okay as long
250 // the same value is listed for the incoming block.
251 //
252 Instruction* InsertPt = PHI->getIncomingBlock(index)->getTerminator();
253 if (ConstantExpr * CE = hasConstantExpr(PHI->getIncomingValue(index)))
254 {
256 for (u32_t i2 = index; i2 < PHI->getNumIncomingValues(); ++i2)
257 {
258 if ((PHI->getIncomingBlock (i2)) == PHI->getIncomingBlock (index))
259 PHI->setIncomingValue (i2, NewInst);
260 }
261 Worklist.push_back (NewInst);
262 }
263 }
264 }
265 else
266 {
267 for (u32_t index = 0; index < I->getNumOperands(); ++index)
268 {
269 //
270 // For other instructions, we want to insert instructions replacing
271 // constant expressions immediately before the instruction using the
272 // constant expression.
273 //
274 if (ConstantExpr * CE = hasConstantExpr(I->getOperand(index)))
275 {
277 I->replaceUsesOfWith (CE, NewInst);
278 Worklist.push_back (NewInst);
279 }
280 }
281 }
282 }
283
284 }
285 return modified;
286}
static Instruction * convertExpression(ConstantExpr *CE, Instruction *InsertPt)
static ConstantExpr * hasConstantExpr(Value *V)
unsigned u32_t
Definition CommandLine.h:18
int index
Definition cJSON.h:170
llvm::Instruction Instruction
Definition BasicTypes.h:87
llvm::ConstantExpr ConstantExpr
Definition BasicTypes.h:120
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
llvm::PHINode PHINode
Definition BasicTypes.h:165

Member Data Documentation

◆ ID

char BreakConstantGEPs::ID = 0
static

Definition at line 37 of file BreakConstantExpr.h.


The documentation for this class was generated from the following files: