MCPcopy Create free account
hub / github.com/SVF-tools/SVF / getCallBlock

Method getCallBlock

svf-llvm/include/SVF-LLVM/LLVMModule.h:483–489  ·  view source on GitHub ↗

Get/Add a call node

Source from the content-addressed store, hash-verified

481
482 /// Get/Add a call node
483 inline CallICFGNode* getCallBlock(const Instruction* cs)
484 {
485 CSToCallNodeMapTy::const_iterator it = CSToCallNodeMap.find(cs);
486 if (it == CSToCallNodeMap.end())
487 return nullptr;
488 return it->second;
489 }
490
491 /// Get/Add a return node
492 inline RetICFGNode* getRetBlock(const Instruction* cs)

Callers 1

addInterBlockICFGNodeMethod · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected