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 BreakpointResolverSP ItaniumABILanguageRuntime::CreateExceptionResolver(
409     const BreakpointSP &bkpt, bool catch_bp, bool throw_bp) {
410   return CreateExceptionResolver(bkpt, catch_bp, throw_bp, false);
411 }
412 
413 BreakpointResolverSP ItaniumABILanguageRuntime::CreateExceptionResolver(
414     const BreakpointSP &bkpt, bool catch_bp, bool throw_bp,
415     bool for_expressions) {
416   // One complication here is that most users DON'T want to stop at
417   // __cxa_allocate_expression, but until we can do anything better with
418   // predicting unwinding the expression parser does.  So we have two forms of
419   // the exception breakpoints, one for expressions that leaves out
420   // __cxa_allocate_exception, and one that includes it. The
421   // SetExceptionBreakpoints does the latter, the CreateExceptionBreakpoint in
422   // the runtime the former.
423   static const char *g_catch_name = "__cxa_begin_catch";
424   static const char *g_throw_name1 = "__cxa_throw";
425   static const char *g_throw_name2 = "__cxa_rethrow";
426   static const char *g_exception_throw_name = "__cxa_allocate_exception";
427   std::vector<const char *> exception_names;
428   exception_names.reserve(4);
429   if (catch_bp)
430     exception_names.push_back(g_catch_name);
431 
432   if (throw_bp) {
433     exception_names.push_back(g_throw_name1);
434     exception_names.push_back(g_throw_name2);
435   }
436 
437   if (for_expressions)
438     exception_names.push_back(g_exception_throw_name);
439 
440   BreakpointResolverSP resolver_sp(new BreakpointResolverName(
441       bkpt, exception_names.data(), exception_names.size(),
442       eFunctionNameTypeBase, eLanguageTypeUnknown, 0, eLazyBoolNo));
443 
444   return resolver_sp;
445 }
446 
447 lldb::SearchFilterSP ItaniumABILanguageRuntime::CreateExceptionSearchFilter() {
448   Target &target = m_process->GetTarget();
449 
450   FileSpecList filter_modules;
451   if (target.GetArchitecture().GetTriple().getVendor() == llvm::Triple::Apple) {
452     // Limit the number of modules that are searched for these breakpoints for
453     // Apple binaries.
454     filter_modules.EmplaceBack("libc++abi.dylib");
455     filter_modules.EmplaceBack("libSystem.B.dylib");
456   }
457   return target.GetSearchFilterForModuleList(&filter_modules);
458 }
459 
460 lldb::BreakpointSP ItaniumABILanguageRuntime::CreateExceptionBreakpoint(
461     bool catch_bp, bool throw_bp, bool for_expressions, bool is_internal) {
462   Target &target = m_process->GetTarget();
463   FileSpecList filter_modules;
464   BreakpointResolverSP exception_resolver_sp =
465       CreateExceptionResolver(nullptr, catch_bp, throw_bp, for_expressions);
466   SearchFilterSP filter_sp(CreateExceptionSearchFilter());
467   const bool hardware = false;
468   const bool resolve_indirect_functions = false;
469   return target.CreateBreakpoint(filter_sp, exception_resolver_sp, is_internal,
470                                  hardware, resolve_indirect_functions);
471 }
472 
473 void ItaniumABILanguageRuntime::SetExceptionBreakpoints() {
474   if (!m_process)
475     return;
476 
477   const bool catch_bp = false;
478   const bool throw_bp = true;
479   const bool is_internal = true;
480   const bool for_expressions = true;
481 
482   // For the exception breakpoints set by the Expression parser, we'll be a
483   // little more aggressive and stop at exception allocation as well.
484 
485   if (m_cxx_exception_bp_sp) {
486     m_cxx_exception_bp_sp->SetEnabled(true);
487   } else {
488     m_cxx_exception_bp_sp = CreateExceptionBreakpoint(
489         catch_bp, throw_bp, for_expressions, is_internal);
490     if (m_cxx_exception_bp_sp)
491       m_cxx_exception_bp_sp->SetBreakpointKind("c++ exception");
492   }
493 }
494 
495 void ItaniumABILanguageRuntime::ClearExceptionBreakpoints() {
496   if (!m_process)
497     return;
498 
499   if (m_cxx_exception_bp_sp) {
500     m_cxx_exception_bp_sp->SetEnabled(false);
501   }
502 }
503 
504 bool ItaniumABILanguageRuntime::ExceptionBreakpointsAreSet() {
505   return m_cxx_exception_bp_sp && m_cxx_exception_bp_sp->IsEnabled();
506 }
507 
508 bool ItaniumABILanguageRuntime::ExceptionBreakpointsExplainStop(
509     lldb::StopInfoSP stop_reason) {
510   if (!m_process)
511     return false;
512 
513   if (!stop_reason || stop_reason->GetStopReason() != eStopReasonBreakpoint)
514     return false;
515 
516   uint64_t break_site_id = stop_reason->GetValue();
517   return m_process->GetBreakpointSiteList().BreakpointSiteContainsBreakpoint(
518       break_site_id, m_cxx_exception_bp_sp->GetID());
519 }
520 
521 ValueObjectSP ItaniumABILanguageRuntime::GetExceptionObjectForThread(
522     ThreadSP thread_sp) {
523   if (!thread_sp->SafeToCallFunctions())
524     return {};
525 
526   TypeSystemClang *clang_ast_context =
527       ScratchTypeSystemClang::GetForTarget(m_process->GetTarget());
528   if (!clang_ast_context)
529     return {};
530 
531   CompilerType voidstar =
532       clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType();
533 
534   DiagnosticManager diagnostics;
535   ExecutionContext exe_ctx;
536   EvaluateExpressionOptions options;
537 
538   options.SetUnwindOnError(true);
539   options.SetIgnoreBreakpoints(true);
540   options.SetStopOthers(true);
541   options.SetTimeout(m_process->GetUtilityExpressionTimeout());
542   options.SetTryAllThreads(false);
543   thread_sp->CalculateExecutionContext(exe_ctx);
544 
545   const ModuleList &modules = m_process->GetTarget().GetImages();
546   SymbolContextList contexts;
547   SymbolContext context;
548 
549   modules.FindSymbolsWithNameAndType(
550       ConstString("__cxa_current_exception_type"), eSymbolTypeCode, contexts);
551   contexts.GetContextAtIndex(0, context);
552   if (!context.symbol) {
553     return {};
554   }
555   Address addr = context.symbol->GetAddress();
556 
557   Status error;
558   FunctionCaller *function_caller =
559       m_process->GetTarget().GetFunctionCallerForLanguage(
560           eLanguageTypeC, voidstar, addr, ValueList(), "caller", error);
561 
562   ExpressionResults func_call_ret;
563   Value results;
564   func_call_ret = function_caller->ExecuteFunction(exe_ctx, nullptr, options,
565                                                    diagnostics, results);
566   if (func_call_ret != eExpressionCompleted || !error.Success()) {
567     return ValueObjectSP();
568   }
569 
570   size_t ptr_size = m_process->GetAddressByteSize();
571   addr_t result_ptr = results.GetScalar().ULongLong(LLDB_INVALID_ADDRESS);
572   addr_t exception_addr =
573       m_process->ReadPointerFromMemory(result_ptr - ptr_size, error);
574 
575   if (!error.Success()) {
576     return ValueObjectSP();
577   }
578 
579   lldb_private::formatters::InferiorSizedWord exception_isw(exception_addr,
580                                                             *m_process);
581   ValueObjectSP exception = ValueObject::CreateValueObjectFromData(
582       "exception", exception_isw.GetAsData(m_process->GetByteOrder()), exe_ctx,
583       voidstar);
584   exception = exception->GetDynamicValue(eDynamicDontRunTarget);
585 
586   return exception;
587 }
588 
589 TypeAndOrName ItaniumABILanguageRuntime::GetDynamicTypeInfo(
590     const lldb_private::Address &vtable_addr) {
591   std::lock_guard<std::mutex> locker(m_dynamic_type_map_mutex);
592   DynamicTypeCache::const_iterator pos = m_dynamic_type_map.find(vtable_addr);
593   if (pos == m_dynamic_type_map.end())
594     return TypeAndOrName();
595   else
596     return pos->second;
597 }
598 
599 void ItaniumABILanguageRuntime::SetDynamicTypeInfo(
600     const lldb_private::Address &vtable_addr, const TypeAndOrName &type_info) {
601   std::lock_guard<std::mutex> locker(m_dynamic_type_map_mutex);
602   m_dynamic_type_map[vtable_addr] = type_info;
603 }
604