1 //===-- ItaniumABILanguageRuntime.cpp -------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "ItaniumABILanguageRuntime.h"
10 
11 #include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
12 #include "lldb/Breakpoint/BreakpointLocation.h"
13 #include "lldb/Core/Mangled.h"
14 #include "lldb/Core/Module.h"
15 #include "lldb/Core/PluginManager.h"
16 #include "lldb/Core/ValueObject.h"
17 #include "lldb/Core/ValueObjectMemory.h"
18 #include "lldb/DataFormatters/FormattersHelpers.h"
19 #include "lldb/Expression/DiagnosticManager.h"
20 #include "lldb/Expression/FunctionCaller.h"
21 #include "lldb/Interpreter/CommandObject.h"
22 #include "lldb/Interpreter/CommandObjectMultiword.h"
23 #include "lldb/Interpreter/CommandReturnObject.h"
24 #include "lldb/Symbol/Symbol.h"
25 #include "lldb/Symbol/SymbolFile.h"
26 #include "lldb/Symbol/TypeList.h"
27 #include "lldb/Target/Process.h"
28 #include "lldb/Target/RegisterContext.h"
29 #include "lldb/Target/SectionLoadList.h"
30 #include "lldb/Target/StopInfo.h"
31 #include "lldb/Target/Target.h"
32 #include "lldb/Target/Thread.h"
33 #include "lldb/Utility/ConstString.h"
34 #include "lldb/Utility/Log.h"
35 #include "lldb/Utility/Scalar.h"
36 #include "lldb/Utility/Status.h"
37 
38 #include <vector>
39 
40 using namespace lldb;
41 using namespace lldb_private;
42 
43 LLDB_PLUGIN_DEFINE_ADV(ItaniumABILanguageRuntime, CXXItaniumABI)
44 
45 static const char *vtable_demangled_prefix = "vtable for ";
46 
47 char ItaniumABILanguageRuntime::ID = 0;
48 
49 bool ItaniumABILanguageRuntime::CouldHaveDynamicValue(ValueObject &in_value) {
50   const bool check_cxx = true;
51   const bool check_objc = false;
52   return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx,
53                                                           check_objc);
54 }
55 
56 TypeAndOrName ItaniumABILanguageRuntime::GetTypeInfoFromVTableAddress(
57     ValueObject &in_value, lldb::addr_t original_ptr,
58     lldb::addr_t vtable_load_addr) {
59   if (m_process && vtable_load_addr != LLDB_INVALID_ADDRESS) {
60     // Find the symbol that contains the "vtable_load_addr" address
61     Address vtable_addr;
62     Target &target = m_process->GetTarget();
63     if (!target.GetSectionLoadList().IsEmpty()) {
64       if (target.GetSectionLoadList().ResolveLoadAddress(vtable_load_addr,
65                                                          vtable_addr)) {
66         // See if we have cached info for this type already
67         TypeAndOrName type_info = GetDynamicTypeInfo(vtable_addr);
68         if (type_info)
69           return type_info;
70 
71         SymbolContext sc;
72         target.GetImages().ResolveSymbolContextForAddress(
73             vtable_addr, eSymbolContextSymbol, sc);
74         Symbol *symbol = sc.symbol;
75         if (symbol != nullptr) {
76           const char *name =
77               symbol->GetMangled().GetDemangledName().AsCString();
78           if (name && strstr(name, vtable_demangled_prefix) == name) {
79             Log *log(
80                 lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));
81             LLDB_LOGF(log,
82                       "0x%16.16" PRIx64
83                       ": static-type = '%s' has vtable symbol '%s'\n",
84                       original_ptr, in_value.GetTypeName().GetCString(), name);
85             // We are a C++ class, that's good.  Get the class name and look it
86             // up:
87             const char *class_name = name + strlen(vtable_demangled_prefix);
88             // We know the class name is absolute, so tell FindTypes that by
89             // prefixing it with the root namespace:
90             std::string lookup_name("::");
91             lookup_name.append(class_name);
92 
93             type_info.SetName(class_name);
94             const bool exact_match = true;
95             TypeList class_types;
96 
97             // First look in the module that the vtable symbol came from and
98             // look for a single exact match.
99             llvm::DenseSet<SymbolFile *> searched_symbol_files;
100             if (sc.module_sp)
101               sc.module_sp->FindTypes(ConstString(lookup_name), exact_match, 1,
102                                       searched_symbol_files, class_types);
103 
104             // If we didn't find a symbol, then move on to the entire module
105             // list in the target and get as many unique matches as possible
106             if (class_types.Empty())
107               target.GetImages().FindTypes(nullptr, ConstString(lookup_name),
108                                            exact_match, UINT32_MAX,
109                                            searched_symbol_files, class_types);
110 
111             lldb::TypeSP type_sp;
112             if (class_types.Empty()) {
113               LLDB_LOGF(log, "0x%16.16" PRIx64 ": is not dynamic\n",
114                         original_ptr);
115               return TypeAndOrName();
116             }
117             if (class_types.GetSize() == 1) {
118               type_sp = class_types.GetTypeAtIndex(0);
119               if (type_sp) {
120                 if (TypeSystemClang::IsCXXClassType(
121                         type_sp->GetForwardCompilerType())) {
122                   LLDB_LOGF(
123                       log,
124                       "0x%16.16" PRIx64
125                       ": static-type = '%s' has dynamic type: uid={0x%" PRIx64
126                       "}, type-name='%s'\n",
127                       original_ptr, in_value.GetTypeName().AsCString(),
128                       type_sp->GetID(), type_sp->GetName().GetCString());
129                   type_info.SetTypeSP(type_sp);
130                 }
131               }
132             } else {
133               size_t i;
134               if (log) {
135                 for (i = 0; i < class_types.GetSize(); i++) {
136                   type_sp = class_types.GetTypeAtIndex(i);
137                   if (type_sp) {
138                     LLDB_LOGF(
139                         log,
140                         "0x%16.16" PRIx64
141                         ": static-type = '%s' has multiple matching dynamic "
142                         "types: uid={0x%" PRIx64 "}, type-name='%s'\n",
143                         original_ptr, in_value.GetTypeName().AsCString(),
144                         type_sp->GetID(), type_sp->GetName().GetCString());
145                   }
146                 }
147               }
148 
149               for (i = 0; i < class_types.GetSize(); i++) {
150                 type_sp = class_types.GetTypeAtIndex(i);
151                 if (type_sp) {
152                   if (TypeSystemClang::IsCXXClassType(
153                           type_sp->GetForwardCompilerType())) {
154                     LLDB_LOGF(
155                         log,
156                         "0x%16.16" PRIx64 ": static-type = '%s' has multiple "
157                         "matching dynamic types, picking "
158                         "this one: uid={0x%" PRIx64 "}, type-name='%s'\n",
159                         original_ptr, in_value.GetTypeName().AsCString(),
160                         type_sp->GetID(), type_sp->GetName().GetCString());
161                     type_info.SetTypeSP(type_sp);
162                   }
163                 }
164               }
165 
166               if (log) {
167                 LLDB_LOGF(log,
168                           "0x%16.16" PRIx64
169                           ": static-type = '%s' has multiple matching dynamic "
170                           "types, didn't find a C++ match\n",
171                           original_ptr, in_value.GetTypeName().AsCString());
172               }
173             }
174             if (type_info)
175               SetDynamicTypeInfo(vtable_addr, type_info);
176             return type_info;
177           }
178         }
179       }
180     }
181   }
182   return TypeAndOrName();
183 }
184 
185 bool ItaniumABILanguageRuntime::GetDynamicTypeAndAddress(
186     ValueObject &in_value, lldb::DynamicValueType use_dynamic,
187     TypeAndOrName &class_type_or_name, Address &dynamic_address,
188     Value::ValueType &value_type) {
189   // For Itanium, if the type has a vtable pointer in the object, it will be at
190   // offset 0 in the object.  That will point to the "address point" within the
191   // vtable (not the beginning of the vtable.)  We can then look up the symbol
192   // containing this "address point" and that symbol's name demangled will
193   // contain the full class name. The second pointer above the "address point"
194   // is the "offset_to_top".  We'll use that to get the start of the value
195   // object which holds the dynamic type.
196   //
197 
198   class_type_or_name.Clear();
199   value_type = Value::ValueType::Scalar;
200 
201   // Only a pointer or reference type can have a different dynamic and static
202   // type:
203   if (!CouldHaveDynamicValue(in_value))
204     return false;
205 
206   // First job, pull out the address at 0 offset from the object.
207   AddressType address_type;
208   lldb::addr_t original_ptr = in_value.GetPointerValue(&address_type);
209   if (original_ptr == LLDB_INVALID_ADDRESS)
210     return false;
211 
212   ExecutionContext exe_ctx(in_value.GetExecutionContextRef());
213 
214   Process *process = exe_ctx.GetProcessPtr();
215 
216   if (process == nullptr)
217     return false;
218 
219   Status error;
220   const lldb::addr_t vtable_address_point =
221       process->ReadPointerFromMemory(original_ptr, error);
222 
223   if (!error.Success() || vtable_address_point == LLDB_INVALID_ADDRESS)
224     return false;
225 
226   class_type_or_name = GetTypeInfoFromVTableAddress(in_value, original_ptr,
227                                                     vtable_address_point);
228 
229   if (!class_type_or_name)
230     return false;
231 
232   CompilerType type = class_type_or_name.GetCompilerType();
233   // There can only be one type with a given name, so we've just found
234   // duplicate definitions, and this one will do as well as any other. We
235   // don't consider something to have a dynamic type if it is the same as
236   // the static type.  So compare against the value we were handed.
237   if (!type)
238     return true;
239 
240   if (TypeSystemClang::AreTypesSame(in_value.GetCompilerType(), type)) {
241     // The dynamic type we found was the same type, so we don't have a
242     // dynamic type here...
243     return false;
244   }
245 
246   // The offset_to_top is two pointers above the vtable pointer.
247   const uint32_t addr_byte_size = process->GetAddressByteSize();
248   const lldb::addr_t offset_to_top_location =
249       vtable_address_point - 2 * addr_byte_size;
250   // Watch for underflow, offset_to_top_location should be less than
251   // vtable_address_point
252   if (offset_to_top_location >= vtable_address_point)
253     return false;
254   const int64_t offset_to_top = process->ReadSignedIntegerFromMemory(
255       offset_to_top_location, addr_byte_size, INT64_MIN, error);
256 
257   if (offset_to_top == INT64_MIN)
258     return false;
259   // So the dynamic type is a value that starts at offset_to_top above
260   // the original address.
261   lldb::addr_t dynamic_addr = original_ptr + offset_to_top;
262   if (!process->GetTarget().GetSectionLoadList().ResolveLoadAddress(
263           dynamic_addr, dynamic_address)) {
264     dynamic_address.SetRawAddress(dynamic_addr);
265   }
266   return true;
267 }
268 
269 TypeAndOrName ItaniumABILanguageRuntime::FixUpDynamicType(
270     const TypeAndOrName &type_and_or_name, ValueObject &static_value) {
271   CompilerType static_type(static_value.GetCompilerType());
272   Flags static_type_flags(static_type.GetTypeInfo());
273 
274   TypeAndOrName ret(type_and_or_name);
275   if (type_and_or_name.HasType()) {
276     // The type will always be the type of the dynamic object.  If our parent's
277     // type was a pointer, then our type should be a pointer to the type of the
278     // dynamic object.  If a reference, then the original type should be
279     // okay...
280     CompilerType orig_type = type_and_or_name.GetCompilerType();
281     CompilerType corrected_type = orig_type;
282     if (static_type_flags.AllSet(eTypeIsPointer))
283       corrected_type = orig_type.GetPointerType();
284     else if (static_type_flags.AllSet(eTypeIsReference))
285       corrected_type = orig_type.GetLValueReferenceType();
286     ret.SetCompilerType(corrected_type);
287   } else {
288     // If we are here we need to adjust our dynamic type name to include the
289     // correct & or * symbol
290     std::string corrected_name(type_and_or_name.GetName().GetCString());
291     if (static_type_flags.AllSet(eTypeIsPointer))
292       corrected_name.append(" *");
293     else if (static_type_flags.AllSet(eTypeIsReference))
294       corrected_name.append(" &");
295     // the parent type should be a correctly pointer'ed or referenc'ed type
296     ret.SetCompilerType(static_type);
297     ret.SetName(corrected_name.c_str());
298   }
299   return ret;
300 }
301 
302 // Static Functions
303 LanguageRuntime *
304 ItaniumABILanguageRuntime::CreateInstance(Process *process,
305                                           lldb::LanguageType language) {
306   // FIXME: We have to check the process and make sure we actually know that
307   // this process supports
308   // the Itanium ABI.
309   if (language == eLanguageTypeC_plus_plus ||
310       language == eLanguageTypeC_plus_plus_03 ||
311       language == eLanguageTypeC_plus_plus_11 ||
312       language == eLanguageTypeC_plus_plus_14)
313     return new ItaniumABILanguageRuntime(process);
314   else
315     return nullptr;
316 }
317 
318 class CommandObjectMultiwordItaniumABI_Demangle : public CommandObjectParsed {
319 public:
320   CommandObjectMultiwordItaniumABI_Demangle(CommandInterpreter &interpreter)
321       : CommandObjectParsed(interpreter, "demangle",
322                             "Demangle a C++ mangled name.",
323                             "language cplusplus demangle") {
324     CommandArgumentEntry arg;
325     CommandArgumentData index_arg;
326 
327     // Define the first (and only) variant of this arg.
328     index_arg.arg_type = eArgTypeSymbol;
329     index_arg.arg_repetition = eArgRepeatPlus;
330 
331     // There is only one variant this argument could be; put it into the
332     // argument entry.
333     arg.push_back(index_arg);
334 
335     // Push the data for the first argument into the m_arguments vector.
336     m_arguments.push_back(arg);
337   }
338 
339   ~CommandObjectMultiwordItaniumABI_Demangle() override = default;
340 
341 protected:
342   bool DoExecute(Args &command, CommandReturnObject &result) override {
343     bool demangled_any = false;
344     bool error_any = false;
345     for (auto &entry : command.entries()) {
346       if (entry.ref().empty())
347         continue;
348 
349       // the actual Mangled class should be strict about this, but on the
350       // command line if you're copying mangled names out of 'nm' on Darwin,
351       // they will come out with an extra underscore - be willing to strip this
352       // on behalf of the user.   This is the moral equivalent of the -_/-n
353       // options to c++filt
354       auto name = entry.ref();
355       if (name.startswith("__Z"))
356         name = name.drop_front();
357 
358       Mangled mangled(name);
359       if (mangled.GuessLanguage() == lldb::eLanguageTypeC_plus_plus) {
360         ConstString demangled(mangled.GetDisplayDemangledName());
361         demangled_any = true;
362         result.AppendMessageWithFormat("%s ---> %s\n", entry.c_str(),
363                                        demangled.GetCString());
364       } else {
365         error_any = true;
366         result.AppendErrorWithFormat("%s is not a valid C++ mangled name\n",
367                                      entry.ref().str().c_str());
368       }
369     }
370 
371     result.SetStatus(
372         error_any ? lldb::eReturnStatusFailed
373                   : (demangled_any ? lldb::eReturnStatusSuccessFinishResult
374                                    : lldb::eReturnStatusSuccessFinishNoResult));
375     return result.Succeeded();
376   }
377 };
378 
379 class CommandObjectMultiwordItaniumABI : public CommandObjectMultiword {
380 public:
381   CommandObjectMultiwordItaniumABI(CommandInterpreter &interpreter)
382       : CommandObjectMultiword(
383             interpreter, "cplusplus",
384             "Commands for operating on the C++ language runtime.",
385             "cplusplus <subcommand> [<subcommand-options>]") {
386     LoadSubCommand(
387         "demangle",
388         CommandObjectSP(
389             new CommandObjectMultiwordItaniumABI_Demangle(interpreter)));
390   }
391 
392   ~CommandObjectMultiwordItaniumABI() override = default;
393 };
394 
395 void ItaniumABILanguageRuntime::Initialize() {
396   PluginManager::RegisterPlugin(
397       GetPluginNameStatic(), "Itanium ABI for the C++ language", CreateInstance,
398       [](CommandInterpreter &interpreter) -> lldb::CommandObjectSP {
399         return CommandObjectSP(
400             new CommandObjectMultiwordItaniumABI(interpreter));
401       });
402 }
403 
404 void ItaniumABILanguageRuntime::Terminate() {
405   PluginManager::UnregisterPlugin(CreateInstance);
406 }
407 
408 lldb_private::ConstString ItaniumABILanguageRuntime::GetPluginNameStatic() {
409   static ConstString g_name("itanium");
410   return g_name;
411 }
412 
413 // PluginInterface protocol
414 lldb_private::ConstString ItaniumABILanguageRuntime::GetPluginName() {
415   return GetPluginNameStatic();
416 }
417 
418 uint32_t ItaniumABILanguageRuntime::GetPluginVersion() { return 1; }
419 
420 BreakpointResolverSP ItaniumABILanguageRuntime::CreateExceptionResolver(
421     const BreakpointSP &bkpt, bool catch_bp, bool throw_bp) {
422   return CreateExceptionResolver(bkpt, catch_bp, throw_bp, false);
423 }
424 
425 BreakpointResolverSP ItaniumABILanguageRuntime::CreateExceptionResolver(
426     const BreakpointSP &bkpt, bool catch_bp, bool throw_bp,
427     bool for_expressions) {
428   // One complication here is that most users DON'T want to stop at
429   // __cxa_allocate_expression, but until we can do anything better with
430   // predicting unwinding the expression parser does.  So we have two forms of
431   // the exception breakpoints, one for expressions that leaves out
432   // __cxa_allocate_exception, and one that includes it. The
433   // SetExceptionBreakpoints does the latter, the CreateExceptionBreakpoint in
434   // the runtime the former.
435   static const char *g_catch_name = "__cxa_begin_catch";
436   static const char *g_throw_name1 = "__cxa_throw";
437   static const char *g_throw_name2 = "__cxa_rethrow";
438   static const char *g_exception_throw_name = "__cxa_allocate_exception";
439   std::vector<const char *> exception_names;
440   exception_names.reserve(4);
441   if (catch_bp)
442     exception_names.push_back(g_catch_name);
443 
444   if (throw_bp) {
445     exception_names.push_back(g_throw_name1);
446     exception_names.push_back(g_throw_name2);
447   }
448 
449   if (for_expressions)
450     exception_names.push_back(g_exception_throw_name);
451 
452   BreakpointResolverSP resolver_sp(new BreakpointResolverName(
453       bkpt, exception_names.data(), exception_names.size(),
454       eFunctionNameTypeBase, eLanguageTypeUnknown, 0, eLazyBoolNo));
455 
456   return resolver_sp;
457 }
458 
459 lldb::SearchFilterSP ItaniumABILanguageRuntime::CreateExceptionSearchFilter() {
460   Target &target = m_process->GetTarget();
461 
462   FileSpecList filter_modules;
463   if (target.GetArchitecture().GetTriple().getVendor() == llvm::Triple::Apple) {
464     // Limit the number of modules that are searched for these breakpoints for
465     // Apple binaries.
466     filter_modules.EmplaceBack("libc++abi.dylib");
467     filter_modules.EmplaceBack("libSystem.B.dylib");
468   }
469   return target.GetSearchFilterForModuleList(&filter_modules);
470 }
471 
472 lldb::BreakpointSP ItaniumABILanguageRuntime::CreateExceptionBreakpoint(
473     bool catch_bp, bool throw_bp, bool for_expressions, bool is_internal) {
474   Target &target = m_process->GetTarget();
475   FileSpecList filter_modules;
476   BreakpointResolverSP exception_resolver_sp =
477       CreateExceptionResolver(nullptr, catch_bp, throw_bp, for_expressions);
478   SearchFilterSP filter_sp(CreateExceptionSearchFilter());
479   const bool hardware = false;
480   const bool resolve_indirect_functions = false;
481   return target.CreateBreakpoint(filter_sp, exception_resolver_sp, is_internal,
482                                  hardware, resolve_indirect_functions);
483 }
484 
485 void ItaniumABILanguageRuntime::SetExceptionBreakpoints() {
486   if (!m_process)
487     return;
488 
489   const bool catch_bp = false;
490   const bool throw_bp = true;
491   const bool is_internal = true;
492   const bool for_expressions = true;
493 
494   // For the exception breakpoints set by the Expression parser, we'll be a
495   // little more aggressive and stop at exception allocation as well.
496 
497   if (m_cxx_exception_bp_sp) {
498     m_cxx_exception_bp_sp->SetEnabled(true);
499   } else {
500     m_cxx_exception_bp_sp = CreateExceptionBreakpoint(
501         catch_bp, throw_bp, for_expressions, is_internal);
502     if (m_cxx_exception_bp_sp)
503       m_cxx_exception_bp_sp->SetBreakpointKind("c++ exception");
504   }
505 }
506 
507 void ItaniumABILanguageRuntime::ClearExceptionBreakpoints() {
508   if (!m_process)
509     return;
510 
511   if (m_cxx_exception_bp_sp) {
512     m_cxx_exception_bp_sp->SetEnabled(false);
513   }
514 }
515 
516 bool ItaniumABILanguageRuntime::ExceptionBreakpointsAreSet() {
517   return m_cxx_exception_bp_sp && m_cxx_exception_bp_sp->IsEnabled();
518 }
519 
520 bool ItaniumABILanguageRuntime::ExceptionBreakpointsExplainStop(
521     lldb::StopInfoSP stop_reason) {
522   if (!m_process)
523     return false;
524 
525   if (!stop_reason || stop_reason->GetStopReason() != eStopReasonBreakpoint)
526     return false;
527 
528   uint64_t break_site_id = stop_reason->GetValue();
529   return m_process->GetBreakpointSiteList().BreakpointSiteContainsBreakpoint(
530       break_site_id, m_cxx_exception_bp_sp->GetID());
531 }
532 
533 ValueObjectSP ItaniumABILanguageRuntime::GetExceptionObjectForThread(
534     ThreadSP thread_sp) {
535   if (!thread_sp->SafeToCallFunctions())
536     return {};
537 
538   TypeSystemClang *clang_ast_context =
539       ScratchTypeSystemClang::GetForTarget(m_process->GetTarget());
540   if (!clang_ast_context)
541     return {};
542 
543   CompilerType voidstar =
544       clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType();
545 
546   DiagnosticManager diagnostics;
547   ExecutionContext exe_ctx;
548   EvaluateExpressionOptions options;
549 
550   options.SetUnwindOnError(true);
551   options.SetIgnoreBreakpoints(true);
552   options.SetStopOthers(true);
553   options.SetTimeout(m_process->GetUtilityExpressionTimeout());
554   options.SetTryAllThreads(false);
555   thread_sp->CalculateExecutionContext(exe_ctx);
556 
557   const ModuleList &modules = m_process->GetTarget().GetImages();
558   SymbolContextList contexts;
559   SymbolContext context;
560 
561   modules.FindSymbolsWithNameAndType(
562       ConstString("__cxa_current_exception_type"), eSymbolTypeCode, contexts);
563   contexts.GetContextAtIndex(0, context);
564   if (!context.symbol) {
565     return {};
566   }
567   Address addr = context.symbol->GetAddress();
568 
569   Status error;
570   FunctionCaller *function_caller =
571       m_process->GetTarget().GetFunctionCallerForLanguage(
572           eLanguageTypeC, voidstar, addr, ValueList(), "caller", error);
573 
574   ExpressionResults func_call_ret;
575   Value results;
576   func_call_ret = function_caller->ExecuteFunction(exe_ctx, nullptr, options,
577                                                    diagnostics, results);
578   if (func_call_ret != eExpressionCompleted || !error.Success()) {
579     return ValueObjectSP();
580   }
581 
582   size_t ptr_size = m_process->GetAddressByteSize();
583   addr_t result_ptr = results.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
584   addr_t exception_addr =
585       m_process->ReadPointerFromMemory(result_ptr - ptr_size, error);
586 
587   if (!error.Success()) {
588     return ValueObjectSP();
589   }
590 
591   lldb_private::formatters::InferiorSizedWord exception_isw(exception_addr,
592                                                             *m_process);
593   ValueObjectSP exception = ValueObject::CreateValueObjectFromData(
594       "exception", exception_isw.GetAsData(m_process->GetByteOrder()), exe_ctx,
595       voidstar);
596   exception = exception->GetDynamicValue(eDynamicDontRunTarget);
597 
598   return exception;
599 }
600 
601 TypeAndOrName ItaniumABILanguageRuntime::GetDynamicTypeInfo(
602     const lldb_private::Address &vtable_addr) {
603   std::lock_guard<std::mutex> locker(m_dynamic_type_map_mutex);
604   DynamicTypeCache::const_iterator pos = m_dynamic_type_map.find(vtable_addr);
605   if (pos == m_dynamic_type_map.end())
606     return TypeAndOrName();
607   else
608     return pos->second;
609 }
610 
611 void ItaniumABILanguageRuntime::SetDynamicTypeInfo(
612     const lldb_private::Address &vtable_addr, const TypeAndOrName &type_info) {
613   std::lock_guard<std::mutex> locker(m_dynamic_type_map_mutex);
614   m_dynamic_type_map[vtable_addr] = type_info;
615 }
616