Go to the source code of this file.
|
namespace | SVF |
| for isBitcode
|
|
◆ checkArgTypes()
Definition at line 53 of file CHG.cpp.
54{
55
56
58 if(arg_size > 1)
59 {
60 for (
unsigned i = 1;
i < arg_size;
i++)
61 {
65 {
66 return false;
67 }
68 }
69 }
70
71 return true;
72}
const ValVar * getArgument(u32_t ArgNo) const
Parameter operations.
llvm::IRBuilder IRBuilder
◆ hasEdge()
Definition at line 39 of file CHG.cpp.
41{
42 for (CHEdge::CHEdgeSetTy::const_iterator
it = src->
getOutEdges().begin(),
44 {
45 CHNode *node = (*it)->getDstNode();
47 if (node == dst && edgeType ==
et)
48 return true;
49 }
50 return false;
51}
const GEdgeSetTy & getOutEdges() const