| 189 | callinstToThreadForkEdgesMap.end(); |
| 190 | } |
| 191 | inline ForkEdgeSet::const_iterator getForkEdgeBegin(const CallICFGNode* cs) const |
| 192 | { |
| 193 | CallInstToForkEdgesMap::const_iterator it = callinstToThreadForkEdgesMap.find(cs); |
| 194 | assert(it != callinstToThreadForkEdgesMap.end() && "call instruction not found"); |
| 195 | return it->second.begin(); |
| 196 | } |
| 197 | inline ForkEdgeSet::const_iterator getForkEdgeEnd(const CallICFGNode* cs) const |
| 198 | { |
| 199 | CallInstToForkEdgesMap::const_iterator it = callinstToThreadForkEdgesMap.find(cs); |
no test coverage detected