diff options
author | Enrico Granata <egranata@apple.com> | 2014-12-13 02:07:50 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2014-12-13 02:07:50 +0000 |
commit | dd6d24b25392822ef4273816935c81b78d3d5225 (patch) | |
tree | 19b4dba86202f58408692c4bfa9445d7a9f08ef5 | |
parent | a9e65ba19dcd57ca74eb739042d39aeca83983fa (diff) | |
download | bcm5719-llvm-dd6d24b25392822ef4273816935c81b78d3d5225.tar.gz bcm5719-llvm-dd6d24b25392822ef4273816935c81b78d3d5225.zip |
Move a bunch of method implementations over to the C++ file; remove the need for a few includes. All in all, good stuff
llvm-svn: 224174
-rw-r--r-- | lldb/include/lldb/DataFormatters/TypeSynthetic.h | 95 | ||||
-rw-r--r-- | lldb/source/DataFormatters/TypeSynthetic.cpp | 103 |
2 files changed, 112 insertions, 86 deletions
diff --git a/lldb/include/lldb/DataFormatters/TypeSynthetic.h b/lldb/include/lldb/DataFormatters/TypeSynthetic.h index e7ed39269c3..675c43b1f31 100644 --- a/lldb/include/lldb/DataFormatters/TypeSynthetic.h +++ b/lldb/include/lldb/DataFormatters/TypeSynthetic.h @@ -24,8 +24,6 @@ #include "lldb/lldb-enumerations.h" #include "lldb/Core/ValueObject.h" -#include "lldb/Interpreter/ScriptInterpreterPython.h" -#include "lldb/Symbol/Type.h" namespace lldb_private { class SyntheticChildrenFrontEnd @@ -385,37 +383,10 @@ namespace lldb_private { } void - AddExpressionPath (const std::string& path) - { - bool need_add_dot = true; - if (path[0] == '.' || - (path[0] == '-' && path[1] == '>') || - path[0] == '[') - need_add_dot = false; - // add a '.' symbol to help forgetful users - if(!need_add_dot) - m_expression_paths.push_back(path); - else - m_expression_paths.push_back(std::string(".") + path); - } + AddExpressionPath (const std::string& path); bool - SetExpressionPathAtIndex (size_t i, const std::string& path) - { - if (i >= GetCount()) - return false; - bool need_add_dot = true; - if (path[0] == '.' || - (path[0] == '-' && path[1] == '>') || - path[0] == '[') - need_add_dot = false; - // add a '.' symbol to help forgetful users - if(!need_add_dot) - m_expression_paths[i] = path; - else - m_expression_paths[i] = std::string(".") + path; - return true; - } + SetExpressionPathAtIndex (size_t i, const std::string& path); bool IsScripted () @@ -467,24 +438,7 @@ namespace lldb_private { } virtual size_t - GetIndexOfChildWithName (const ConstString &name) - { - const char* name_cstr = name.GetCString(); - for (size_t i = 0; i < filter->GetCount(); i++) - { - const char* expr_cstr = filter->GetExpressionPathAtIndex(i); - if (expr_cstr) - { - if (*expr_cstr == '.') - expr_cstr++; - else if (*expr_cstr == '-' && *(expr_cstr+1) == '>') - expr_cstr += 2; - } - if (!::strcmp(name_cstr, expr_cstr)) - return i; - } - return UINT32_MAX; - } + GetIndexOfChildWithName (const ConstString &name); typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer; @@ -605,59 +559,28 @@ namespace lldb_private { ValueObject &backend); bool - IsValid () - { - return m_wrapper_sp.get() != nullptr && m_wrapper_sp->operator bool() && m_interpreter != nullptr; - } + IsValid (); virtual ~FrontEnd (); virtual size_t - CalculateNumChildren () - { - if (!m_wrapper_sp || m_interpreter == NULL) - return 0; - return m_interpreter->CalculateNumChildren(m_wrapper_sp); - } + CalculateNumChildren (); virtual lldb::ValueObjectSP GetChildAtIndex (size_t idx); virtual bool - Update () - { - if (!m_wrapper_sp || m_interpreter == NULL) - return false; - - return m_interpreter->UpdateSynthProviderInstance(m_wrapper_sp); - } + Update (); virtual bool - MightHaveChildren () - { - if (!m_wrapper_sp || m_interpreter == NULL) - return false; - - return m_interpreter->MightHaveChildrenSynthProviderInstance(m_wrapper_sp); - } + MightHaveChildren (); virtual size_t - GetIndexOfChildWithName (const ConstString &name) - { - if (!m_wrapper_sp || m_interpreter == NULL) - return UINT32_MAX; - return m_interpreter->GetIndexOfChildWithName(m_wrapper_sp, name.GetCString()); - } + GetIndexOfChildWithName (const ConstString &name); virtual lldb::ValueObjectSP - GetSyntheticValue () - { - if (!m_wrapper_sp || m_interpreter == NULL) - return nullptr; - - return m_interpreter->GetSyntheticValue(m_wrapper_sp); - } + GetSyntheticValue (); typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer; diff --git a/lldb/source/DataFormatters/TypeSynthetic.cpp b/lldb/source/DataFormatters/TypeSynthetic.cpp index 658e99e2a07..13c1c7508b6 100644 --- a/lldb/source/DataFormatters/TypeSynthetic.cpp +++ b/lldb/source/DataFormatters/TypeSynthetic.cpp @@ -23,6 +23,7 @@ #include "lldb/Core/StreamString.h" #include "lldb/DataFormatters/TypeSynthetic.h" #include "lldb/Interpreter/CommandInterpreter.h" +#include "lldb/Interpreter/ScriptInterpreterPython.h" #include "lldb/Symbol/ClangASTType.h" #include "lldb/Target/StackFrame.h" #include "lldb/Target/Target.h" @@ -30,6 +31,59 @@ using namespace lldb; using namespace lldb_private; +void +TypeFilterImpl::AddExpressionPath (const std::string& path) +{ + bool need_add_dot = true; + if (path[0] == '.' || + (path[0] == '-' && path[1] == '>') || + path[0] == '[') + need_add_dot = false; + // add a '.' symbol to help forgetful users + if(!need_add_dot) + m_expression_paths.push_back(path); + else + m_expression_paths.push_back(std::string(".") + path); +} + +bool +TypeFilterImpl::SetExpressionPathAtIndex (size_t i, const std::string& path) +{ + if (i >= GetCount()) + return false; + bool need_add_dot = true; + if (path[0] == '.' || + (path[0] == '-' && path[1] == '>') || + path[0] == '[') + need_add_dot = false; + // add a '.' symbol to help forgetful users + if(!need_add_dot) + m_expression_paths[i] = path; + else + m_expression_paths[i] = std::string(".") + path; + return true; +} + +size_t +TypeFilterImpl::FrontEnd::GetIndexOfChildWithName (const ConstString &name) +{ + const char* name_cstr = name.GetCString(); + for (size_t i = 0; i < filter->GetCount(); i++) + { + const char* expr_cstr = filter->GetExpressionPathAtIndex(i); + if (expr_cstr) + { + if (*expr_cstr == '.') + expr_cstr++; + else if (*expr_cstr == '-' && *(expr_cstr+1) == '>') + expr_cstr += 2; + } + if (!::strcmp(name_cstr, expr_cstr)) + return i; + } + return UINT32_MAX; +} + std::string TypeFilterImpl::GetDescription() { @@ -133,6 +187,55 @@ ScriptedSyntheticChildren::FrontEnd::GetChildAtIndex (size_t idx) return m_interpreter->GetChildAtIndex(m_wrapper_sp, idx); } +bool +ScriptedSyntheticChildren::FrontEnd::IsValid () +{ + return m_wrapper_sp.get() != nullptr && m_wrapper_sp->operator bool() && m_interpreter != nullptr; +} + +size_t +ScriptedSyntheticChildren::FrontEnd::CalculateNumChildren () +{ + if (!m_wrapper_sp || m_interpreter == NULL) + return 0; + return m_interpreter->CalculateNumChildren(m_wrapper_sp); +} + +bool +ScriptedSyntheticChildren::FrontEnd::Update () +{ + if (!m_wrapper_sp || m_interpreter == NULL) + return false; + + return m_interpreter->UpdateSynthProviderInstance(m_wrapper_sp); +} + +bool +ScriptedSyntheticChildren::FrontEnd::MightHaveChildren () +{ + if (!m_wrapper_sp || m_interpreter == NULL) + return false; + + return m_interpreter->MightHaveChildrenSynthProviderInstance(m_wrapper_sp); +} + +size_t +ScriptedSyntheticChildren::FrontEnd::GetIndexOfChildWithName (const ConstString &name) +{ + if (!m_wrapper_sp || m_interpreter == NULL) + return UINT32_MAX; + return m_interpreter->GetIndexOfChildWithName(m_wrapper_sp, name.GetCString()); +} + +lldb::ValueObjectSP +ScriptedSyntheticChildren::FrontEnd::GetSyntheticValue () +{ + if (!m_wrapper_sp || m_interpreter == NULL) + return nullptr; + + return m_interpreter->GetSyntheticValue(m_wrapper_sp); +} + std::string ScriptedSyntheticChildren::GetDescription() { |