map call instruction to its PTACallGraphEdge map
| 342 | |
| 343 | /// map call instruction to its PTACallGraphEdge map |
| 344 | inline void addThreadForkEdgeSetMap(const CallICFGNode* cs, ThreadForkEdge* edge) |
| 345 | { |
| 346 | if(edge!=nullptr) |
| 347 | { |
| 348 | callinstToThreadForkEdgesMap[cs].insert(edge); |
| 349 | callinstToCallGraphEdgesMap[cs].insert(edge); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | /// map call instruction to its PTACallGraphEdge map |
| 354 | inline void addThreadJoinEdgeSetMap(const CallICFGNode* cs, ThreadJoinEdge* edge) |
no test coverage detected