diff options
Diffstat (limited to 'lldb/source')
10 files changed, 13 insertions, 13 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index 783a24c1b74..78e0cfca7a5 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -625,7 +625,7 @@ ValueObject::GetObjectDescription () } } - if (runtime && runtime->GetObjectDescription(s, *this, exe_scope)) + if (runtime && runtime->GetObjectDescription(s, *this)) { m_object_desc_str.append (s.GetData()); } diff --git a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp index 4f6c129687c..b0f7733c2cd 100644 --- a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp +++ b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp @@ -32,7 +32,7 @@ static const char *pluginDesc = "Itanium ABI for the C++ language"; static const char *pluginShort = "language.itanium"; lldb::ValueObjectSP -ItaniumABILanguageRuntime::GetDynamicValue (ValueObjectSP in_value, ExecutionContextScope *exe_scope) +ItaniumABILanguageRuntime::GetDynamicValue (ValueObjectSP in_value) { ValueObjectSP ret_sp; return ret_sp; diff --git a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h index 580d2d6f00f..d7ac04adc20 100644 --- a/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h +++ b/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h @@ -31,7 +31,7 @@ namespace lldb_private { IsVTableName (const char *name); virtual lldb::ValueObjectSP - GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope); + GetDynamicValue (lldb::ValueObjectSP in_value); //------------------------------------------------------------------ // Static Functions diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp index ca2d3e2d356..392abeeaebf 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp @@ -39,7 +39,7 @@ using namespace lldb; using namespace lldb_private; bool -AppleObjCRuntime::GetObjectDescription (Stream &str, ValueObject &object, ExecutionContextScope *exe_scope) +AppleObjCRuntime::GetObjectDescription (Stream &str, ValueObject &object) { bool is_signed; // ObjC objects can only be pointers, but we extend this to integer types because an expression might just @@ -60,7 +60,7 @@ AppleObjCRuntime::GetObjectDescription (Stream &str, ValueObject &object, Execut return NULL; Value val(scalar); - return GetObjectDescription(str, val, exe_scope); + return GetObjectDescription(str, val, object.GetExecutionContextScope()); } bool @@ -192,7 +192,7 @@ AppleObjCRuntime::GetPrintForDebuggerAddr() } lldb::ValueObjectSP -AppleObjCRuntime::GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope) +AppleObjCRuntime::GetDynamicValue (lldb::ValueObjectSP in_value) { lldb::ValueObjectSP ret_sp; return ret_sp; diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h index 8c2920db33b..1c500e39be1 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h @@ -35,10 +35,10 @@ public: GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope); virtual bool - GetObjectDescription (Stream &str, ValueObject &object, ExecutionContextScope *exe_scope); + GetObjectDescription (Stream &str, ValueObject &object); virtual lldb::ValueObjectSP - GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope); + GetDynamicValue (lldb::ValueObjectSP in_value); // These are the ObjC specific functions. diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp index 4bb1edc40d5..46747571198 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp @@ -41,7 +41,7 @@ static const char *pluginDesc = "Apple Objective C Language Runtime - Version 1" static const char *pluginShort = "language.apple.objc.v1"; lldb::ValueObjectSP -AppleObjCRuntimeV1::GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope) +AppleObjCRuntimeV1::GetDynamicValue (lldb::ValueObjectSP in_value) { lldb::ValueObjectSP ret_sp; return ret_sp; diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h index 1e65713dba1..2b815b18091 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h @@ -32,7 +32,7 @@ public: // These are generic runtime functions: virtual lldb::ValueObjectSP - GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope); + GetDynamicValue (lldb::ValueObjectSP in_value); virtual ClangUtilityFunction * CreateObjectChecker (const char *); diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp index 11c2a091cf4..5d276dcd02d 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp @@ -47,7 +47,7 @@ AppleObjCRuntimeV2::AppleObjCRuntimeV2 (Process *process, ModuleSP &objc_module_ } lldb::ValueObjectSP -AppleObjCRuntimeV2::GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope) +AppleObjCRuntimeV2::GetDynamicValue (lldb::ValueObjectSP in_value) { lldb::ValueObjectSP ret_sp; return ret_sp; diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h index e6c13710642..d2bd414bfc3 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h @@ -32,7 +32,7 @@ public: // These are generic runtime functions: virtual lldb::ValueObjectSP - GetDynamicValue (lldb::ValueObjectSP in_value, ExecutionContextScope *exe_scope); + GetDynamicValue (lldb::ValueObjectSP in_value); virtual ClangUtilityFunction * CreateObjectChecker (const char *); diff --git a/lldb/source/Target/CPPLanguageRuntime.cpp b/lldb/source/Target/CPPLanguageRuntime.cpp index d0fc7af8609..d80ed210440 100644 --- a/lldb/source/Target/CPPLanguageRuntime.cpp +++ b/lldb/source/Target/CPPLanguageRuntime.cpp @@ -28,7 +28,7 @@ CPPLanguageRuntime::CPPLanguageRuntime (Process *process) : } bool -CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object, ExecutionContextScope *exe_scope) +CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object) { // C++ has no generic way to do this. return false; |