diff options
author | Alex Langford <apl@fb.com> | 2019-06-04 20:14:33 +0000 |
---|---|---|
committer | Alex Langford <apl@fb.com> | 2019-06-04 20:14:33 +0000 |
commit | 29975a2a5d050d1c6a7220844efe8706d1376eb4 (patch) | |
tree | 2335d25d4e4f2a6d100e36c999ba56b732c57da8 /lldb/source/Target/Process.cpp | |
parent | a03e2b25abfac72d2415edfef8a81ed127a95ca4 (diff) | |
download | bcm5719-llvm-29975a2a5d050d1c6a7220844efe8706d1376eb4.tar.gz bcm5719-llvm-29975a2a5d050d1c6a7220844efe8706d1376eb4.zip |
[Target] Remove Process::GetCPPLanguageRuntime
Summary:
I want to remove this method because I think that Process should be
language agnostic, or at least, not have knowledge about specific language
runtimes. There is "GetLanguageRuntime()" which should be used instead. If the
caller a CPPLanguageRuntime, they should cast it as needed. Ideally, this
should only happen in plugins that need C++ specific knowledge.
The next step I would like to do is remove "GetObjCLanguageRuntime()" as well.
There are a lot more instances of that function being used, so I wanted to
upload this one first to get the general reception to this idea.
Reviewers: compnerd, davide, JDevlieghere, jingham, clayborg, labath, aprantl
Subscribers: lldb-commits
Differential Revision: https://reviews.llvm.org/D62755
llvm-svn: 362544
Diffstat (limited to 'lldb/source/Target/Process.cpp')
-rw-r--r-- | lldb/source/Target/Process.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 1d1fda18e3d..b46ded442b4 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -1598,16 +1598,6 @@ LanguageRuntime *Process::GetLanguageRuntime(lldb::LanguageType language, return runtime; } -CPPLanguageRuntime *Process::GetCPPLanguageRuntime(bool retry_if_null) { - std::lock_guard<std::recursive_mutex> guard(m_language_runtimes_mutex); - LanguageRuntime *runtime = - GetLanguageRuntime(eLanguageTypeC_plus_plus, retry_if_null); - if (!runtime) - return nullptr; - - return static_cast<CPPLanguageRuntime *>(runtime); -} - ObjCLanguageRuntime *Process::GetObjCLanguageRuntime(bool retry_if_null) { std::lock_guard<std::recursive_mutex> guard(m_language_runtimes_mutex); LanguageRuntime *runtime = |