Skip to content

Commit

Permalink
Merge pull request #1353 from jumormt/opaque
Browse files Browse the repository at this point in the history
fix isTemplate and fix a NPD bug
  • Loading branch information
yuleisui committed Jan 30, 2024
2 parents 195591c + 75e9301 commit e59e0a3
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions svf-llvm/lib/CppUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -779,8 +779,8 @@ Set<std::string> cppUtil::extractClsNamesFromTemplate(const std::string &oname)


/*!
* class sources can be heap allocation
* or functions where we can extract the class name (constructors/destructors or template functions)
* class sources are functions
* where we can extract the class name (constructors/destructors or template functions)
* @param val
* @return
*/
Expand All @@ -789,6 +789,8 @@ bool cppUtil::isClsNameSource(const Value *val)
if (const auto *callBase = SVFUtil::dyn_cast<CallBase>(val))
{
const Function *foo = callBase->getCalledFunction();
// indirect call
if(!foo) return false;
return isConstructor(foo) || isDestructor(foo) || isTemplateFunc(foo) || isDynCast(foo);
}
return false;
Expand All @@ -807,15 +809,18 @@ bool cppUtil::matchesLabel(const std::string &foo, const std::string &label)

/*!
* whether foo is a cpp template function
* TODO: we only consider limited label for now (see the very beginning of CppUtil.cpp)
* @param foo
* @return
*/
bool cppUtil::isTemplateFunc(const Function *foo)
{
bool cppUtil::isTemplateFunc(const Function *foo) {
assert(foo->hasName() && "foo does not have a name? possible indirect call");
const std::string &name = foo->getName().str();
return matchesLabel(name, znstLabel) || matchesLabel(name, znkstLabel) ||
matchesLabel(name, znkLabel);
bool matchedLabel = matchesLabel(name, znstLabel) || matchesLabel(name, znkstLabel) ||
matchesLabel(name, znkLabel);
// we exclude "_ZNK6cArray3dupEv" -> cArray::dup() const
const std::string &demangledName = llvm::demangle(name);
return matchedLabel && demangledName.find('<') != std::string::npos && demangledName.find('>') != std::string::npos;
}

/*!
Expand Down

0 comments on commit e59e0a3

Please sign in to comment.