Rename Entity::getName() to Entity::getPrintableName() to make its purpose

more obvious.

llvm-svn: 76167
This commit is contained in:
Zhongxing Xu 2009-07-17 07:49:44 +00:00
parent 3436f58e40
commit 9d05213899
4 changed files with 9 additions and 8 deletions

View File

@ -45,7 +45,7 @@ public:
bool hasCallee() const { return begin() != end(); }
const char *getName(ASTContext &Ctx) { return F->getName(Ctx); }
std::string getName(ASTContext &Ctx) { return F->getPrintableName(Ctx); }
};
class CallGraph {

View File

@ -43,8 +43,8 @@ public:
/// \brief Find the Decl that can be referred to by this entity.
Decl *getDecl(ASTContext &AST);
/// \brief Get the Decl's name.
const char *getName(ASTContext &Ctx);
/// \brief Get a printable name for debugging purpose.
std::string getPrintableName(ASTContext &Ctx);
/// \brief Get an Entity associated with the given Decl.
/// \returns Null if an Entity cannot refer to this Decl.

View File

@ -118,10 +118,11 @@ void CallGraph::print(llvm::raw_ostream &os) {
for (iterator I = begin(), E = end(); I != E; ++I) {
if (I->second->hasCallee()) {
ASTContext &Ctx = *CallerCtx[I->second];
os << "function: " << I->first->getName(Ctx) << " calls:\n";
os << "function: " << I->first->getPrintableName(Ctx).c_str()
<< " calls:\n";
for (CallGraphNode::iterator CI = I->second->begin(),
CE = I->second->end(); CI != CE; ++CI) {
os << " " << CI->second->getName(Ctx);
os << " " << CI->second->getName(Ctx).c_str();
}
os << '\n';
}

View File

@ -126,11 +126,11 @@ Decl *Entity::getDecl(ASTContext &AST) {
return 0; // Failed to find a decl using this Entity.
}
const char *Entity::getName(ASTContext &Ctx) {
std::string Entity::getPrintableName(ASTContext &Ctx) {
if (const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(getDecl(Ctx))) {
return ND->getNameAsCString();
return ND->getNameAsString();
}
return 0;
return std::string();
}
/// \brief Get an Entity associated with the given Decl.