Static Value-Flow Analysis
Loading...
Searching...
No Matches
LLVMModule.h
Go to the documentation of this file.
1//===- LLVMModule.h -- LLVM Module class-----------------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24 * LLVMModule.h
25 *
26 * Created on: 23 Mar.2020
27 * Author: Yulei Sui
28 */
29
30#ifndef INCLUDE_SVF_FE_LLVMMODULE_H_
31#define INCLUDE_SVF_FE_LLVMMODULE_H_
32
33#include "SVF-LLVM/BasicTypes.h"
34#include "Util/Options.h"
35#include "Graphs/BasicBlockG.h"
36
37namespace SVF
38{
39
40class ObjTypeInference;
41
43{
44 friend class SVFIRBuilder;
45 friend class ICFGBuilder;
46 friend class SymbolTableBuilder;
47
48public:
49
50 typedef std::vector<const Function*> FunctionSetType;
54
61
67
71
73
74 typedef std::vector<const Function*> FunctionSet;
77
78private:
80 static bool preProcessed;
82 std::unique_ptr<LLVMContext> owned_ctx;
83 std::vector<std::unique_ptr<Module>> owned_modules;
84 std::vector<std::reference_wrapper<Module>> modules;
85
90
91 // Map SVFFunction to its annotations
93
96
102
109
111
116
120
123
124 void build();
125
126public:
128
130 {
131 if (!llvmModuleSet)
133 return llvmModuleSet;
134 }
135
137 {
138 delete llvmModuleSet;
139 llvmModuleSet = nullptr;
140 }
141
142 // Build an SVF module from a given LLVM Module instance (for use e.g. in a LLVM pass)
143 static void buildSVFModule(Module& mod);
144
145 // Build an SVF module from the bitcode files provided in `moduleNameVec`
146 static void buildSVFModule(const std::vector<std::string>& moduleNameVec);
147
148 static void preProcessBCs(std::vector<std::string>& moduleNameVec);
149
151 {
152 return modules.size();
153 }
154
155 const std::vector<std::reference_wrapper<Module>>& getLLVMModules() const
156 {
157 return modules;
158 }
159
161 {
162 return &getModuleRef(idx);
163 }
164
166 {
167 assert(idx < getModuleNum() && "Out of range.");
168 return modules[idx];
169 }
170
171 // Dump modules to files
172 void dumpModulesToFile(const std::string& suffix);
173
174public:
175
176 inline const BasicBlock* getFunExitBB(const Function* fun) const
177 {
178 auto it = funToExitBB.find(fun);
179 if (it == funToExitBB.end()) return nullptr;
180 else return it->second;
181 }
182
183 inline const Function* getRealDefFun(const Function* fun) const
184 {
185 auto it = funToRealDefFun.find(fun);
186 if (it == funToRealDefFun.end()) return nullptr;
187 else return it->second;
188 }
189
190 inline const FunctionSet& getFunctionSet() const
191 {
192 return funSet;
193 }
194
195 inline u32_t getValueNodeNum() const
196 {
197 return valSymMap.size();
198 }
199
200 inline u32_t getObjNodeNum() const
201 {
202 return objSymMap.size();
203 }
204
206 {
207 return valSymMap;
208 }
209
211 {
212 return objSymMap;
213 }
214
217 NodeID getValueNode(const Value* V);
218
219 bool hasValueNode(const Value* V);
220
223 NodeID getObjectNode(const Value* V);
224
225 void dumpSymTable();
226
227public:
228
229 // create a SVFBasicBlock according to LLVM BasicBlock, then add it to SVFFunction's BasicBlockGraph
230 inline void addBasicBlock(FunObjVar* fun, const BasicBlock* bb)
231 {
232 SVFBasicBlock* svfBB = fun->getBasicBlockGraph()->addBasicBlock(bb->getName().str());
233 LLVMBB2SVFBB[bb] = svfBB;
235 }
236
238 {
239 CSToCallNodeMap[inst] = svfInst;
241 }
243 {
244 CSToRetNodeMap[inst] = svfInst;
246 }
248 {
251 }
252
253 const Value* getLLVMValue(const SVFValue* value) const
254 {
255 SVFBaseNode2LLVMValueMap ::const_iterator it = SVFBaseNode2LLVMValue.find(value);
256 assert(it != SVFBaseNode2LLVMValue.end() && "can't find corresponding llvm value!");
257 return it->second;
258 }
259
260 inline const FunObjVar* getFunObjVar(const Function* fun) const
261 {
262 LLVMFun2FunObjVarMap::const_iterator it = LLVMFun2FunObjVar.find(fun);
263 assert(it!=LLVMFun2FunObjVar.end() && "SVF Function not found!");
264 return it->second;
265 }
266
268 {
269 return returnSymMap;
270 }
271
273 {
274 return varargSymMap;
275 }
276
278 {
279 FunToIDMapTy::const_iterator iter = returnSymMap.find(func);
280 assert(iter!=returnSymMap.end() && "ret sym not found");
281 return iter->second;
282 }
283
285 {
286 FunToIDMapTy::const_iterator iter = varargSymMap.find(func);
287 assert(iter!=varargSymMap.end() && "vararg sym not found");
288 return iter->second;
289 }
290
292 {
293 LLVMBB2SVFBBMap::const_iterator it = LLVMBB2SVFBB.find(bb);
294 assert(it!=LLVMBB2SVFBB.end() && "SVF BasicBlock not found!");
295 return it->second;
296 }
297
299 inline const Function* getFunction(const std::string& name)
300 {
301 Function* fun = nullptr;
302
303 for (u32_t i = 0; i < llvmModuleSet->getModuleNum(); ++i)
304 {
306 fun = mod->getFunction(name);
307 if (fun)
308 {
309 return fun;
310 }
311 }
312 return nullptr;
313 }
314
316 const FunObjVar* getFunObjVar(const std::string& name);
317
318 ICFGNode* getICFGNode(const Instruction* inst);
319
320 bool hasICFGNode(const Instruction* inst);
321
328
331 {
333 assert(b && "Function entry not created?");
334 return b;
335 }
338 {
340 assert(b && "Function exit not created?");
341 return b;
342 }
343
344
346 bool hasGlobalRep(const GlobalVariable* val) const
347 {
348 GlobalDefToRepMapTy::const_iterator it = GlobalDefToRepMap.find(val);
349 return it != GlobalDefToRepMap.end();
350 }
351
353 {
354 GlobalDefToRepMapTy::const_iterator it = GlobalDefToRepMap.find(val);
355 assert(it != GlobalDefToRepMap.end() && "has no rep?");
356 return it->second;
357 }
358
360 {
361 assert(!empty() && "empty LLVM module!!");
362 for (size_t i = 0; i < getModuleNum(); ++i)
363 {
364 Module& module = getModuleRef(i);
365 if (module.getName().str() != ExtAPI::getExtAPI()->getExtBcPath())
366 {
367 return &module;
368 }
369 }
370 assert(false && "no main module found!");
371 return nullptr;
372 }
373
375 {
376 assert(!empty() && "empty LLVM module!!");
377 return getMainLLVMModule()->getContext();
378 }
379
380 bool empty() const
381 {
382 return getModuleNum() == 0;
383 }
384
386 SVFType* getSVFType(const Type* T);
388 const Type* getLLVMType(const SVFType* T) const;
389
391
392 DominatorTree& getDomTree(const Function* fun);
393
394 std::string getExtFuncAnnotation(const Function* fun, const std::string& funcAnnotation);
395
396 const std::vector<std::string>& getExtFuncAnnotations(const Function* fun);
397
398 // Does (F) have some annotation?
399 bool hasExtFuncAnnotation(const Function* fun, const std::string& funcAnnotation);
400
401 // Does (F) have a static var X (unavailable to us) that its return points to?
402 bool has_static(const Function *F);
403
404 // Does (F) have a memcpy_like operation?
405 bool is_memcpy(const Function *F);
406
407 // Does (F) have a memset_like operation?
408 bool is_memset(const Function *F);
409
410 // Does (F) allocate a new object and return it?
411 bool is_alloc(const Function *F);
412
413 // Does (F) allocate a new object and assign it to one of its arguments?
414 bool is_arg_alloc(const Function *F);
415
416 // Does (F) allocate a new stack object and return it?
417 bool is_alloc_stack_ret(const Function *F);
418
419 // Get the position of argument which holds the new object
421
422 // Does (F) reallocate a new object?
423 bool is_realloc(const Function *F);
424
425 // Should (F) be considered "external" (either not defined in the program
426 // or a user-defined version of a known alloc or no-op)?
427 bool is_ext(const Function *F);
428
429 // Set the annotation of (F)
430 void setExtFuncAnnotations(const Function* fun, const std::vector<std::string>& funcAnnotations);
431
432private:
433 inline void addFunctionSet(const Function* svfFunc)
434 {
435 funSet.push_back(svfFunc);
436 }
437
438 inline void setFunExitBB(const Function* fun, const BasicBlock* bb)
439 {
440 funToExitBB[fun] = bb;
441 }
442
443 inline void setFunRealDefFun(const Function* fun, const Function* realDefFun)
444 {
445 funToRealDefFun[fun] = realDefFun;
446 }
448 SVFType* addSVFTypeInfo(const Type* t);
450 StInfo* collectTypeInfo(const Type* ty);
457
458 std::vector<const Function*> getLLVMGlobalFunctions(const GlobalVariable* global);
459
460 void loadModules(const std::vector<std::string>& moduleNameVec);
461 // Loads ExtAPI bitcode file; uses LLVMContext made while loading module bitcode files or from Module
462 void loadExtAPIModules();
463 void addSVFMain();
464
466
468 void buildFunToFunMap();
471 void prePassSchedule();
472 void buildSymbolTable() const;
474
477 {
478 CSToCallNodeMapTy::const_iterator it = CSToCallNodeMap.find(cs);
479 if (it == CSToCallNodeMap.end())
480 return nullptr;
481 return it->second;
482 }
483
486 {
487 CSToRetNodeMapTy::const_iterator it = CSToRetNodeMap.find(cs);
488 if (it == CSToRetNodeMap.end())
489 return nullptr;
490 return it->second;
491 }
492
494 {
495 InstToBlockNodeMapTy::const_iterator it = InstToBlockNodeMap.find(inst);
496 if (it == InstToBlockNodeMap.end())
497 return nullptr;
498 return it->second;
499 }
500
503 {
504 FunToFunEntryNodeMapTy::const_iterator it = FunToFunEntryNodeMap.find(fun);
505 if (it == FunToFunEntryNodeMap.end())
506 return nullptr;
507 return it->second;
508 }
509
512 {
513 FunToFunExitNodeMapTy::const_iterator it = FunToFunExitNodeMap.find(fun);
514 if (it == FunToFunExitNodeMap.end())
515 return nullptr;
516 return it->second;
517 }
518};
519
520} // End namespace SVF
521
522#endif /* INCLUDE_SVF_FE_LLVMMODULE_H_ */
const cJSON *const b
Definition cJSON.h:255
const char *const name
Definition cJSON.h:264
SVFBasicBlock * addBasicBlock(const std::string &bbname)
std::string getExtBcPath()
Definition ExtAPI.cpp:120
static ExtAPI * getExtAPI()
Definition ExtAPI.cpp:43
BasicBlockGraph * getBasicBlockGraph()
bool hasValueNode(const Value *V)
NodeID getValueNode(const Value *V)
IntraICFGNode * getIntraBlock(const Instruction *inst)
Definition LLVMModule.h:493
LLVMType2SVFTypeMap LLVMType2SVFType
Definition LLVMModule.h:99
ValueToIDMapTy & valSyms()
Definition LLVMModule.h:205
bool is_alloc_stack_ret(const Function *F)
std::vector< const Function * > getLLVMGlobalFunctions(const GlobalVariable *global)
bool hasGlobalRep(const GlobalVariable *val) const
Global to rep.
Definition LLVMModule.h:346
LLVMBB2SVFBBMap LLVMBB2SVFBB
Definition LLVMModule.h:98
FunToIDMapTy & retSyms()
Definition LLVMModule.h:267
FunExitICFGNode * getFunExitBlock(const Function *fun)
Get/Add a function exit node.
Definition LLVMModule.h:511
void buildSymbolTable() const
std::vector< const Function * > FunctionSetType
Definition LLVMModule.h:50
Module * getMainLLVMModule() const
Definition LLVMModule.h:359
const FunObjVar * getFunObjVar(const Function *fun) const
Definition LLVMModule.h:260
ValueToIDMapTy valSymMap
map a value to its sym id
Definition LLVMModule.h:112
Map< const Function *, FunObjVar * > LLVMFun2FunObjVarMap
Definition LLVMModule.h:55
StInfo * collectTypeInfo(const Type *ty)
Collect a type info.
InstToBlockNodeMapTy InstToBlockNodeMap
map a basic block to its ICFGNode
Definition LLVMModule.h:106
static LLVMModuleSet * getLLVMModuleSet()
Definition LLVMModule.h:129
void setFunRealDefFun(const Function *fun, const Function *realDefFun)
Definition LLVMModule.h:443
GlobalVariable * getGlobalRep(const GlobalVariable *val) const
Definition LLVMModule.h:352
SVFBasicBlock * getSVFBasicBlock(const BasicBlock *bb)
Definition LLVMModule.h:291
Map< const Function *, FunEntryICFGNode * > FunToFunEntryNodeMapTy
Definition LLVMModule.h:65
void loadModules(const std::vector< std::string > &moduleNameVec)
u32_t getObjNodeNum() const
Definition LLVMModule.h:200
std::vector< const Function * > FunctionSet
Definition LLVMModule.h:74
ObjTypeInference * typeInference
Definition LLVMModule.h:101
static void releaseLLVMModuleSet()
Definition LLVMModule.h:136
static void preProcessBCs(std::vector< std::string > &moduleNameVec)
static bool preProcessed
Definition LLVMModule.h:80
Map< const Function *, const BasicBlock * > FunToExitBBMap
Definition LLVMModule.h:75
Module & getModuleRef(u32_t idx) const
Definition LLVMModule.h:165
FunEntryICFGNode * getFunEntryICFGNode(const Function *fun)
Add a function entry node.
Definition LLVMModule.h:330
void addInstructionMap(const Instruction *inst, CallICFGNode *svfInst)
Definition LLVMModule.h:237
Map< const Type *, StInfo * > Type2TypeInfoMap
Definition LLVMModule.h:59
void addInstructionMap(const Instruction *inst, RetICFGNode *svfInst)
Definition LLVMModule.h:242
Map< const BasicBlock *, SVFBasicBlock * > LLVMBB2SVFBBMap
Definition LLVMModule.h:56
DominatorTree & getDomTree(const Function *fun)
FunToRealDefFunMap funToRealDefFun
Definition LLVMModule.h:119
void addToSVFVar2LLVMValueMap(const Value *val, SVFValue *svfBaseNode)
Map< const Function *, const Function * > FunToRealDefFunMap
Definition LLVMModule.h:76
OrderedMap< const Value *, NodeID > ValueToIDMapTy
Definition LLVMModule.h:70
LLVMFun2FunObjVarMap LLVMFun2FunObjVar
Map an LLVM Function to an SVF Funobjvar.
Definition LLVMModule.h:97
RetICFGNode * getRetBlock(const Instruction *cs)
Get/Add a return node.
Definition LLVMModule.h:485
std::unique_ptr< LLVMContext > owned_ctx
Definition LLVMModule.h:82
FunToIDMapTy varargSymMap
vararg map
Definition LLVMModule.h:115
void createSVFDataStructure()
Map< const GlobalVariable *, GlobalVariable * > GlobalDefToRepMapTy
Definition LLVMModule.h:53
StInfo * collectSimpleTypeInfo(const Type *T)
Collect simple type (non-aggregate) info.
bool is_alloc(const Function *F)
Map< const Instruction *, RetICFGNode * > CSToRetNodeMapTy
Definition LLVMModule.h:63
Map< const Instruction *, IntraICFGNode * > InstToBlockNodeMapTy
Definition LLVMModule.h:64
const Value * getLLVMValue(const SVFValue *value) const
Definition LLVMModule.h:253
const std::vector< std::string > & getExtFuncAnnotations(const Function *fun)
SVFType * getSVFType(const Type *T)
Get or create SVFType and typeinfo.
void setFunExitBB(const Function *fun, const BasicBlock *bb)
Definition LLVMModule.h:438
const Type * getLLVMType(const SVFType *T) const
Get LLVM Type.
NodeID getReturnNode(const Function *func) const
Definition LLVMModule.h:277
Map< const Function *, FunExitICFGNode * > FunToFunExitNodeMapTy
Definition LLVMModule.h:66
void setExtFuncAnnotations(const Function *fun, const std::vector< std::string > &funcAnnotations)
bool hasICFGNode(const Instruction *inst)
CallICFGNode * getCallBlock(const Instruction *cs)
Get/Add a call node.
Definition LLVMModule.h:476
ValueToIDMapTy objSymMap
map a obj reference to its sym id
Definition LLVMModule.h:113
Map< const SVFValue *, const Value * > SVFBaseNode2LLVMValueMap
Definition LLVMModule.h:57
OrderedMap< const Function *, NodeID > FunToIDMapTy
Definition LLVMModule.h:72
ICFGNode * getICFGNode(const Instruction *inst)
Get a basic block ICFGNode.
const Function * getFunction(const std::string &name)
Get the corresponding Function based on its name.
Definition LLVMModule.h:299
NodeID getVarargNode(const Function *func) const
Definition LLVMModule.h:284
CallICFGNode * getCallICFGNode(const Instruction *cs)
get a call node
Fun2AnnoMap ExtFun2Annotations
Record annotations of function in extapi.bc.
Definition LLVMModule.h:89
bool is_arg_alloc(const Function *F)
Map< const Function *, std::vector< std::string > > func2Annotations
Definition LLVMModule.h:92
const BasicBlock * getFunExitBB(const Function *fun) const
Definition LLVMModule.h:176
NodeID getObjectNode(const Value *V)
Module * getModule(u32_t idx) const
Definition LLVMModule.h:160
RetICFGNode * getRetICFGNode(const Instruction *cs)
get a return node
void prePassSchedule()
Invoke llvm passes to modify module.
bool has_static(const Function *F)
StInfo * collectStructInfo(const StructType *structTy, u32_t &numFields)
Collect the struct info and set the number of fields after flattening.
CSToCallNodeMapTy CSToCallNodeMap
map a callsite to its CallICFGNode
Definition LLVMModule.h:104
s32_t get_alloc_arg_pos(const Function *F)
void addFunctionSet(const Function *svfFunc)
Definition LLVMModule.h:433
FunToIDMapTy returnSymMap
return map
Definition LLVMModule.h:114
const std::vector< std::reference_wrapper< Module > > & getLLVMModules() const
Definition LLVMModule.h:155
LLVMContext & getContext() const
Definition LLVMModule.h:374
bool is_ext(const Function *F)
Map< const Function *, DominatorTree > FunToDominatorTree
Definition LLVMModule.h:110
CSToRetNodeMapTy CSToRetNodeMap
map a callsite to its RetICFGNode
Definition LLVMModule.h:105
static void buildSVFModule(Module &mod)
SVFBaseNode2LLVMValueMap SVFBaseNode2LLVMValue
Definition LLVMModule.h:103
FunExitICFGNode * getFunExitICFGNode(const Function *fun)
Add a function exit node.
Definition LLVMModule.h:337
FunToExitBBMap funToExitBB
Definition LLVMModule.h:118
StInfo * collectArrayInfo(const ArrayType *T)
Collect the array info.
LLVMModuleSet()
Constructor.
void buildGlobalDefToRepMap()
SVFType * addSVFTypeInfo(const Type *t)
Create SVFTypes.
FunctionSet funSet
Definition LLVMModule.h:117
FunEntryICFGNode * getFunEntryBlock(const Function *fun)
Get/Add a function entry node.
Definition LLVMModule.h:502
u32_t getValueNodeNum() const
Definition LLVMModule.h:195
Map< const Instruction *, CallICFGNode * > CSToCallNodeMapTy
Definition LLVMModule.h:62
void addInstructionMap(const Instruction *inst, IntraICFGNode *svfInst)
Definition LLVMModule.h:247
FunctionSetType ExtFuncsVec
Record some "sse_" function declarations used in other ext function definition, e....
Definition LLVMModule.h:87
bool hasExtFuncAnnotation(const Function *fun, const std::string &funcAnnotation)
FunToFunEntryNodeMapTy FunToFunEntryNodeMap
map a function to its FunExitICFGNode
Definition LLVMModule.h:107
const Function * getRealDefFun(const Function *fun) const
Definition LLVMModule.h:183
static LLVMModuleSet * llvmModuleSet
Definition LLVMModule.h:79
IntraICFGNode * getIntraICFGNode(const Instruction *inst)
get a intra node
std::vector< std::reference_wrapper< Module > > modules
Definition LLVMModule.h:84
Map< const Function *, const Function * > FunDeclToDefMapTy
Definition LLVMModule.h:51
ValueToIDMapTy & objSyms()
Definition LLVMModule.h:210
std::string getExtFuncAnnotation(const Function *fun, const std::string &funcAnnotation)
FunToFunExitNodeMapTy FunToFunExitNodeMap
map a function to its FunEntryICFGNode
Definition LLVMModule.h:108
bool empty() const
Definition LLVMModule.h:380
Map< std::string, std::vector< std::string > > Fun2AnnoMap
Definition LLVMModule.h:60
u32_t getModuleNum() const
Definition LLVMModule.h:150
GlobalDefToRepMapTy GlobalDefToRepMap
Global definition to a rep definition map.
Definition LLVMModule.h:95
std::vector< std::unique_ptr< Module > > owned_modules
Definition LLVMModule.h:83
void addBasicBlock(FunObjVar *fun, const BasicBlock *bb)
Definition LLVMModule.h:230
bool is_memset(const Function *F)
FunToIDMapTy & varargSyms()
Definition LLVMModule.h:272
const FunctionSet & getFunctionSet() const
Definition LLVMModule.h:190
Map< const Type *, SVFType * > LLVMType2SVFTypeMap
Definition LLVMModule.h:58
Type2TypeInfoMap Type2TypeInfo
Definition LLVMModule.h:100
Map< const Function *, FunctionSetType > FunDefToDeclsMapTy
Definition LLVMModule.h:52
void dumpModulesToFile(const std::string &suffix)
void collectExtFunAnnotations(const Module *mod)
bool is_memcpy(const Function *F)
ObjTypeInference * getTypeInference()
bool is_realloc(const Function *F)
for isBitcode
Definition BasicTypes.h:68
llvm::GlobalVariable GlobalVariable
Definition BasicTypes.h:130
llvm::ArrayType ArrayType
Definition BasicTypes.h:95
llvm::Type Type
Definition BasicTypes.h:83
llvm::BasicBlock BasicBlock
Definition BasicTypes.h:86
llvm::StructType StructType
LLVM types.
Definition BasicTypes.h:94
u32_t NodeID
Definition GeneralType.h:56
llvm::Function Function
Definition BasicTypes.h:85
llvm::Instruction Instruction
Definition BasicTypes.h:87
llvm::Value Value
LLVM Basic classes.
Definition BasicTypes.h:82
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
signed s32_t
Definition GeneralType.h:48
llvm::Module Module
Definition BasicTypes.h:84
unsigned u32_t
Definition GeneralType.h:47
llvm::DominatorTree DominatorTree
LLVM Dominators.
Definition BasicTypes.h:133
llvm::LLVMContext LLVMContext
Definition BasicTypes.h:70