Static Value-Flow Analysis
|
#include <SVFIRBuilder.h>
Private Member Functions | |
LLVMModuleSet * | llvmModuleSet () |
Private Attributes | |
SVFIR * | pag |
const SVFBasicBlock * | curBB |
Current basic block during SVFIR construction when visiting the module. | |
const Value * | curVal |
Current Value during SVFIR construction when visiting the module. | |
SVFIR Builder to create SVF variables and statements and PAG
Definition at line 45 of file SVFIRBuilder.h.
|
inline |
Constructor.
Definition at line 55 of file SVFIRBuilder.h.
|
inlinevirtual |
Add Address edge.
Definition at line 299 of file SVFIRBuilder.h.
|
inlineprotected |
Add Address edge from ext call with args like "%5 = call i8* @malloc(i64 noundef 5)".
Definition at line 321 of file SVFIRBuilder.h.
|
inlineprotected |
Add Address edge from allocinst with arraysize like "%4 = alloca i8, i64 3".
Definition at line 310 of file SVFIRBuilder.h.
|
inlineprotected |
Add Copy edge.
Definition at line 433 of file SVFIRBuilder.h.
|
inlineprotected |
Definition at line 292 of file SVFIRBuilder.h.
|
inlineprotected |
Add Branch statement.
Definition at line 445 of file SVFIRBuilder.h.
|
inlineprotected |
Add Call edge.
Definition at line 469 of file SVFIRBuilder.h.
|
inlineprotected |
Add Copy edge.
Definition at line 427 of file SVFIRBuilder.h.
|
protectedvirtual |
Add the load/store constraints and temp. nodes for the complex constraint *D = *S (where D/S may point to structs).
If sz is 0, we will add edges for all fields.
Definition at line 82 of file SVFIRExtAPI.cpp.
|
inlineprotected |
Definition at line 367 of file SVFIRBuilder.h.
void SVF::SVFIRBuilder::addEdge | ( | NodeID | src, |
NodeID | dst, | ||
SVFStmt::PEDGEK | kind, | ||
APOffset | offset = 0 , |
||
Instruction * | cs = nullptr |
||
) |
|
inlineprotected |
Add Gep edge.
Definition at line 481 of file SVFIRBuilder.h.
|
inlineprotected |
Add global black hole Address edge.
Definition at line 267 of file SVFIRBuilder.h.
Add Load edge.
Definition at line 451 of file SVFIRBuilder.h.
|
inlineprotected |
Add Offset(Gep) edge.
Definition at line 487 of file SVFIRBuilder.h.
|
inlineprotected |
Add NullPtr PAGNode.
Definition at line 277 of file SVFIRBuilder.h.
|
inlineprotected |
Add Copy edge.
If we already added this phi node, then skip this adding
Definition at line 414 of file SVFIRBuilder.h.
|
inlineprotected |
Add Return edge.
Definition at line 475 of file SVFIRBuilder.h.
|
inlineprotected |
Add SelectStmt.
Definition at line 421 of file SVFIRBuilder.h.
Add Store edge.
Definition at line 457 of file SVFIRBuilder.h.
|
inlineprotected |
Add Thread fork edge for parameter passing.
Definition at line 499 of file SVFIRBuilder.h.
|
inlineprotected |
Add Thread join edge for parameter passing.
Definition at line 505 of file SVFIRBuilder.h.
Add Unary edge.
Definition at line 439 of file SVFIRBuilder.h.
|
inlineprotected |
Add Variant(Gep) edge.
Definition at line 493 of file SVFIRBuilder.h.
|
virtual |
Start building SVFIR here.
Start building SVFIR here
build icfg
initial external library information initial SVFIR nodes
initial SVFIR edges: // handle globals
build callgraph
handle functions
collect return node of function fun
Return SVFIR node will not be created for function which can not reach the return instruction due to call to abort(), exit(), etc. In 176.gcc of SPEC 2000, function build_objc_string() from c-lang.c shows an example when fun.doesNotReturn() evaluates to TRUE because of abort().
To be noted, we do not record arguments which are in declared function without body TODO: what about external functions with SVFIR imported by commandline?
Definition at line 52 of file SVFIRBuilder.cpp.
|
protected |
Compute offset of a gep instruction or gep constant expression.
Return the object node offset according to GEP insn (V). Given a gep edge p = q + i, if "i" is a constant then we return its offset size otherwise if "i" is a variable determined by runtime, then it is a variant offset Return TRUE if the offset of this GEP insn is a constant.
Definition at line 640 of file SVFIRBuilder.cpp.
void SVFIRBuilder::createFunObjVars | ( | ) |
set fun in bb
Definition at line 329 of file SVFIRBuilder.cpp.
|
protected |
Get a base SVFVar given a pointer Return the source node of its connected normal gep edge Otherwise return the node id itself s32_t offset : gep offset
if this node is already a base node
Definition at line 1785 of file SVFIRBuilder.cpp.
|
protectedvirtual |
Handle external call.
Find the base type and the max possible offset of an object pointed to by (V).
use user-specified size for this copy operation if the size is a constaint int
Definition at line 44 of file SVFIRExtAPI.cpp.
Get the base value of (i8* src and i8* dst) for external argument (e.g. memcpy(i8* dst, i8* src, int size))
Example 1:
%0 = getelementptr inbounds struct.outer, struct.inner base, i32 0, i32 0 call void @llvm.memcpy(ptr inner, ptr %0, i64 24, i1 false) The base value for %0 is base. Note: the base is recognized as the base value if the offset (field index) is 0
Example 2: https://github.com/SVF-tools/SVF/issues/1650 https://github.com/SVF-tools/SVF/pull/1652
@i1 = dso_local global struct.inner { i32 0, ptr @f1, ptr @f2 } @n1 = dso_local global struct.outer { i32 0, ptr @i1 }
inner = alloca struct.inner %0 = load ptr, ptr getelementptr inbounds (struct.outer, ptr @n1, i32 0, i32 1) call void @llvm.memcpy(ptr inner, ptr %0, i64 24, i1 false)
The base value for %0 is @i1
Definition at line 1525 of file SVFIRBuilder.cpp.
|
inlineprotected |
Definition at line 377 of file SVFIRBuilder.h.
|
inlineprotected |
Definition at line 261 of file SVFIRBuilder.h.
Definition at line 257 of file SVFIRBuilder.h.
|
protected |
Add a temp field value node according to base value and offset this node is after the initial node method, it is out of scope of symInfo table
Definition at line 1643 of file SVFIRBuilder.cpp.
|
protected |
Get the field of the global variable node FIXME:Here we only get the field that actually used in the program We ignore the initialization of global variable field that not used in the program
if we did not find the constant expression in the program, then we need to create a gep node for this field
Definition at line 844 of file SVFIRBuilder.cpp.
GetObject - Return the object node (stack/global/heap/function) according to a LLVM Value.
Definition at line 105 of file SVFIRBuilder.h.
|
inline |
getReturnNode - Return the node representing the unique return value of a function.
Definition at line 111 of file SVFIRBuilder.h.
Get different kinds of node.
Definition at line 95 of file SVFIRBuilder.h.
getVarargNode - Return the node representing the unique variadic argument of a function.
Definition at line 117 of file SVFIRBuilder.h.
Handle direct call.
Add the constraints for a direct, non-external call.
FIXME: this assertion should be placed for correct checking except bug program like 188.ammp, 300.twolf
Definition at line 1441 of file SVFIRBuilder.cpp.
pthread_create has 1 arg. apr_thread_create has 2 arg.
Connect actual parameter to formal parameter of the start routine
handle indirect calls at pthread create APIs e.g., pthread_create(&t1, nullptr, fp, ...); const Value* fun = ThreadAPI::getThreadAPI()->getForkedFun(inst); if(!SVFUtilisa<Function>(fun)) pag->addIndirectCallsites(cs,pag->getValueNode(fun));
If forkedFun does not pass to spawnee as function type but as void pointer remember to update inter-procedural callgraph/SVFIR/SVFG etc. when indirect call targets are resolved We don't connect the callgraph here, further investigation is need to handle mod-ref during SVFG construction.
TODO: inter-procedural SVFIR edges for thread joins
Definition at line 128 of file SVFIRExtAPI.cpp.
|
protected |
Handle indirect call.
Indirect call is resolved on-the-fly during pointer analysis
Definition at line 1576 of file SVFIRBuilder.cpp.
|
protected |
Infer field index from byteoffset.
Definition at line 629 of file SVFIRBuilder.cpp.
Definition at line 261 of file SVFIRBuilder.cpp.
void SVFIRBuilder::initFunObjVar | ( | ) |
Function
set realDefFun for all functions
Definition at line 190 of file SVFIRBuilder.cpp.
|
protected |
src should not point to anything yet
Definition at line 871 of file SVFIRBuilder.cpp.
void SVFIRBuilder::initialiseBaseObjVars | ( | ) |
Definition at line 371 of file SVFIRBuilder.cpp.
void SVFIRBuilder::initialiseNodes | ( | ) |
Initialize nodes and edges.
add address edges for constant nodes.
add argvalvar for svffunctions
Definition at line 534 of file SVFIRBuilder.cpp.
void SVFIRBuilder::initialiseValVars | ( | ) |
Definition at line 456 of file SVFIRBuilder.cpp.
set exit block: exit basic block must have no successors and have a return instruction
Definition at line 218 of file SVFIRBuilder.cpp.
|
inlineprivate |
Definition at line 515 of file SVFIRBuilder.h.
Process constant expression.
Handle constant expression, and connect the gep edge
Definition at line 713 of file SVFIRBuilder.cpp.
void SVFIRBuilder::sanityCheck | ( | ) |
Sanity check for SVFIR.
Definition at line 1617 of file SVFIRBuilder.cpp.
|
protected |
We assume every GepValVar and its GepStmt are unique across whole program
We will have one unique function exit ICFGNode for all returns
Definition at line 1698 of file SVFIRBuilder.cpp.
|
inlineprotected |
Set current basic block in order to keep track of control flow information.
Definition at line 247 of file SVFIRBuilder.h.
|
inlineprotected |
Definition at line 252 of file SVFIRBuilder.h.
void SVFIRBuilder::updateCallGraph | ( | CallGraph * | callgraph | ) |
connect PAG edges based on callgraph
Definition at line 1582 of file SVFIRBuilder.cpp.
|
virtual |
Our visit overrides.
Visit alloca instructions Add edge V (dst) <– O (src), V here is a value node on SVFIR, O is object node on SVFIR
Definition at line 1002 of file SVFIRBuilder.cpp.
|
inline |
Definition at line 192 of file SVFIRBuilder.h.
|
inline |
Definition at line 196 of file SVFIRBuilder.h.
void SVFIRBuilder::visitBinaryOperator | ( | BinaryOperator & | inst | ) |
Visit Binary Operator
Definition at line 1117 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitBranchInst | ( | BranchInst & | inst | ) |
Branch and switch instructions are treated as UnaryOP br cmp label if.then, label if.else
set conditional svf var
Definition at line 1296 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitCallBrInst | ( | CallBrInst & | I | ) |
Definition at line 1184 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitCallInst | ( | CallInst & | I | ) |
Definition at line 1174 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitCallSite | ( | CallBase * | cs | ) |
Collect callsite arguments and returns
Definition at line 1192 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitCastInst | ( | CastInst & | I | ) |
Definition at line 1103 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitCmpInst | ( | CmpInst & | inst | ) |
Visit compare instruction
Definition at line 1145 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitExtractElementInst | ( | ExtractElementInst & | inst | ) |
The �extractelement� instruction extracts a single scalar element from a vector at a specified index. TODO: for now we just assume the pointer after extraction points to blackhole The first operand of an �extractelement� instruction is a value of vector type. The second operand is an index indicating the position from which to extract the element.
<result> = extractelement <4 x i32> vec, i32 0 ; yields i32
Definition at line 1286 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitExtractValueInst | ( | ExtractValueInst & | inst | ) |
visit extract value instructions for structures in registers TODO: for now we just assume the pointer after extraction points to blackhole for example %24 = extractvalue { i32, struct.s_hash* } call34, 0 %24 is a pointer points to first field of a register value call34 however we can not create call34 as an memory object, as it is register value. Is that necessary treat extract value as getelementptr instruction later to get more precise results?
Definition at line 1272 of file SVFIRBuilder.cpp.
|
inline |
Definition at line 188 of file SVFIRBuilder.h.
void SVFIRBuilder::visitFreezeInst | ( | FreezeInst & | inst | ) |
<result> = freeze ty <val> If <val> is undef or poison, ‘freeze’ returns an arbitrary, but fixed value of type ty
Otherwise, this instruction is a no-op and returns the input <val>
<result> = freeze ty <val> If <val> is undef or poison, ‘freeze’ returns an arbitrary, but fixed value of type ty
Otherwise, this instruction is a no-op and returns the input <val> For now, we assume <val> is never a poison or undef.
Definition at line 1426 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitGetElementPtrInst | ( | GetElementPtrInst & | inst | ) |
Visit getelementptr instructions
Definition at line 1077 of file SVFIRBuilder.cpp.
|
protected |
Handle globals including (global variable and functions)
Visit global variables for building SVFIR
initialize global variable
initialize global functions
Definition at line 949 of file SVFIRBuilder.cpp.
|
inline |
Definition at line 168 of file SVFIRBuilder.h.
|
inline |
Definition at line 142 of file SVFIRBuilder.h.
|
inline |
Provide base case for our instruction visit.
Definition at line 202 of file SVFIRBuilder.h.
void SVFIRBuilder::visitInvokeInst | ( | InvokeInst & | II | ) |
Definition at line 1179 of file SVFIRBuilder.cpp.
|
inline |
Definition at line 176 of file SVFIRBuilder.h.
void SVFIRBuilder::visitLoadInst | ( | LoadInst & | I | ) |
Definition at line 1045 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitPHINode | ( | PHINode & | inst | ) |
Visit phi instructions
Definition at line 1020 of file SVFIRBuilder.cpp.
|
inline |
void SVFIRBuilder::visitReturnInst | ( | ReturnInst & | inst | ) |
Visit return instructions of a function
Definition at line 1243 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitSelectInst | ( | SelectInst & | inst | ) |
Visit select instructions
Two operands have same incoming basic block, both are the current BB
Definition at line 1161 of file SVFIRBuilder.cpp.
|
inline |
Definition at line 172 of file SVFIRBuilder.h.
void SVFIRBuilder::visitStoreInst | ( | StoreInst & | inst | ) |
Visit store instructions
Definition at line 1059 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitSwitchInst | ( | SwitchInst & | inst | ) |
The following implementation follows ICFGBuilder::processFunBody.
See more: https://github.com/SVF-tools/SVF/pull/1191
Given the code:
switch (a) { case 0: printf("0\n"); break; case 1: case 2: case 3: printf("a >=1 && a <= 3\n"); break; case 4: case 6: case 7: printf("a >= 4 && a <=7\n"); break; default: printf("a < 0 || a > 7"); break; }
Generate the IR:
switch i32 %0, label sw.default [ i32 0, label sw.bb i32 1, label sw.bb1 i32 2, label sw.bb1 i32 3, label sw.bb1 i32 4, label sw.bb3 i32 6, label sw.bb3 i32 7, label sw.bb3 ]
We can get every case basic block and related case value: [ {sw.default, -1}, {sw.bb, 0}, {sw.bb1, 1}, {sw.bb1, 2}, {sw.bb1, 3}, {sw.bb3, 4}, {sw.bb3, 6}, {sw.bb3, 7}, ] Note: default case value is nullptr For larger number, we preserve case value just -1 now see more: https://github.com/SVF-tools/SVF/pull/992
branch condition value
default case is set to -1;
set conditional svf var
Definition at line 1378 of file SVFIRBuilder.cpp.
void SVFIRBuilder::visitUnaryOperator | ( | UnaryOperator & | inst | ) |
Visit Unary Operator
Definition at line 1132 of file SVFIRBuilder.cpp.
|
inline |
Definition at line 185 of file SVFIRBuilder.h.
void SVFIRBuilder::visitVAArgInst | ( | VAArgInst & | inst | ) |
TODO: var arguments need to be handled. https://llvm.org/docs/LangRef.html#id1911
ap = alloca struct.va_list ap2 = bitcast struct.va_list* ap to i8* ; Read a single integer argument from ap2 tmp = va_arg i8* ap2, i32 (VAArgInst) TODO: for now, create a copy edge from ap2 to tmp, we assume here tmp should point to the n-th argument of the var_args
Definition at line 1414 of file SVFIRBuilder.cpp.
|
inline |
Definition at line 157 of file SVFIRBuilder.h.
|
inline |
Definition at line 158 of file SVFIRBuilder.h.
|
inline |
Definition at line 159 of file SVFIRBuilder.h.
|
private |
Current basic block during SVFIR construction when visiting the module.
Definition at line 50 of file SVFIRBuilder.h.
Current Value during SVFIR construction when visiting the module.
Definition at line 51 of file SVFIRBuilder.h.
|
private |
Definition at line 49 of file SVFIRBuilder.h.