Get call graph edge via call instruction @{ whether this call instruction has a valid call graph edge
| 184 | //@{ |
| 185 | /// whether this call instruction has a valid call graph edge |
| 186 | inline bool hasThreadForkEdge(const CallICFGNode* cs) const |
| 187 | { |
| 188 | return callinstToThreadForkEdgesMap.find(cs) != |
| 189 | callinstToThreadForkEdgesMap.end(); |
| 190 | } |
| 191 | inline ForkEdgeSet::const_iterator getForkEdgeBegin(const CallICFGNode* cs) const |
| 192 | { |
| 193 | CallInstToForkEdgesMap::const_iterator it = callinstToThreadForkEdgesMap.find(cs); |
no test coverage detected