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

Method getRetBlock

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

Get/Add a return node

Source from the content-addressed store, hash-verified

490
491 /// Get/Add a return node
492 inline RetICFGNode* getRetBlock(const Instruction* cs)
493 {
494 CSToRetNodeMapTy::const_iterator it = CSToRetNodeMap.find(cs);
495 if (it == CSToRetNodeMap.end())
496 return nullptr;
497 return it->second;
498 }
499
500 inline IntraICFGNode* getIntraBlock(const Instruction* inst)
501 {

Callers 1

addInterBlockICFGNodeMethod · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected