Add a GetDisplayName() API to SBFrame, SBFunction and SBSymbol

This API is currently a no-op (in the sense that it has the same behavior as the already existing GetName()), but is meant long-term to provide a best-for-visualization version of the name of a function

It is still not hooked up to the command line 'bt' command, nor to the 'gui' mode, but I do have ideas on how to make that work going forward

rdar://21203242

llvm-svn: 241482
This commit is contained in:
Enrico Granata
2015-07-06 18:28:46 +00:00
parent 95dd08e4c9
commit c1f705c229
15 changed files with 156 additions and 0 deletions

View File

@@ -127,6 +127,9 @@ public:
") GetFunctionName;
const char *
GetFunctionName();
const char *
GetDisplayFunctionName ();
const char *
GetFunctionName() const;

View File

@@ -58,6 +58,9 @@ public:
const char *
GetName() const;
const char *
GetDisplayName() const;
const char *
GetMangledName () const;

View File

@@ -32,6 +32,9 @@ public:
const char *
GetName() const;
const char *
GetDisplayName() const;
const char *
GetMangledName () const;