1 //===-- ClangExpressionDeclMap.cpp -----------------------------*- C++ -*-===//
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 "ClangExpressionDeclMap.h"
10 
11 #include "ASTDumper.h"
12 #include "ClangASTSource.h"
13 #include "ClangModulesDeclVendor.h"
14 #include "ClangPersistentVariables.h"
15 
16 #include "lldb/Core/Address.h"
17 #include "lldb/Core/Module.h"
18 #include "lldb/Core/ModuleSpec.h"
19 #include "lldb/Core/ValueObjectConstResult.h"
20 #include "lldb/Core/ValueObjectVariable.h"
21 #include "lldb/Expression/Materializer.h"
22 #include "lldb/Symbol/ClangASTContext.h"
23 #include "lldb/Symbol/CompileUnit.h"
24 #include "lldb/Symbol/CompilerDecl.h"
25 #include "lldb/Symbol/CompilerDeclContext.h"
26 #include "lldb/Symbol/Function.h"
27 #include "lldb/Symbol/ObjectFile.h"
28 #include "lldb/Symbol/SymbolContext.h"
29 #include "lldb/Symbol/SymbolFile.h"
30 #include "lldb/Symbol/SymbolVendor.h"
31 #include "lldb/Symbol/Type.h"
32 #include "lldb/Symbol/TypeList.h"
33 #include "lldb/Symbol/Variable.h"
34 #include "lldb/Symbol/VariableList.h"
35 #include "lldb/Target/CPPLanguageRuntime.h"
36 #include "lldb/Target/ExecutionContext.h"
37 #include "lldb/Target/ObjCLanguageRuntime.h"
38 #include "lldb/Target/Process.h"
39 #include "lldb/Target/RegisterContext.h"
40 #include "lldb/Target/StackFrame.h"
41 #include "lldb/Target/Target.h"
42 #include "lldb/Target/Thread.h"
43 #include "lldb/Utility/Endian.h"
44 #include "lldb/Utility/Log.h"
45 #include "lldb/Utility/RegisterValue.h"
46 #include "lldb/Utility/Status.h"
47 #include "lldb/lldb-private.h"
48 #include "clang/AST/ASTConsumer.h"
49 #include "clang/AST/ASTContext.h"
50 #include "clang/AST/ASTImporter.h"
51 #include "clang/AST/Decl.h"
52 #include "clang/AST/DeclarationName.h"
53 #include "clang/AST/RecursiveASTVisitor.h"
54 
55 #include "Plugins/Language/CPlusPlus/CPlusPlusLanguage.h"
56 
57 using namespace lldb;
58 using namespace lldb_private;
59 using namespace clang;
60 
61 namespace {
62 const char *g_lldb_local_vars_namespace_cstr = "$__lldb_local_vars";
63 } // anonymous namespace
64 
65 ClangExpressionDeclMap::ClangExpressionDeclMap(
66     bool keep_result_in_memory,
67     Materializer::PersistentVariableDelegate *result_delegate,
68     ExecutionContext &exe_ctx, ValueObject *ctx_obj)
69     : ClangASTSource(exe_ctx.GetTargetSP()), m_found_entities(),
70       m_struct_members(), m_keep_result_in_memory(keep_result_in_memory),
71       m_result_delegate(result_delegate), m_ctx_obj(ctx_obj), m_parser_vars(),
72       m_struct_vars() {
73   EnableStructVars();
74 }
75 
76 ClangExpressionDeclMap::~ClangExpressionDeclMap() {
77   // Note: The model is now that the parser's AST context and all associated
78   //   data does not vanish until the expression has been executed.  This means
79   //   that valuable lookup data (like namespaces) doesn't vanish, but
80 
81   DidParse();
82   DisableStructVars();
83 }
84 
85 bool ClangExpressionDeclMap::WillParse(ExecutionContext &exe_ctx,
86                                        Materializer *materializer) {
87   ClangASTMetrics::ClearLocalCounters();
88 
89   EnableParserVars();
90   m_parser_vars->m_exe_ctx = exe_ctx;
91 
92   Target *target = exe_ctx.GetTargetPtr();
93   if (exe_ctx.GetFramePtr())
94     m_parser_vars->m_sym_ctx =
95         exe_ctx.GetFramePtr()->GetSymbolContext(lldb::eSymbolContextEverything);
96   else if (exe_ctx.GetThreadPtr() &&
97            exe_ctx.GetThreadPtr()->GetStackFrameAtIndex(0))
98     m_parser_vars->m_sym_ctx =
99         exe_ctx.GetThreadPtr()->GetStackFrameAtIndex(0)->GetSymbolContext(
100             lldb::eSymbolContextEverything);
101   else if (exe_ctx.GetProcessPtr()) {
102     m_parser_vars->m_sym_ctx.Clear(true);
103     m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
104   } else if (target) {
105     m_parser_vars->m_sym_ctx.Clear(true);
106     m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
107   }
108 
109   if (target) {
110     m_parser_vars->m_persistent_vars = llvm::cast<ClangPersistentVariables>(
111         target->GetPersistentExpressionStateForLanguage(eLanguageTypeC));
112 
113     if (!target->GetScratchClangASTContext())
114       return false;
115   }
116 
117   m_parser_vars->m_target_info = GetTargetInfo();
118   m_parser_vars->m_materializer = materializer;
119 
120   return true;
121 }
122 
123 void ClangExpressionDeclMap::InstallCodeGenerator(
124     clang::ASTConsumer *code_gen) {
125   assert(m_parser_vars);
126   m_parser_vars->m_code_gen = code_gen;
127 }
128 
129 void ClangExpressionDeclMap::DidParse() {
130   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
131 
132   if (log)
133     ClangASTMetrics::DumpCounters(log);
134 
135   if (m_parser_vars) {
136     for (size_t entity_index = 0, num_entities = m_found_entities.GetSize();
137          entity_index < num_entities; ++entity_index) {
138       ExpressionVariableSP var_sp(
139           m_found_entities.GetVariableAtIndex(entity_index));
140       if (var_sp)
141         llvm::cast<ClangExpressionVariable>(var_sp.get())
142             ->DisableParserVars(GetParserID());
143     }
144 
145     for (size_t pvar_index = 0,
146                 num_pvars = m_parser_vars->m_persistent_vars->GetSize();
147          pvar_index < num_pvars; ++pvar_index) {
148       ExpressionVariableSP pvar_sp(
149           m_parser_vars->m_persistent_vars->GetVariableAtIndex(pvar_index));
150       if (ClangExpressionVariable *clang_var =
151               llvm::dyn_cast<ClangExpressionVariable>(pvar_sp.get()))
152         clang_var->DisableParserVars(GetParserID());
153     }
154 
155     DisableParserVars();
156   }
157 }
158 
159 // Interface for IRForTarget
160 
161 ClangExpressionDeclMap::TargetInfo ClangExpressionDeclMap::GetTargetInfo() {
162   assert(m_parser_vars.get());
163 
164   TargetInfo ret;
165 
166   ExecutionContext &exe_ctx = m_parser_vars->m_exe_ctx;
167 
168   Process *process = exe_ctx.GetProcessPtr();
169   if (process) {
170     ret.byte_order = process->GetByteOrder();
171     ret.address_byte_size = process->GetAddressByteSize();
172   } else {
173     Target *target = exe_ctx.GetTargetPtr();
174     if (target) {
175       ret.byte_order = target->GetArchitecture().GetByteOrder();
176       ret.address_byte_size = target->GetArchitecture().GetAddressByteSize();
177     }
178   }
179 
180   return ret;
181 }
182 
183 namespace {
184 /// This class walks an AST and ensures that all DeclContexts defined inside the
185 /// current source file are properly complete.
186 ///
187 /// This is used to ensure that persistent types defined in the current source
188 /// file migrate completely to the persistent AST context before they are
189 /// reused.  If that didn't happen, it would be impoossible to complete them
190 /// because their origin would be gone.
191 ///
192 /// The stragtegy used by this class is to check the SourceLocation (to be
193 /// specific, the FileID) and see if it's the FileID for the current expression.
194 /// Alternate strategies could include checking whether an ExternalASTMerger,
195 /// set up to not have the current context as a source, can find an original for
196 /// the type.
197 class Completer : public clang::RecursiveASTVisitor<Completer> {
198 private:
199   clang::ASTImporter &m_exporter;             /// Used to import Decl contents
200   clang::FileID m_file;                       /// The file that's going away
201   llvm::DenseSet<clang::Decl *> m_completed;  /// Visited Decls, to avoid cycles
202 
203   bool ImportAndCheckCompletable(clang::Decl *decl) {
204     (void)m_exporter.Import(decl);
205     if (m_completed.count(decl))
206       return false;
207     if (!llvm::isa<DeclContext>(decl))
208       return false;
209     const clang::SourceLocation loc = decl->getLocation();
210     if (!loc.isValid())
211       return false;
212     const clang::FileID file =
213         m_exporter.getFromContext().getSourceManager().getFileID(loc);
214     if (file != m_file)
215       return false;
216     // We are assuming the Decl was parsed in this very expression, so it
217     // should not have external storage.
218     lldbassert(!llvm::cast<DeclContext>(decl)->hasExternalLexicalStorage());
219     return true;
220   }
221 
222   void Complete(clang::Decl *decl) {
223     m_completed.insert(decl);
224     auto *decl_context = llvm::cast<DeclContext>(decl);
225     (void)m_exporter.Import(decl);
226     m_exporter.CompleteDecl(decl);
227     for (Decl *child : decl_context->decls())
228       if (ImportAndCheckCompletable(child))
229         Complete(child);
230   }
231 
232   void MaybeComplete(clang::Decl *decl) {
233     if (ImportAndCheckCompletable(decl))
234       Complete(decl);
235   }
236 
237 public:
238   Completer(clang::ASTImporter &exporter, clang::FileID file)
239       : m_exporter(exporter), m_file(file) {}
240 
241   // Implements the RecursiveASTVisitor's core API.  It is called on each Decl
242   // that the RecursiveASTVisitor encounters, and returns true if the traversal
243   // should continue.
244   bool VisitDecl(clang::Decl *decl) {
245     MaybeComplete(decl);
246     return true;
247   }
248 };
249 }
250 
251 static void CompleteAllDeclContexts(clang::ASTImporter &exporter,
252                                     clang::FileID file,
253                                     clang::QualType root) {
254   clang::QualType canonical_type = root.getCanonicalType();
255   if (clang::TagDecl *tag_decl = canonical_type->getAsTagDecl()) {
256     Completer(exporter, file).TraverseDecl(tag_decl);
257   } else if (auto interface_type = llvm::dyn_cast<ObjCInterfaceType>(
258                  canonical_type.getTypePtr())) {
259     Completer(exporter, file).TraverseDecl(interface_type->getDecl());
260   } else {
261     Completer(exporter, file).TraverseType(canonical_type);
262   }
263 }
264 
265 static clang::QualType ExportAllDeclaredTypes(
266     clang::ExternalASTMerger &merger,
267     clang::ASTContext &source, clang::FileManager &source_file_manager,
268     const clang::ExternalASTMerger::OriginMap &source_origin_map,
269     clang::FileID file, clang::QualType root) {
270   clang::ExternalASTMerger::ImporterSource importer_source =
271       { source, source_file_manager, source_origin_map };
272   merger.AddSources(importer_source);
273   clang::ASTImporter &exporter = merger.ImporterForOrigin(source);
274   CompleteAllDeclContexts(exporter, file, root);
275   llvm::Expected<clang::QualType> ret_or_error = exporter.Import(root);
276   merger.RemoveSources(importer_source);
277   if (ret_or_error) {
278     return *ret_or_error;
279   } else {
280     Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS);
281     LLDB_LOG_ERROR(log, ret_or_error.takeError(), "Couldn't import type: {0}");
282     return clang::QualType();
283   }
284 }
285 
286 TypeFromUser ClangExpressionDeclMap::DeportType(ClangASTContext &target,
287                                                 ClangASTContext &source,
288                                                 TypeFromParser parser_type) {
289   assert (&target == m_target->GetScratchClangASTContext());
290   assert ((TypeSystem*)&source == parser_type.GetTypeSystem());
291   assert (source.getASTContext() == m_ast_context);
292 
293   if (m_ast_importer_sp) {
294     return TypeFromUser(m_ast_importer_sp->DeportType(
295                             target.getASTContext(), source.getASTContext(),
296                             parser_type.GetOpaqueQualType()),
297                         &target);
298   } else if (m_merger_up) {
299     clang::FileID source_file =
300         source.getASTContext()->getSourceManager().getFileID(
301             source.getASTContext()->getTranslationUnitDecl()->getLocation());
302     auto scratch_ast_context = static_cast<ClangASTContextForExpressions*>(
303         m_target->GetScratchClangASTContext());
304     clang::QualType exported_type = ExportAllDeclaredTypes(
305         scratch_ast_context->GetMergerUnchecked(),
306         *source.getASTContext(), *source.getFileManager(),
307         m_merger_up->GetOrigins(),
308         source_file,
309         clang::QualType::getFromOpaquePtr(parser_type.GetOpaqueQualType()));
310     return TypeFromUser(exported_type.getAsOpaquePtr(), &target);
311   } else {
312     lldbassert(0 && "No mechanism for deporting a type!");
313     return TypeFromUser();
314   }
315 }
316 
317 bool ClangExpressionDeclMap::AddPersistentVariable(const NamedDecl *decl,
318                                                    ConstString name,
319                                                    TypeFromParser parser_type,
320                                                    bool is_result,
321                                                    bool is_lvalue) {
322   assert(m_parser_vars.get());
323 
324   ClangASTContext *ast =
325       llvm::dyn_cast_or_null<ClangASTContext>(parser_type.GetTypeSystem());
326   if (ast == nullptr)
327     return false;
328 
329   if (m_parser_vars->m_materializer && is_result) {
330     Status err;
331 
332     ExecutionContext &exe_ctx = m_parser_vars->m_exe_ctx;
333     Target *target = exe_ctx.GetTargetPtr();
334     if (target == nullptr)
335       return false;
336 
337     TypeFromUser user_type =
338         DeportType(*target->GetScratchClangASTContext(), *ast, parser_type);
339 
340     uint32_t offset = m_parser_vars->m_materializer->AddResultVariable(
341         user_type, is_lvalue, m_keep_result_in_memory, m_result_delegate, err);
342 
343     ClangExpressionVariable *var = new ClangExpressionVariable(
344         exe_ctx.GetBestExecutionContextScope(), name, user_type,
345         m_parser_vars->m_target_info.byte_order,
346         m_parser_vars->m_target_info.address_byte_size);
347 
348     m_found_entities.AddNewlyConstructedVariable(var);
349 
350     var->EnableParserVars(GetParserID());
351 
352     ClangExpressionVariable::ParserVars *parser_vars =
353         var->GetParserVars(GetParserID());
354 
355     parser_vars->m_named_decl = decl;
356     parser_vars->m_parser_type = parser_type;
357 
358     var->EnableJITVars(GetParserID());
359 
360     ClangExpressionVariable::JITVars *jit_vars = var->GetJITVars(GetParserID());
361 
362     jit_vars->m_offset = offset;
363 
364     return true;
365   }
366 
367   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
368   ExecutionContext &exe_ctx = m_parser_vars->m_exe_ctx;
369   Target *target = exe_ctx.GetTargetPtr();
370   if (target == NULL)
371     return false;
372 
373   ClangASTContext *context(target->GetScratchClangASTContext());
374 
375   TypeFromUser user_type = DeportType(*context, *ast, parser_type);
376 
377   if (!user_type.GetOpaqueQualType()) {
378     if (log)
379       log->Printf("Persistent variable's type wasn't copied successfully");
380     return false;
381   }
382 
383   if (!m_parser_vars->m_target_info.IsValid())
384     return false;
385 
386   ClangExpressionVariable *var = llvm::cast<ClangExpressionVariable>(
387       m_parser_vars->m_persistent_vars
388           ->CreatePersistentVariable(
389               exe_ctx.GetBestExecutionContextScope(), name, user_type,
390               m_parser_vars->m_target_info.byte_order,
391               m_parser_vars->m_target_info.address_byte_size)
392           .get());
393 
394   if (!var)
395     return false;
396 
397   var->m_frozen_sp->SetHasCompleteType();
398 
399   if (is_result)
400     var->m_flags |= ClangExpressionVariable::EVNeedsFreezeDry;
401   else
402     var->m_flags |=
403         ClangExpressionVariable::EVKeepInTarget; // explicitly-declared
404                                                  // persistent variables should
405                                                  // persist
406 
407   if (is_lvalue) {
408     var->m_flags |= ClangExpressionVariable::EVIsProgramReference;
409   } else {
410     var->m_flags |= ClangExpressionVariable::EVIsLLDBAllocated;
411     var->m_flags |= ClangExpressionVariable::EVNeedsAllocation;
412   }
413 
414   if (m_keep_result_in_memory) {
415     var->m_flags |= ClangExpressionVariable::EVKeepInTarget;
416   }
417 
418   if (log)
419     log->Printf("Created persistent variable with flags 0x%hx", var->m_flags);
420 
421   var->EnableParserVars(GetParserID());
422 
423   ClangExpressionVariable::ParserVars *parser_vars =
424       var->GetParserVars(GetParserID());
425 
426   parser_vars->m_named_decl = decl;
427   parser_vars->m_parser_type = parser_type;
428 
429   return true;
430 }
431 
432 bool ClangExpressionDeclMap::AddValueToStruct(const NamedDecl *decl,
433                                               ConstString name,
434                                               llvm::Value *value, size_t size,
435                                               lldb::offset_t alignment) {
436   assert(m_struct_vars.get());
437   assert(m_parser_vars.get());
438 
439   bool is_persistent_variable = false;
440 
441   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
442 
443   m_struct_vars->m_struct_laid_out = false;
444 
445   if (ClangExpressionVariable::FindVariableInList(m_struct_members, decl,
446                                                   GetParserID()))
447     return true;
448 
449   ClangExpressionVariable *var(ClangExpressionVariable::FindVariableInList(
450       m_found_entities, decl, GetParserID()));
451 
452   if (!var) {
453     var = ClangExpressionVariable::FindVariableInList(
454         *m_parser_vars->m_persistent_vars, decl, GetParserID());
455     is_persistent_variable = true;
456   }
457 
458   if (!var)
459     return false;
460 
461   if (log)
462     log->Printf("Adding value for (NamedDecl*)%p [%s - %s] to the structure",
463                 static_cast<const void *>(decl), name.GetCString(),
464                 var->GetName().GetCString());
465 
466   // We know entity->m_parser_vars is valid because we used a parser variable
467   // to find it
468 
469   ClangExpressionVariable::ParserVars *parser_vars =
470       llvm::cast<ClangExpressionVariable>(var)->GetParserVars(GetParserID());
471 
472   parser_vars->m_llvm_value = value;
473 
474   if (ClangExpressionVariable::JITVars *jit_vars =
475           llvm::cast<ClangExpressionVariable>(var)->GetJITVars(GetParserID())) {
476     // We already laid this out; do not touch
477 
478     if (log)
479       log->Printf("Already placed at 0x%llx",
480                   (unsigned long long)jit_vars->m_offset);
481   }
482 
483   llvm::cast<ClangExpressionVariable>(var)->EnableJITVars(GetParserID());
484 
485   ClangExpressionVariable::JITVars *jit_vars =
486       llvm::cast<ClangExpressionVariable>(var)->GetJITVars(GetParserID());
487 
488   jit_vars->m_alignment = alignment;
489   jit_vars->m_size = size;
490 
491   m_struct_members.AddVariable(var->shared_from_this());
492 
493   if (m_parser_vars->m_materializer) {
494     uint32_t offset = 0;
495 
496     Status err;
497 
498     if (is_persistent_variable) {
499       ExpressionVariableSP var_sp(var->shared_from_this());
500       offset = m_parser_vars->m_materializer->AddPersistentVariable(
501           var_sp, nullptr, err);
502     } else {
503       if (const lldb_private::Symbol *sym = parser_vars->m_lldb_sym)
504         offset = m_parser_vars->m_materializer->AddSymbol(*sym, err);
505       else if (const RegisterInfo *reg_info = var->GetRegisterInfo())
506         offset = m_parser_vars->m_materializer->AddRegister(*reg_info, err);
507       else if (parser_vars->m_lldb_var)
508         offset = m_parser_vars->m_materializer->AddVariable(
509             parser_vars->m_lldb_var, err);
510     }
511 
512     if (!err.Success())
513       return false;
514 
515     if (log)
516       log->Printf("Placed at 0x%llx", (unsigned long long)offset);
517 
518     jit_vars->m_offset =
519         offset; // TODO DoStructLayout() should not change this.
520   }
521 
522   return true;
523 }
524 
525 bool ClangExpressionDeclMap::DoStructLayout() {
526   assert(m_struct_vars.get());
527 
528   if (m_struct_vars->m_struct_laid_out)
529     return true;
530 
531   if (!m_parser_vars->m_materializer)
532     return false;
533 
534   m_struct_vars->m_struct_alignment =
535       m_parser_vars->m_materializer->GetStructAlignment();
536   m_struct_vars->m_struct_size =
537       m_parser_vars->m_materializer->GetStructByteSize();
538   m_struct_vars->m_struct_laid_out = true;
539   return true;
540 }
541 
542 bool ClangExpressionDeclMap::GetStructInfo(uint32_t &num_elements, size_t &size,
543                                            lldb::offset_t &alignment) {
544   assert(m_struct_vars.get());
545 
546   if (!m_struct_vars->m_struct_laid_out)
547     return false;
548 
549   num_elements = m_struct_members.GetSize();
550   size = m_struct_vars->m_struct_size;
551   alignment = m_struct_vars->m_struct_alignment;
552 
553   return true;
554 }
555 
556 bool ClangExpressionDeclMap::GetStructElement(const NamedDecl *&decl,
557                                               llvm::Value *&value,
558                                               lldb::offset_t &offset,
559                                               ConstString &name,
560                                               uint32_t index) {
561   assert(m_struct_vars.get());
562 
563   if (!m_struct_vars->m_struct_laid_out)
564     return false;
565 
566   if (index >= m_struct_members.GetSize())
567     return false;
568 
569   ExpressionVariableSP member_sp(m_struct_members.GetVariableAtIndex(index));
570 
571   if (!member_sp)
572     return false;
573 
574   ClangExpressionVariable::ParserVars *parser_vars =
575       llvm::cast<ClangExpressionVariable>(member_sp.get())
576           ->GetParserVars(GetParserID());
577   ClangExpressionVariable::JITVars *jit_vars =
578       llvm::cast<ClangExpressionVariable>(member_sp.get())
579           ->GetJITVars(GetParserID());
580 
581   if (!parser_vars || !jit_vars || !member_sp->GetValueObject())
582     return false;
583 
584   decl = parser_vars->m_named_decl;
585   value = parser_vars->m_llvm_value;
586   offset = jit_vars->m_offset;
587   name = member_sp->GetName();
588 
589   return true;
590 }
591 
592 bool ClangExpressionDeclMap::GetFunctionInfo(const NamedDecl *decl,
593                                              uint64_t &ptr) {
594   ClangExpressionVariable *entity(ClangExpressionVariable::FindVariableInList(
595       m_found_entities, decl, GetParserID()));
596 
597   if (!entity)
598     return false;
599 
600   // We know m_parser_vars is valid since we searched for the variable by its
601   // NamedDecl
602 
603   ClangExpressionVariable::ParserVars *parser_vars =
604       entity->GetParserVars(GetParserID());
605 
606   ptr = parser_vars->m_lldb_value.GetScalar().ULongLong();
607 
608   return true;
609 }
610 
611 addr_t ClangExpressionDeclMap::GetSymbolAddress(Target &target,
612                                                 Process *process,
613                                                 ConstString name,
614                                                 lldb::SymbolType symbol_type,
615                                                 lldb_private::Module *module) {
616   SymbolContextList sc_list;
617 
618   if (module)
619     module->FindSymbolsWithNameAndType(name, symbol_type, sc_list);
620   else
621     target.GetImages().FindSymbolsWithNameAndType(name, symbol_type, sc_list);
622 
623   const uint32_t num_matches = sc_list.GetSize();
624   addr_t symbol_load_addr = LLDB_INVALID_ADDRESS;
625 
626   for (uint32_t i = 0;
627        i < num_matches &&
628        (symbol_load_addr == 0 || symbol_load_addr == LLDB_INVALID_ADDRESS);
629        i++) {
630     SymbolContext sym_ctx;
631     sc_list.GetContextAtIndex(i, sym_ctx);
632 
633     const Address sym_address = sym_ctx.symbol->GetAddress();
634 
635     if (!sym_address.IsValid())
636       continue;
637 
638     switch (sym_ctx.symbol->GetType()) {
639     case eSymbolTypeCode:
640     case eSymbolTypeTrampoline:
641       symbol_load_addr = sym_address.GetCallableLoadAddress(&target);
642       break;
643 
644     case eSymbolTypeResolver:
645       symbol_load_addr = sym_address.GetCallableLoadAddress(&target, true);
646       break;
647 
648     case eSymbolTypeReExported: {
649       ConstString reexport_name = sym_ctx.symbol->GetReExportedSymbolName();
650       if (reexport_name) {
651         ModuleSP reexport_module_sp;
652         ModuleSpec reexport_module_spec;
653         reexport_module_spec.GetPlatformFileSpec() =
654             sym_ctx.symbol->GetReExportedSymbolSharedLibrary();
655         if (reexport_module_spec.GetPlatformFileSpec()) {
656           reexport_module_sp =
657               target.GetImages().FindFirstModule(reexport_module_spec);
658           if (!reexport_module_sp) {
659             reexport_module_spec.GetPlatformFileSpec().GetDirectory().Clear();
660             reexport_module_sp =
661                 target.GetImages().FindFirstModule(reexport_module_spec);
662           }
663         }
664         symbol_load_addr = GetSymbolAddress(
665             target, process, sym_ctx.symbol->GetReExportedSymbolName(),
666             symbol_type, reexport_module_sp.get());
667       }
668     } break;
669 
670     case eSymbolTypeData:
671     case eSymbolTypeRuntime:
672     case eSymbolTypeVariable:
673     case eSymbolTypeLocal:
674     case eSymbolTypeParam:
675     case eSymbolTypeInvalid:
676     case eSymbolTypeAbsolute:
677     case eSymbolTypeException:
678     case eSymbolTypeSourceFile:
679     case eSymbolTypeHeaderFile:
680     case eSymbolTypeObjectFile:
681     case eSymbolTypeCommonBlock:
682     case eSymbolTypeBlock:
683     case eSymbolTypeVariableType:
684     case eSymbolTypeLineEntry:
685     case eSymbolTypeLineHeader:
686     case eSymbolTypeScopeBegin:
687     case eSymbolTypeScopeEnd:
688     case eSymbolTypeAdditional:
689     case eSymbolTypeCompiler:
690     case eSymbolTypeInstrumentation:
691     case eSymbolTypeUndefined:
692     case eSymbolTypeObjCClass:
693     case eSymbolTypeObjCMetaClass:
694     case eSymbolTypeObjCIVar:
695       symbol_load_addr = sym_address.GetLoadAddress(&target);
696       break;
697     }
698   }
699 
700   if (symbol_load_addr == LLDB_INVALID_ADDRESS && process) {
701     ObjCLanguageRuntime *runtime = process->GetObjCLanguageRuntime();
702 
703     if (runtime) {
704       symbol_load_addr = runtime->LookupRuntimeSymbol(name);
705     }
706   }
707 
708   return symbol_load_addr;
709 }
710 
711 addr_t ClangExpressionDeclMap::GetSymbolAddress(ConstString name,
712                                                 lldb::SymbolType symbol_type) {
713   assert(m_parser_vars.get());
714 
715   if (!m_parser_vars->m_exe_ctx.GetTargetPtr())
716     return false;
717 
718   return GetSymbolAddress(m_parser_vars->m_exe_ctx.GetTargetRef(),
719                           m_parser_vars->m_exe_ctx.GetProcessPtr(), name,
720                           symbol_type);
721 }
722 
723 lldb::VariableSP ClangExpressionDeclMap::FindGlobalVariable(
724     Target &target, ModuleSP &module, ConstString name,
725     CompilerDeclContext *namespace_decl, TypeFromUser *type) {
726   VariableList vars;
727 
728   if (module && namespace_decl)
729     module->FindGlobalVariables(name, namespace_decl, -1, vars);
730   else
731     target.GetImages().FindGlobalVariables(name, -1, vars);
732 
733   if (vars.GetSize()) {
734     if (type) {
735       for (size_t i = 0; i < vars.GetSize(); ++i) {
736         VariableSP var_sp = vars.GetVariableAtIndex(i);
737 
738         if (ClangASTContext::AreTypesSame(
739                 *type, var_sp->GetType()->GetFullCompilerType()))
740           return var_sp;
741       }
742     } else {
743       return vars.GetVariableAtIndex(0);
744     }
745   }
746 
747   return VariableSP();
748 }
749 
750 ClangASTContext *ClangExpressionDeclMap::GetClangASTContext() {
751   StackFrame *frame = m_parser_vars->m_exe_ctx.GetFramePtr();
752   if (frame == nullptr)
753     return nullptr;
754 
755   SymbolContext sym_ctx = frame->GetSymbolContext(lldb::eSymbolContextFunction |
756                                                   lldb::eSymbolContextBlock);
757   if (sym_ctx.block == nullptr)
758     return nullptr;
759 
760   CompilerDeclContext frame_decl_context = sym_ctx.block->GetDeclContext();
761   if (!frame_decl_context)
762     return nullptr;
763 
764   return llvm::dyn_cast_or_null<ClangASTContext>(
765       frame_decl_context.GetTypeSystem());
766 }
767 
768 // Interface for ClangASTSource
769 
770 void ClangExpressionDeclMap::FindExternalVisibleDecls(
771     NameSearchContext &context) {
772   assert(m_ast_context);
773 
774   ClangASTMetrics::RegisterVisibleQuery();
775 
776   const ConstString name(context.m_decl_name.getAsString().c_str());
777 
778   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
779 
780   if (GetImportInProgress()) {
781     if (log && log->GetVerbose())
782       log->Printf("Ignoring a query during an import");
783     return;
784   }
785 
786   static unsigned int invocation_id = 0;
787   unsigned int current_id = invocation_id++;
788 
789   if (log) {
790     if (!context.m_decl_context)
791       log->Printf("ClangExpressionDeclMap::FindExternalVisibleDecls[%u] for "
792                   "'%s' in a NULL DeclContext",
793                   current_id, name.GetCString());
794     else if (const NamedDecl *context_named_decl =
795                  dyn_cast<NamedDecl>(context.m_decl_context))
796       log->Printf("ClangExpressionDeclMap::FindExternalVisibleDecls[%u] for "
797                   "'%s' in '%s'",
798                   current_id, name.GetCString(),
799                   context_named_decl->getNameAsString().c_str());
800     else
801       log->Printf("ClangExpressionDeclMap::FindExternalVisibleDecls[%u] for "
802                   "'%s' in a '%s'",
803                   current_id, name.GetCString(),
804                   context.m_decl_context->getDeclKindName());
805   }
806 
807   if (const NamespaceDecl *namespace_context =
808           dyn_cast<NamespaceDecl>(context.m_decl_context)) {
809     if (namespace_context->getName().str() ==
810         std::string(g_lldb_local_vars_namespace_cstr)) {
811       CompilerDeclContext compiler_decl_ctx(
812           GetClangASTContext(), const_cast<void *>(static_cast<const void *>(
813                                     context.m_decl_context)));
814       FindExternalVisibleDecls(context, lldb::ModuleSP(), compiler_decl_ctx,
815                                current_id);
816       return;
817     }
818 
819     ClangASTImporter::NamespaceMapSP namespace_map =
820         m_ast_importer_sp
821             ? m_ast_importer_sp->GetNamespaceMap(namespace_context)
822             : ClangASTImporter::NamespaceMapSP();
823 
824     if (!namespace_map)
825       return;
826 
827     if (log && log->GetVerbose())
828       log->Printf("  CEDM::FEVD[%u] Inspecting (NamespaceMap*)%p (%d entries)",
829                   current_id, static_cast<void *>(namespace_map.get()),
830                   (int)namespace_map->size());
831 
832     for (ClangASTImporter::NamespaceMap::iterator i = namespace_map->begin(),
833                                                   e = namespace_map->end();
834          i != e; ++i) {
835       if (log)
836         log->Printf("  CEDM::FEVD[%u] Searching namespace %s in module %s",
837                     current_id, i->second.GetName().AsCString(),
838                     i->first->GetFileSpec().GetFilename().GetCString());
839 
840       FindExternalVisibleDecls(context, i->first, i->second, current_id);
841     }
842   } else if (isa<TranslationUnitDecl>(context.m_decl_context)) {
843     CompilerDeclContext namespace_decl;
844 
845     if (log)
846       log->Printf("  CEDM::FEVD[%u] Searching the root namespace", current_id);
847 
848     FindExternalVisibleDecls(context, lldb::ModuleSP(), namespace_decl,
849                              current_id);
850   }
851 
852   ClangASTSource::FindExternalVisibleDecls(context);
853 }
854 
855 void ClangExpressionDeclMap::FindExternalVisibleDecls(
856     NameSearchContext &context, lldb::ModuleSP module_sp,
857     CompilerDeclContext &namespace_decl, unsigned int current_id) {
858   assert(m_ast_context);
859 
860   std::function<void(clang::FunctionDecl *)> MaybeRegisterFunctionBody =
861       [this](clang::FunctionDecl *copied_function_decl) {
862         if (copied_function_decl->getBody() && m_parser_vars->m_code_gen) {
863           DeclGroupRef decl_group_ref(copied_function_decl);
864           m_parser_vars->m_code_gen->HandleTopLevelDecl(decl_group_ref);
865         }
866       };
867 
868   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
869 
870   SymbolContextList sc_list;
871 
872   const ConstString name(context.m_decl_name.getAsString().c_str());
873   if (IgnoreName(name, false))
874     return;
875 
876   // Only look for functions by name out in our symbols if the function doesn't
877   // start with our phony prefix of '$'
878   Target *target = m_parser_vars->m_exe_ctx.GetTargetPtr();
879   StackFrame *frame = m_parser_vars->m_exe_ctx.GetFramePtr();
880   SymbolContext sym_ctx;
881   if (frame != nullptr)
882     sym_ctx = frame->GetSymbolContext(lldb::eSymbolContextFunction |
883                                       lldb::eSymbolContextBlock);
884 
885   // Try the persistent decls, which take precedence over all else.
886   if (!namespace_decl) {
887     do {
888       if (!target)
889         break;
890 
891       ClangASTContext *scratch_clang_ast_context =
892           target->GetScratchClangASTContext();
893 
894       if (!scratch_clang_ast_context)
895         break;
896 
897       ASTContext *scratch_ast_context =
898           scratch_clang_ast_context->getASTContext();
899 
900       if (!scratch_ast_context)
901         break;
902 
903       NamedDecl *persistent_decl =
904           m_parser_vars->m_persistent_vars->GetPersistentDecl(name);
905 
906       if (!persistent_decl)
907         break;
908 
909       Decl *parser_persistent_decl = CopyDecl(persistent_decl);
910 
911       if (!parser_persistent_decl)
912         break;
913 
914       NamedDecl *parser_named_decl =
915           dyn_cast<NamedDecl>(parser_persistent_decl);
916 
917       if (!parser_named_decl)
918         break;
919 
920       if (clang::FunctionDecl *parser_function_decl =
921               llvm::dyn_cast<clang::FunctionDecl>(parser_named_decl)) {
922         MaybeRegisterFunctionBody(parser_function_decl);
923       }
924 
925       if (log)
926         log->Printf("  CEDM::FEVD[%u] Found persistent decl %s", current_id,
927                     name.GetCString());
928 
929       context.AddNamedDecl(parser_named_decl);
930     } while (0);
931   }
932 
933   if (name.GetCString()[0] == '$' && !namespace_decl) {
934     static ConstString g_lldb_class_name("$__lldb_class");
935 
936     if (name == g_lldb_class_name) {
937       if (m_ctx_obj) {
938         Status status;
939         lldb::ValueObjectSP ctx_obj_ptr = m_ctx_obj->AddressOf(status);
940         if (!ctx_obj_ptr || status.Fail())
941           return;
942 
943         AddThisType(context, TypeFromUser(m_ctx_obj->GetCompilerType()),
944                     current_id);
945 
946         m_struct_vars->m_object_pointer_type =
947             TypeFromUser(ctx_obj_ptr->GetCompilerType());
948 
949         return;
950       }
951 
952       // Clang is looking for the type of "this"
953 
954       if (frame == NULL)
955         return;
956 
957       // Find the block that defines the function represented by "sym_ctx"
958       Block *function_block = sym_ctx.GetFunctionBlock();
959 
960       if (!function_block)
961         return;
962 
963       CompilerDeclContext function_decl_ctx = function_block->GetDeclContext();
964 
965       if (!function_decl_ctx)
966         return;
967 
968       clang::CXXMethodDecl *method_decl =
969           ClangASTContext::DeclContextGetAsCXXMethodDecl(function_decl_ctx);
970 
971       if (method_decl) {
972         clang::CXXRecordDecl *class_decl = method_decl->getParent();
973 
974         QualType class_qual_type(class_decl->getTypeForDecl(), 0);
975 
976         TypeFromUser class_user_type(
977             class_qual_type.getAsOpaquePtr(),
978             ClangASTContext::GetASTContext(&class_decl->getASTContext()));
979 
980         if (log) {
981           ASTDumper ast_dumper(class_qual_type);
982           log->Printf("  CEDM::FEVD[%u] Adding type for $__lldb_class: %s",
983                       current_id, ast_dumper.GetCString());
984         }
985 
986         AddThisType(context, class_user_type, current_id);
987 
988         if (method_decl->isInstance()) {
989           // self is a pointer to the object
990 
991           QualType class_pointer_type =
992               method_decl->getASTContext().getPointerType(class_qual_type);
993 
994           TypeFromUser self_user_type(
995               class_pointer_type.getAsOpaquePtr(),
996               ClangASTContext::GetASTContext(&method_decl->getASTContext()));
997 
998           m_struct_vars->m_object_pointer_type = self_user_type;
999         }
1000       } else {
1001         // This branch will get hit if we are executing code in the context of
1002         // a function that claims to have an object pointer (through
1003         // DW_AT_object_pointer?) but is not formally a method of the class.
1004         // In that case, just look up the "this" variable in the current scope
1005         // and use its type.
1006         // FIXME: This code is formally correct, but clang doesn't currently
1007         // emit DW_AT_object_pointer
1008         // for C++ so it hasn't actually been tested.
1009 
1010         VariableList *vars = frame->GetVariableList(false);
1011 
1012         lldb::VariableSP this_var = vars->FindVariable(ConstString("this"));
1013 
1014         if (this_var && this_var->IsInScope(frame) &&
1015             this_var->LocationIsValidForFrame(frame)) {
1016           Type *this_type = this_var->GetType();
1017 
1018           if (!this_type)
1019             return;
1020 
1021           TypeFromUser pointee_type =
1022               this_type->GetForwardCompilerType().GetPointeeType();
1023 
1024           if (pointee_type.IsValid()) {
1025             if (log) {
1026               ASTDumper ast_dumper(pointee_type);
1027               log->Printf("  FEVD[%u] Adding type for $__lldb_class: %s",
1028                           current_id, ast_dumper.GetCString());
1029             }
1030 
1031             AddThisType(context, pointee_type, current_id);
1032             TypeFromUser this_user_type(this_type->GetFullCompilerType());
1033             m_struct_vars->m_object_pointer_type = this_user_type;
1034             return;
1035           }
1036         }
1037       }
1038 
1039       return;
1040     }
1041 
1042     static ConstString g_lldb_objc_class_name("$__lldb_objc_class");
1043     if (name == g_lldb_objc_class_name) {
1044       if (m_ctx_obj) {
1045         Status status;
1046         lldb::ValueObjectSP ctx_obj_ptr = m_ctx_obj->AddressOf(status);
1047         if (!ctx_obj_ptr || status.Fail())
1048           return;
1049 
1050         AddOneType(context, TypeFromUser(m_ctx_obj->GetCompilerType()),
1051                     current_id);
1052 
1053         m_struct_vars->m_object_pointer_type =
1054             TypeFromUser(ctx_obj_ptr->GetCompilerType());
1055 
1056         return;
1057       }
1058 
1059       // Clang is looking for the type of "*self"
1060 
1061       if (!frame)
1062         return;
1063 
1064       SymbolContext sym_ctx = frame->GetSymbolContext(
1065           lldb::eSymbolContextFunction | lldb::eSymbolContextBlock);
1066 
1067       // Find the block that defines the function represented by "sym_ctx"
1068       Block *function_block = sym_ctx.GetFunctionBlock();
1069 
1070       if (!function_block)
1071         return;
1072 
1073       CompilerDeclContext function_decl_ctx = function_block->GetDeclContext();
1074 
1075       if (!function_decl_ctx)
1076         return;
1077 
1078       clang::ObjCMethodDecl *method_decl =
1079           ClangASTContext::DeclContextGetAsObjCMethodDecl(function_decl_ctx);
1080 
1081       if (method_decl) {
1082         ObjCInterfaceDecl *self_interface = method_decl->getClassInterface();
1083 
1084         if (!self_interface)
1085           return;
1086 
1087         const clang::Type *interface_type = self_interface->getTypeForDecl();
1088 
1089         if (!interface_type)
1090           return; // This is unlikely, but we have seen crashes where this
1091                   // occurred
1092 
1093         TypeFromUser class_user_type(
1094             QualType(interface_type, 0).getAsOpaquePtr(),
1095             ClangASTContext::GetASTContext(&method_decl->getASTContext()));
1096 
1097         if (log) {
1098           ASTDumper ast_dumper(interface_type);
1099           log->Printf("  FEVD[%u] Adding type for $__lldb_objc_class: %s",
1100                       current_id, ast_dumper.GetCString());
1101         }
1102 
1103         AddOneType(context, class_user_type, current_id);
1104 
1105         if (method_decl->isInstanceMethod()) {
1106           // self is a pointer to the object
1107 
1108           QualType class_pointer_type =
1109               method_decl->getASTContext().getObjCObjectPointerType(
1110                   QualType(interface_type, 0));
1111 
1112           TypeFromUser self_user_type(
1113               class_pointer_type.getAsOpaquePtr(),
1114               ClangASTContext::GetASTContext(&method_decl->getASTContext()));
1115 
1116           m_struct_vars->m_object_pointer_type = self_user_type;
1117         } else {
1118           // self is a Class pointer
1119           QualType class_type = method_decl->getASTContext().getObjCClassType();
1120 
1121           TypeFromUser self_user_type(
1122               class_type.getAsOpaquePtr(),
1123               ClangASTContext::GetASTContext(&method_decl->getASTContext()));
1124 
1125           m_struct_vars->m_object_pointer_type = self_user_type;
1126         }
1127 
1128         return;
1129       } else {
1130         // This branch will get hit if we are executing code in the context of
1131         // a function that claims to have an object pointer (through
1132         // DW_AT_object_pointer?) but is not formally a method of the class.
1133         // In that case, just look up the "self" variable in the current scope
1134         // and use its type.
1135 
1136         VariableList *vars = frame->GetVariableList(false);
1137 
1138         lldb::VariableSP self_var = vars->FindVariable(ConstString("self"));
1139 
1140         if (self_var && self_var->IsInScope(frame) &&
1141             self_var->LocationIsValidForFrame(frame)) {
1142           Type *self_type = self_var->GetType();
1143 
1144           if (!self_type)
1145             return;
1146 
1147           CompilerType self_clang_type = self_type->GetFullCompilerType();
1148 
1149           if (ClangASTContext::IsObjCClassType(self_clang_type)) {
1150             return;
1151           } else if (ClangASTContext::IsObjCObjectPointerType(
1152                          self_clang_type)) {
1153             self_clang_type = self_clang_type.GetPointeeType();
1154 
1155             if (!self_clang_type)
1156               return;
1157 
1158             if (log) {
1159               ASTDumper ast_dumper(self_type->GetFullCompilerType());
1160               log->Printf("  FEVD[%u] Adding type for $__lldb_objc_class: %s",
1161                           current_id, ast_dumper.GetCString());
1162             }
1163 
1164             TypeFromUser class_user_type(self_clang_type);
1165 
1166             AddOneType(context, class_user_type, current_id);
1167 
1168             TypeFromUser self_user_type(self_type->GetFullCompilerType());
1169 
1170             m_struct_vars->m_object_pointer_type = self_user_type;
1171             return;
1172           }
1173         }
1174       }
1175 
1176       return;
1177     }
1178 
1179     if (name == ConstString(g_lldb_local_vars_namespace_cstr)) {
1180       CompilerDeclContext frame_decl_context =
1181           sym_ctx.block != nullptr ? sym_ctx.block->GetDeclContext()
1182                                    : CompilerDeclContext();
1183 
1184       if (frame_decl_context) {
1185         ClangASTContext *ast = llvm::dyn_cast_or_null<ClangASTContext>(
1186             frame_decl_context.GetTypeSystem());
1187 
1188         if (ast) {
1189           clang::NamespaceDecl *namespace_decl =
1190               ClangASTContext::GetUniqueNamespaceDeclaration(
1191                   m_ast_context, name.GetCString(), nullptr);
1192           if (namespace_decl) {
1193             context.AddNamedDecl(namespace_decl);
1194             clang::DeclContext *clang_decl_ctx =
1195                 clang::Decl::castToDeclContext(namespace_decl);
1196             clang_decl_ctx->setHasExternalVisibleStorage(true);
1197             context.m_found.local_vars_nsp = true;
1198           }
1199         }
1200       }
1201 
1202       return;
1203     }
1204 
1205     // any other $__lldb names should be weeded out now
1206     if (name.GetStringRef().startswith("$__lldb"))
1207       return;
1208 
1209     ExpressionVariableSP pvar_sp(
1210         m_parser_vars->m_persistent_vars->GetVariable(name));
1211 
1212     if (pvar_sp) {
1213       AddOneVariable(context, pvar_sp, current_id);
1214       return;
1215     }
1216 
1217     const char *reg_name(&name.GetCString()[1]);
1218 
1219     if (m_parser_vars->m_exe_ctx.GetRegisterContext()) {
1220       const RegisterInfo *reg_info(
1221           m_parser_vars->m_exe_ctx.GetRegisterContext()->GetRegisterInfoByName(
1222               reg_name));
1223 
1224       if (reg_info) {
1225         if (log)
1226           log->Printf("  CEDM::FEVD[%u] Found register %s", current_id,
1227                       reg_info->name);
1228 
1229         AddOneRegister(context, reg_info, current_id);
1230       }
1231     }
1232   } else {
1233     ValueObjectSP valobj;
1234     VariableSP var;
1235 
1236     bool local_var_lookup =
1237         !namespace_decl || (namespace_decl.GetName() ==
1238                             ConstString(g_lldb_local_vars_namespace_cstr));
1239     if (frame && local_var_lookup) {
1240       CompilerDeclContext compiler_decl_context =
1241           sym_ctx.block != nullptr ? sym_ctx.block->GetDeclContext()
1242                                    : CompilerDeclContext();
1243 
1244       if (compiler_decl_context) {
1245         // Make sure that the variables are parsed so that we have the
1246         // declarations.
1247         VariableListSP vars = frame->GetInScopeVariableList(true);
1248         for (size_t i = 0; i < vars->GetSize(); i++)
1249           vars->GetVariableAtIndex(i)->GetDecl();
1250 
1251         // Search for declarations matching the name. Do not include imported
1252         // decls in the search if we are looking for decls in the artificial
1253         // namespace $__lldb_local_vars.
1254         std::vector<CompilerDecl> found_decls =
1255             compiler_decl_context.FindDeclByName(name,
1256                                                  namespace_decl.IsValid());
1257 
1258         bool variable_found = false;
1259         for (CompilerDecl decl : found_decls) {
1260           for (size_t vi = 0, ve = vars->GetSize(); vi != ve; ++vi) {
1261             VariableSP candidate_var = vars->GetVariableAtIndex(vi);
1262             if (candidate_var->GetDecl() == decl) {
1263               var = candidate_var;
1264               break;
1265             }
1266           }
1267 
1268           if (var && !variable_found) {
1269             variable_found = true;
1270             valobj = ValueObjectVariable::Create(frame, var);
1271             AddOneVariable(context, var, valobj, current_id);
1272             context.m_found.variable = true;
1273           }
1274         }
1275         if (variable_found)
1276           return;
1277       }
1278     }
1279     if (target) {
1280       var = FindGlobalVariable(*target, module_sp, name, &namespace_decl, NULL);
1281 
1282       if (var) {
1283         valobj = ValueObjectVariable::Create(target, var);
1284         AddOneVariable(context, var, valobj, current_id);
1285         context.m_found.variable = true;
1286         return;
1287       }
1288     }
1289 
1290     std::vector<clang::NamedDecl *> decls_from_modules;
1291 
1292     if (target) {
1293       if (ClangModulesDeclVendor *decl_vendor =
1294               target->GetClangModulesDeclVendor()) {
1295         decl_vendor->FindDecls(name, false, UINT32_MAX, decls_from_modules);
1296       }
1297     }
1298 
1299     const bool include_inlines = false;
1300     const bool append = false;
1301 
1302     if (namespace_decl && module_sp) {
1303       const bool include_symbols = false;
1304 
1305       module_sp->FindFunctions(name, &namespace_decl, eFunctionNameTypeBase,
1306                                include_symbols, include_inlines, append,
1307                                sc_list);
1308     } else if (target && !namespace_decl) {
1309       const bool include_symbols = true;
1310 
1311       // TODO Fix FindFunctions so that it doesn't return
1312       //   instance methods for eFunctionNameTypeBase.
1313 
1314       target->GetImages().FindFunctions(name, eFunctionNameTypeFull,
1315                                         include_symbols, include_inlines,
1316                                         append, sc_list);
1317     }
1318 
1319     // If we found more than one function, see if we can use the frame's decl
1320     // context to remove functions that are shadowed by other functions which
1321     // match in type but are nearer in scope.
1322     //
1323     // AddOneFunction will not add a function whose type has already been
1324     // added, so if there's another function in the list with a matching type,
1325     // check to see if their decl context is a parent of the current frame's or
1326     // was imported via a and using statement, and pick the best match
1327     // according to lookup rules.
1328     if (sc_list.GetSize() > 1) {
1329       // Collect some info about our frame's context.
1330       StackFrame *frame = m_parser_vars->m_exe_ctx.GetFramePtr();
1331       SymbolContext frame_sym_ctx;
1332       if (frame != nullptr)
1333         frame_sym_ctx = frame->GetSymbolContext(lldb::eSymbolContextFunction |
1334                                                 lldb::eSymbolContextBlock);
1335       CompilerDeclContext frame_decl_context =
1336           frame_sym_ctx.block != nullptr ? frame_sym_ctx.block->GetDeclContext()
1337                                          : CompilerDeclContext();
1338 
1339       // We can't do this without a compiler decl context for our frame.
1340       if (frame_decl_context) {
1341         clang::DeclContext *frame_decl_ctx =
1342             (clang::DeclContext *)frame_decl_context.GetOpaqueDeclContext();
1343         ClangASTContext *ast = llvm::dyn_cast_or_null<ClangASTContext>(
1344             frame_decl_context.GetTypeSystem());
1345 
1346         // Structure to hold the info needed when comparing function
1347         // declarations.
1348         struct FuncDeclInfo {
1349           ConstString m_name;
1350           CompilerType m_copied_type;
1351           uint32_t m_decl_lvl;
1352           SymbolContext m_sym_ctx;
1353         };
1354 
1355         // First, symplify things by looping through the symbol contexts to
1356         // remove unwanted functions and separate out the functions we want to
1357         // compare and prune into a separate list. Cache the info needed about
1358         // the function declarations in a vector for efficiency.
1359         SymbolContextList sc_sym_list;
1360         uint32_t num_indices = sc_list.GetSize();
1361         std::vector<FuncDeclInfo> fdi_cache;
1362         fdi_cache.reserve(num_indices);
1363         for (uint32_t index = 0; index < num_indices; ++index) {
1364           FuncDeclInfo fdi;
1365           SymbolContext sym_ctx;
1366           sc_list.GetContextAtIndex(index, sym_ctx);
1367 
1368           // We don't know enough about symbols to compare them, but we should
1369           // keep them in the list.
1370           Function *function = sym_ctx.function;
1371           if (!function) {
1372             sc_sym_list.Append(sym_ctx);
1373             continue;
1374           }
1375           // Filter out functions without declaration contexts, as well as
1376           // class/instance methods, since they'll be skipped in the code that
1377           // follows anyway.
1378           CompilerDeclContext func_decl_context = function->GetDeclContext();
1379           if (!func_decl_context ||
1380               func_decl_context.IsClassMethod(nullptr, nullptr, nullptr))
1381             continue;
1382           // We can only prune functions for which we can copy the type.
1383           CompilerType func_clang_type =
1384               function->GetType()->GetFullCompilerType();
1385           CompilerType copied_func_type = GuardedCopyType(func_clang_type);
1386           if (!copied_func_type) {
1387             sc_sym_list.Append(sym_ctx);
1388             continue;
1389           }
1390 
1391           fdi.m_sym_ctx = sym_ctx;
1392           fdi.m_name = function->GetName();
1393           fdi.m_copied_type = copied_func_type;
1394           fdi.m_decl_lvl = LLDB_INVALID_DECL_LEVEL;
1395           if (fdi.m_copied_type && func_decl_context) {
1396             // Call CountDeclLevels to get the number of parent scopes we have
1397             // to look through before we find the function declaration. When
1398             // comparing functions of the same type, the one with a lower count
1399             // will be closer to us in the lookup scope and shadows the other.
1400             clang::DeclContext *func_decl_ctx =
1401                 (clang::DeclContext *)func_decl_context.GetOpaqueDeclContext();
1402             fdi.m_decl_lvl = ast->CountDeclLevels(
1403                 frame_decl_ctx, func_decl_ctx, &fdi.m_name, &fdi.m_copied_type);
1404           }
1405           fdi_cache.emplace_back(fdi);
1406         }
1407 
1408         // Loop through the functions in our cache looking for matching types,
1409         // then compare their scope levels to see which is closer.
1410         std::multimap<CompilerType, const FuncDeclInfo *> matches;
1411         for (const FuncDeclInfo &fdi : fdi_cache) {
1412           const CompilerType t = fdi.m_copied_type;
1413           auto q = matches.find(t);
1414           if (q != matches.end()) {
1415             if (q->second->m_decl_lvl > fdi.m_decl_lvl)
1416               // This function is closer; remove the old set.
1417               matches.erase(t);
1418             else if (q->second->m_decl_lvl < fdi.m_decl_lvl)
1419               // The functions in our set are closer - skip this one.
1420               continue;
1421           }
1422           matches.insert(std::make_pair(t, &fdi));
1423         }
1424 
1425         // Loop through our matches and add their symbol contexts to our list.
1426         SymbolContextList sc_func_list;
1427         for (const auto &q : matches)
1428           sc_func_list.Append(q.second->m_sym_ctx);
1429 
1430         // Rejoin the lists with the functions in front.
1431         sc_list = sc_func_list;
1432         sc_list.Append(sc_sym_list);
1433       }
1434     }
1435 
1436     if (sc_list.GetSize()) {
1437       Symbol *extern_symbol = NULL;
1438       Symbol *non_extern_symbol = NULL;
1439 
1440       for (uint32_t index = 0, num_indices = sc_list.GetSize();
1441            index < num_indices; ++index) {
1442         SymbolContext sym_ctx;
1443         sc_list.GetContextAtIndex(index, sym_ctx);
1444 
1445         if (sym_ctx.function) {
1446           CompilerDeclContext decl_ctx = sym_ctx.function->GetDeclContext();
1447 
1448           if (!decl_ctx)
1449             continue;
1450 
1451           // Filter out class/instance methods.
1452           if (decl_ctx.IsClassMethod(nullptr, nullptr, nullptr))
1453             continue;
1454 
1455           AddOneFunction(context, sym_ctx.function, NULL, current_id);
1456           context.m_found.function_with_type_info = true;
1457           context.m_found.function = true;
1458         } else if (sym_ctx.symbol) {
1459           if (sym_ctx.symbol->GetType() == eSymbolTypeReExported && target) {
1460             sym_ctx.symbol = sym_ctx.symbol->ResolveReExportedSymbol(*target);
1461             if (sym_ctx.symbol == NULL)
1462               continue;
1463           }
1464 
1465           if (sym_ctx.symbol->IsExternal())
1466             extern_symbol = sym_ctx.symbol;
1467           else
1468             non_extern_symbol = sym_ctx.symbol;
1469         }
1470       }
1471 
1472       if (!context.m_found.function_with_type_info) {
1473         for (clang::NamedDecl *decl : decls_from_modules) {
1474           if (llvm::isa<clang::FunctionDecl>(decl)) {
1475             clang::NamedDecl *copied_decl =
1476                 llvm::cast_or_null<FunctionDecl>(CopyDecl(decl));
1477             if (copied_decl) {
1478               context.AddNamedDecl(copied_decl);
1479               context.m_found.function_with_type_info = true;
1480             }
1481           }
1482         }
1483       }
1484 
1485       if (!context.m_found.function_with_type_info) {
1486         if (extern_symbol) {
1487           AddOneFunction(context, NULL, extern_symbol, current_id);
1488           context.m_found.function = true;
1489         } else if (non_extern_symbol) {
1490           AddOneFunction(context, NULL, non_extern_symbol, current_id);
1491           context.m_found.function = true;
1492         }
1493       }
1494     }
1495 
1496     if (!context.m_found.function_with_type_info) {
1497       // Try the modules next.
1498 
1499       do {
1500         if (ClangModulesDeclVendor *modules_decl_vendor =
1501                 m_target->GetClangModulesDeclVendor()) {
1502           bool append = false;
1503           uint32_t max_matches = 1;
1504           std::vector<clang::NamedDecl *> decls;
1505 
1506           if (!modules_decl_vendor->FindDecls(name, append, max_matches, decls))
1507             break;
1508 
1509           clang::NamedDecl *const decl_from_modules = decls[0];
1510 
1511           if (llvm::isa<clang::FunctionDecl>(decl_from_modules)) {
1512             if (log) {
1513               log->Printf("  CAS::FEVD[%u] Matching function found for "
1514                           "\"%s\" in the modules",
1515                           current_id, name.GetCString());
1516             }
1517 
1518             clang::Decl *copied_decl = CopyDecl(decl_from_modules);
1519             clang::FunctionDecl *copied_function_decl =
1520                 copied_decl ? dyn_cast<clang::FunctionDecl>(copied_decl)
1521                             : nullptr;
1522 
1523             if (!copied_function_decl) {
1524               if (log)
1525                 log->Printf("  CAS::FEVD[%u] - Couldn't export a function "
1526                             "declaration from the modules",
1527                             current_id);
1528 
1529               break;
1530             }
1531 
1532             MaybeRegisterFunctionBody(copied_function_decl);
1533 
1534             context.AddNamedDecl(copied_function_decl);
1535 
1536             context.m_found.function_with_type_info = true;
1537             context.m_found.function = true;
1538           } else if (llvm::isa<clang::VarDecl>(decl_from_modules)) {
1539             if (log) {
1540               log->Printf("  CAS::FEVD[%u] Matching variable found for "
1541                           "\"%s\" in the modules",
1542                           current_id, name.GetCString());
1543             }
1544 
1545             clang::Decl *copied_decl = CopyDecl(decl_from_modules);
1546             clang::VarDecl *copied_var_decl =
1547                 copied_decl ? dyn_cast_or_null<clang::VarDecl>(copied_decl)
1548                             : nullptr;
1549 
1550             if (!copied_var_decl) {
1551               if (log)
1552                 log->Printf("  CAS::FEVD[%u] - Couldn't export a variable "
1553                             "declaration from the modules",
1554                             current_id);
1555 
1556               break;
1557             }
1558 
1559             context.AddNamedDecl(copied_var_decl);
1560 
1561             context.m_found.variable = true;
1562           }
1563         }
1564       } while (0);
1565     }
1566 
1567     if (target && !context.m_found.variable && !namespace_decl) {
1568       // We couldn't find a non-symbol variable for this.  Now we'll hunt for a
1569       // generic data symbol, and -- if it is found -- treat it as a variable.
1570       Status error;
1571 
1572       const Symbol *data_symbol =
1573           m_parser_vars->m_sym_ctx.FindBestGlobalDataSymbol(name, error);
1574 
1575       if (!error.Success()) {
1576         const unsigned diag_id =
1577             m_ast_context->getDiagnostics().getCustomDiagID(
1578                 clang::DiagnosticsEngine::Level::Error, "%0");
1579         m_ast_context->getDiagnostics().Report(diag_id) << error.AsCString();
1580       }
1581 
1582       if (data_symbol) {
1583         std::string warning("got name from symbols: ");
1584         warning.append(name.AsCString());
1585         const unsigned diag_id =
1586             m_ast_context->getDiagnostics().getCustomDiagID(
1587                 clang::DiagnosticsEngine::Level::Warning, "%0");
1588         m_ast_context->getDiagnostics().Report(diag_id) << warning.c_str();
1589         AddOneGenericVariable(context, *data_symbol, current_id);
1590         context.m_found.variable = true;
1591       }
1592     }
1593   }
1594 }
1595 
1596 bool ClangExpressionDeclMap::GetVariableValue(VariableSP &var,
1597                                               lldb_private::Value &var_location,
1598                                               TypeFromUser *user_type,
1599                                               TypeFromParser *parser_type) {
1600   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1601 
1602   Type *var_type = var->GetType();
1603 
1604   if (!var_type) {
1605     if (log)
1606       log->PutCString("Skipped a definition because it has no type");
1607     return false;
1608   }
1609 
1610   CompilerType var_clang_type = var_type->GetFullCompilerType();
1611 
1612   if (!var_clang_type) {
1613     if (log)
1614       log->PutCString("Skipped a definition because it has no Clang type");
1615     return false;
1616   }
1617 
1618   ClangASTContext *clang_ast = llvm::dyn_cast_or_null<ClangASTContext>(
1619       var_type->GetForwardCompilerType().GetTypeSystem());
1620 
1621   if (!clang_ast) {
1622     if (log)
1623       log->PutCString("Skipped a definition because it has no Clang AST");
1624     return false;
1625   }
1626 
1627   ASTContext *ast = clang_ast->getASTContext();
1628 
1629   if (!ast) {
1630     if (log)
1631       log->PutCString(
1632           "There is no AST context for the current execution context");
1633     return false;
1634   }
1635 
1636   DWARFExpression &var_location_expr = var->LocationExpression();
1637 
1638   Target *target = m_parser_vars->m_exe_ctx.GetTargetPtr();
1639   Status err;
1640 
1641   if (var->GetLocationIsConstantValueData()) {
1642     DataExtractor const_value_extractor;
1643 
1644     if (var_location_expr.GetExpressionData(const_value_extractor)) {
1645       var_location = Value(const_value_extractor.GetDataStart(),
1646                            const_value_extractor.GetByteSize());
1647       var_location.SetValueType(Value::eValueTypeHostAddress);
1648     } else {
1649       if (log)
1650         log->Printf("Error evaluating constant variable: %s", err.AsCString());
1651       return false;
1652     }
1653   }
1654 
1655   CompilerType type_to_use = GuardedCopyType(var_clang_type);
1656 
1657   if (!type_to_use) {
1658     if (log)
1659       log->Printf(
1660           "Couldn't copy a variable's type into the parser's AST context");
1661 
1662     return false;
1663   }
1664 
1665   if (parser_type)
1666     *parser_type = TypeFromParser(type_to_use);
1667 
1668   if (var_location.GetContextType() == Value::eContextTypeInvalid)
1669     var_location.SetCompilerType(type_to_use);
1670 
1671   if (var_location.GetValueType() == Value::eValueTypeFileAddress) {
1672     SymbolContext var_sc;
1673     var->CalculateSymbolContext(&var_sc);
1674 
1675     if (!var_sc.module_sp)
1676       return false;
1677 
1678     Address so_addr(var_location.GetScalar().ULongLong(),
1679                     var_sc.module_sp->GetSectionList());
1680 
1681     lldb::addr_t load_addr = so_addr.GetLoadAddress(target);
1682 
1683     if (load_addr != LLDB_INVALID_ADDRESS) {
1684       var_location.GetScalar() = load_addr;
1685       var_location.SetValueType(Value::eValueTypeLoadAddress);
1686     }
1687   }
1688 
1689   if (user_type)
1690     *user_type = TypeFromUser(var_clang_type);
1691 
1692   return true;
1693 }
1694 
1695 void ClangExpressionDeclMap::AddOneVariable(NameSearchContext &context,
1696                                             VariableSP var,
1697                                             ValueObjectSP valobj,
1698                                             unsigned int current_id) {
1699   assert(m_parser_vars.get());
1700 
1701   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1702 
1703   TypeFromUser ut;
1704   TypeFromParser pt;
1705   Value var_location;
1706 
1707   if (!GetVariableValue(var, var_location, &ut, &pt))
1708     return;
1709 
1710   clang::QualType parser_opaque_type =
1711       QualType::getFromOpaquePtr(pt.GetOpaqueQualType());
1712 
1713   if (parser_opaque_type.isNull())
1714     return;
1715 
1716   if (const clang::Type *parser_type = parser_opaque_type.getTypePtr()) {
1717     if (const TagType *tag_type = dyn_cast<TagType>(parser_type))
1718       CompleteType(tag_type->getDecl());
1719     if (const ObjCObjectPointerType *objc_object_ptr_type =
1720             dyn_cast<ObjCObjectPointerType>(parser_type))
1721       CompleteType(objc_object_ptr_type->getInterfaceDecl());
1722   }
1723 
1724   bool is_reference = pt.IsReferenceType();
1725 
1726   NamedDecl *var_decl = NULL;
1727   if (is_reference)
1728     var_decl = context.AddVarDecl(pt);
1729   else
1730     var_decl = context.AddVarDecl(pt.GetLValueReferenceType());
1731 
1732   std::string decl_name(context.m_decl_name.getAsString());
1733   ConstString entity_name(decl_name.c_str());
1734   ClangExpressionVariable *entity(new ClangExpressionVariable(valobj));
1735   m_found_entities.AddNewlyConstructedVariable(entity);
1736 
1737   assert(entity);
1738   entity->EnableParserVars(GetParserID());
1739   ClangExpressionVariable::ParserVars *parser_vars =
1740       entity->GetParserVars(GetParserID());
1741   parser_vars->m_parser_type = pt;
1742   parser_vars->m_named_decl = var_decl;
1743   parser_vars->m_llvm_value = NULL;
1744   parser_vars->m_lldb_value = var_location;
1745   parser_vars->m_lldb_var = var;
1746 
1747   if (is_reference)
1748     entity->m_flags |= ClangExpressionVariable::EVTypeIsReference;
1749 
1750   if (log) {
1751     ASTDumper orig_dumper(ut.GetOpaqueQualType());
1752     ASTDumper ast_dumper(var_decl);
1753     log->Printf("  CEDM::FEVD[%u] Found variable %s, returned %s (original %s)",
1754                 current_id, decl_name.c_str(), ast_dumper.GetCString(),
1755                 orig_dumper.GetCString());
1756   }
1757 }
1758 
1759 void ClangExpressionDeclMap::AddOneVariable(NameSearchContext &context,
1760                                             ExpressionVariableSP &pvar_sp,
1761                                             unsigned int current_id) {
1762   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1763 
1764   TypeFromUser user_type(
1765       llvm::cast<ClangExpressionVariable>(pvar_sp.get())->GetTypeFromUser());
1766 
1767   TypeFromParser parser_type(GuardedCopyType(user_type));
1768 
1769   if (!parser_type.GetOpaqueQualType()) {
1770     if (log)
1771       log->Printf("  CEDM::FEVD[%u] Couldn't import type for pvar %s",
1772                   current_id, pvar_sp->GetName().GetCString());
1773     return;
1774   }
1775 
1776   NamedDecl *var_decl =
1777       context.AddVarDecl(parser_type.GetLValueReferenceType());
1778 
1779   llvm::cast<ClangExpressionVariable>(pvar_sp.get())
1780       ->EnableParserVars(GetParserID());
1781   ClangExpressionVariable::ParserVars *parser_vars =
1782       llvm::cast<ClangExpressionVariable>(pvar_sp.get())
1783           ->GetParserVars(GetParserID());
1784   parser_vars->m_parser_type = parser_type;
1785   parser_vars->m_named_decl = var_decl;
1786   parser_vars->m_llvm_value = NULL;
1787   parser_vars->m_lldb_value.Clear();
1788 
1789   if (log) {
1790     ASTDumper ast_dumper(var_decl);
1791     log->Printf("  CEDM::FEVD[%u] Added pvar %s, returned %s", current_id,
1792                 pvar_sp->GetName().GetCString(), ast_dumper.GetCString());
1793   }
1794 }
1795 
1796 void ClangExpressionDeclMap::AddOneGenericVariable(NameSearchContext &context,
1797                                                    const Symbol &symbol,
1798                                                    unsigned int current_id) {
1799   assert(m_parser_vars.get());
1800 
1801   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1802 
1803   Target *target = m_parser_vars->m_exe_ctx.GetTargetPtr();
1804 
1805   if (target == NULL)
1806     return;
1807 
1808   ASTContext *scratch_ast_context =
1809       target->GetScratchClangASTContext()->getASTContext();
1810 
1811   TypeFromUser user_type(
1812       ClangASTContext::GetBasicType(scratch_ast_context, eBasicTypeVoid)
1813           .GetPointerType()
1814           .GetLValueReferenceType());
1815   TypeFromParser parser_type(
1816       ClangASTContext::GetBasicType(m_ast_context, eBasicTypeVoid)
1817           .GetPointerType()
1818           .GetLValueReferenceType());
1819   NamedDecl *var_decl = context.AddVarDecl(parser_type);
1820 
1821   std::string decl_name(context.m_decl_name.getAsString());
1822   ConstString entity_name(decl_name.c_str());
1823   ClangExpressionVariable *entity(new ClangExpressionVariable(
1824       m_parser_vars->m_exe_ctx.GetBestExecutionContextScope(), entity_name,
1825       user_type, m_parser_vars->m_target_info.byte_order,
1826       m_parser_vars->m_target_info.address_byte_size));
1827   m_found_entities.AddNewlyConstructedVariable(entity);
1828 
1829   entity->EnableParserVars(GetParserID());
1830   ClangExpressionVariable::ParserVars *parser_vars =
1831       entity->GetParserVars(GetParserID());
1832 
1833   const Address symbol_address = symbol.GetAddress();
1834   lldb::addr_t symbol_load_addr = symbol_address.GetLoadAddress(target);
1835 
1836   // parser_vars->m_lldb_value.SetContext(Value::eContextTypeClangType,
1837   // user_type.GetOpaqueQualType());
1838   parser_vars->m_lldb_value.SetCompilerType(user_type);
1839   parser_vars->m_lldb_value.GetScalar() = symbol_load_addr;
1840   parser_vars->m_lldb_value.SetValueType(Value::eValueTypeLoadAddress);
1841 
1842   parser_vars->m_parser_type = parser_type;
1843   parser_vars->m_named_decl = var_decl;
1844   parser_vars->m_llvm_value = NULL;
1845   parser_vars->m_lldb_sym = &symbol;
1846 
1847   if (log) {
1848     ASTDumper ast_dumper(var_decl);
1849 
1850     log->Printf("  CEDM::FEVD[%u] Found variable %s, returned %s", current_id,
1851                 decl_name.c_str(), ast_dumper.GetCString());
1852   }
1853 }
1854 
1855 bool ClangExpressionDeclMap::ResolveUnknownTypes() {
1856   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1857   Target *target = m_parser_vars->m_exe_ctx.GetTargetPtr();
1858 
1859   ClangASTContextForExpressions *scratch_ast_context =
1860       static_cast<ClangASTContextForExpressions*>(
1861           target->GetScratchClangASTContext());
1862 
1863   for (size_t index = 0, num_entities = m_found_entities.GetSize();
1864        index < num_entities; ++index) {
1865     ExpressionVariableSP entity = m_found_entities.GetVariableAtIndex(index);
1866 
1867     ClangExpressionVariable::ParserVars *parser_vars =
1868         llvm::cast<ClangExpressionVariable>(entity.get())
1869             ->GetParserVars(GetParserID());
1870 
1871     if (entity->m_flags & ClangExpressionVariable::EVUnknownType) {
1872       const NamedDecl *named_decl = parser_vars->m_named_decl;
1873       const VarDecl *var_decl = dyn_cast<VarDecl>(named_decl);
1874 
1875       if (!var_decl) {
1876         if (log)
1877           log->Printf("Entity of unknown type does not have a VarDecl");
1878         return false;
1879       }
1880 
1881       if (log) {
1882         ASTDumper ast_dumper(const_cast<VarDecl *>(var_decl));
1883         log->Printf("Variable of unknown type now has Decl %s",
1884                     ast_dumper.GetCString());
1885       }
1886 
1887       QualType var_type = var_decl->getType();
1888       TypeFromParser parser_type(
1889           var_type.getAsOpaquePtr(),
1890           ClangASTContext::GetASTContext(&var_decl->getASTContext()));
1891 
1892       lldb::opaque_compiler_type_t copied_type = 0;
1893       if (m_ast_importer_sp) {
1894         copied_type = m_ast_importer_sp->CopyType(
1895             scratch_ast_context->getASTContext(), &var_decl->getASTContext(),
1896             var_type.getAsOpaquePtr());
1897       } else if (HasMerger()) {
1898         copied_type = CopyTypeWithMerger(
1899             var_decl->getASTContext(),
1900             scratch_ast_context->GetMergerUnchecked(),
1901             var_type).getAsOpaquePtr();
1902       } else {
1903         lldbassert(0 && "No mechanism to copy a resolved unknown type!");
1904         return false;
1905       }
1906 
1907       if (!copied_type) {
1908         if (log)
1909           log->Printf("ClangExpressionDeclMap::ResolveUnknownType - Couldn't "
1910                       "import the type for a variable");
1911 
1912         return (bool)lldb::ExpressionVariableSP();
1913       }
1914 
1915       TypeFromUser user_type(copied_type, scratch_ast_context);
1916 
1917       //            parser_vars->m_lldb_value.SetContext(Value::eContextTypeClangType,
1918       //            user_type.GetOpaqueQualType());
1919       parser_vars->m_lldb_value.SetCompilerType(user_type);
1920       parser_vars->m_parser_type = parser_type;
1921 
1922       entity->SetCompilerType(user_type);
1923 
1924       entity->m_flags &= ~(ClangExpressionVariable::EVUnknownType);
1925     }
1926   }
1927 
1928   return true;
1929 }
1930 
1931 void ClangExpressionDeclMap::AddOneRegister(NameSearchContext &context,
1932                                             const RegisterInfo *reg_info,
1933                                             unsigned int current_id) {
1934   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1935 
1936   CompilerType clang_type =
1937       ClangASTContext::GetBuiltinTypeForEncodingAndBitSize(
1938           m_ast_context, reg_info->encoding, reg_info->byte_size * 8);
1939 
1940   if (!clang_type) {
1941     if (log)
1942       log->Printf("  Tried to add a type for %s, but couldn't get one",
1943                   context.m_decl_name.getAsString().c_str());
1944     return;
1945   }
1946 
1947   TypeFromParser parser_clang_type(clang_type);
1948 
1949   NamedDecl *var_decl = context.AddVarDecl(parser_clang_type);
1950 
1951   ClangExpressionVariable *entity(new ClangExpressionVariable(
1952       m_parser_vars->m_exe_ctx.GetBestExecutionContextScope(),
1953       m_parser_vars->m_target_info.byte_order,
1954       m_parser_vars->m_target_info.address_byte_size));
1955   m_found_entities.AddNewlyConstructedVariable(entity);
1956 
1957   std::string decl_name(context.m_decl_name.getAsString());
1958   entity->SetName(ConstString(decl_name.c_str()));
1959   entity->SetRegisterInfo(reg_info);
1960   entity->EnableParserVars(GetParserID());
1961   ClangExpressionVariable::ParserVars *parser_vars =
1962       entity->GetParserVars(GetParserID());
1963   parser_vars->m_parser_type = parser_clang_type;
1964   parser_vars->m_named_decl = var_decl;
1965   parser_vars->m_llvm_value = NULL;
1966   parser_vars->m_lldb_value.Clear();
1967   entity->m_flags |= ClangExpressionVariable::EVBareRegister;
1968 
1969   if (log) {
1970     ASTDumper ast_dumper(var_decl);
1971     log->Printf("  CEDM::FEVD[%d] Added register %s, returned %s", current_id,
1972                 context.m_decl_name.getAsString().c_str(),
1973                 ast_dumper.GetCString());
1974   }
1975 }
1976 
1977 void ClangExpressionDeclMap::AddOneFunction(NameSearchContext &context,
1978                                             Function *function, Symbol *symbol,
1979                                             unsigned int current_id) {
1980   assert(m_parser_vars.get());
1981 
1982   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1983 
1984   NamedDecl *function_decl = NULL;
1985   Address fun_address;
1986   CompilerType function_clang_type;
1987 
1988   bool is_indirect_function = false;
1989 
1990   if (function) {
1991     Type *function_type = function->GetType();
1992 
1993     const auto lang = function->GetCompileUnit()->GetLanguage();
1994     const auto name = function->GetMangled().GetMangledName().AsCString();
1995     const bool extern_c = (Language::LanguageIsC(lang) &&
1996                            !CPlusPlusLanguage::IsCPPMangledName(name)) ||
1997                           (Language::LanguageIsObjC(lang) &&
1998                            !Language::LanguageIsCPlusPlus(lang));
1999 
2000     if (!extern_c) {
2001       TypeSystem *type_system = function->GetDeclContext().GetTypeSystem();
2002       if (llvm::isa<ClangASTContext>(type_system)) {
2003         clang::DeclContext *src_decl_context =
2004             (clang::DeclContext *)function->GetDeclContext()
2005                 .GetOpaqueDeclContext();
2006         clang::FunctionDecl *src_function_decl =
2007             llvm::dyn_cast_or_null<clang::FunctionDecl>(src_decl_context);
2008         if (src_function_decl &&
2009             src_function_decl->getTemplateSpecializationInfo()) {
2010           clang::FunctionTemplateDecl *function_template =
2011               src_function_decl->getTemplateSpecializationInfo()->getTemplate();
2012           clang::FunctionTemplateDecl *copied_function_template =
2013               llvm::dyn_cast_or_null<clang::FunctionTemplateDecl>(
2014                   CopyDecl(function_template));
2015           if (copied_function_template) {
2016             if (log) {
2017               ASTDumper ast_dumper((clang::Decl *)copied_function_template);
2018 
2019               StreamString ss;
2020 
2021               function->DumpSymbolContext(&ss);
2022 
2023               log->Printf("  CEDM::FEVD[%u] Imported decl for function template"
2024                           " %s (description %s), returned %s",
2025                           current_id,
2026                           copied_function_template->getNameAsString().c_str(),
2027                           ss.GetData(), ast_dumper.GetCString());
2028             }
2029 
2030             context.AddNamedDecl(copied_function_template);
2031           }
2032         } else if (src_function_decl) {
2033           if (clang::FunctionDecl *copied_function_decl =
2034                   llvm::dyn_cast_or_null<clang::FunctionDecl>(
2035                        CopyDecl(src_function_decl))) {
2036             if (log) {
2037               ASTDumper ast_dumper((clang::Decl *)copied_function_decl);
2038 
2039               StreamString ss;
2040 
2041               function->DumpSymbolContext(&ss);
2042 
2043               log->Printf("  CEDM::FEVD[%u] Imported decl for function %s "
2044                           "(description %s), returned %s",
2045                           current_id,
2046                           copied_function_decl->getNameAsString().c_str(),
2047                           ss.GetData(), ast_dumper.GetCString());
2048             }
2049 
2050             context.AddNamedDecl(copied_function_decl);
2051             return;
2052           } else {
2053             if (log) {
2054               log->Printf("  Failed to import the function decl for '%s'",
2055                           src_function_decl->getName().str().c_str());
2056             }
2057           }
2058         }
2059       }
2060     }
2061 
2062     if (!function_type) {
2063       if (log)
2064         log->PutCString("  Skipped a function because it has no type");
2065       return;
2066     }
2067 
2068     function_clang_type = function_type->GetFullCompilerType();
2069 
2070     if (!function_clang_type) {
2071       if (log)
2072         log->PutCString("  Skipped a function because it has no Clang type");
2073       return;
2074     }
2075 
2076     fun_address = function->GetAddressRange().GetBaseAddress();
2077 
2078     CompilerType copied_function_type = GuardedCopyType(function_clang_type);
2079     if (copied_function_type) {
2080       function_decl = context.AddFunDecl(copied_function_type, extern_c);
2081 
2082       if (!function_decl) {
2083         if (log) {
2084           log->Printf(
2085               "  Failed to create a function decl for '%s' {0x%8.8" PRIx64 "}",
2086               function_type->GetName().GetCString(), function_type->GetID());
2087         }
2088 
2089         return;
2090       }
2091     } else {
2092       // We failed to copy the type we found
2093       if (log) {
2094         log->Printf("  Failed to import the function type '%s' {0x%8.8" PRIx64
2095                     "} into the expression parser AST contenxt",
2096                     function_type->GetName().GetCString(),
2097                     function_type->GetID());
2098       }
2099 
2100       return;
2101     }
2102   } else if (symbol) {
2103     fun_address = symbol->GetAddress();
2104     function_decl = context.AddGenericFunDecl();
2105     is_indirect_function = symbol->IsIndirect();
2106   } else {
2107     if (log)
2108       log->PutCString("  AddOneFunction called with no function and no symbol");
2109     return;
2110   }
2111 
2112   Target *target = m_parser_vars->m_exe_ctx.GetTargetPtr();
2113 
2114   lldb::addr_t load_addr =
2115       fun_address.GetCallableLoadAddress(target, is_indirect_function);
2116 
2117   ClangExpressionVariable *entity(new ClangExpressionVariable(
2118       m_parser_vars->m_exe_ctx.GetBestExecutionContextScope(),
2119       m_parser_vars->m_target_info.byte_order,
2120       m_parser_vars->m_target_info.address_byte_size));
2121   m_found_entities.AddNewlyConstructedVariable(entity);
2122 
2123   std::string decl_name(context.m_decl_name.getAsString());
2124   entity->SetName(ConstString(decl_name.c_str()));
2125   entity->SetCompilerType(function_clang_type);
2126   entity->EnableParserVars(GetParserID());
2127 
2128   ClangExpressionVariable::ParserVars *parser_vars =
2129       entity->GetParserVars(GetParserID());
2130 
2131   if (load_addr != LLDB_INVALID_ADDRESS) {
2132     parser_vars->m_lldb_value.SetValueType(Value::eValueTypeLoadAddress);
2133     parser_vars->m_lldb_value.GetScalar() = load_addr;
2134   } else {
2135     // We have to try finding a file address.
2136 
2137     lldb::addr_t file_addr = fun_address.GetFileAddress();
2138 
2139     parser_vars->m_lldb_value.SetValueType(Value::eValueTypeFileAddress);
2140     parser_vars->m_lldb_value.GetScalar() = file_addr;
2141   }
2142 
2143   parser_vars->m_named_decl = function_decl;
2144   parser_vars->m_llvm_value = NULL;
2145 
2146   if (log) {
2147     std::string function_str =
2148         function_decl ? ASTDumper(function_decl).GetCString() : "nullptr";
2149 
2150     StreamString ss;
2151 
2152     fun_address.Dump(&ss,
2153                      m_parser_vars->m_exe_ctx.GetBestExecutionContextScope(),
2154                      Address::DumpStyleResolvedDescription);
2155 
2156     log->Printf(
2157         "  CEDM::FEVD[%u] Found %s function %s (description %s), returned %s",
2158         current_id, (function ? "specific" : "generic"), decl_name.c_str(),
2159         ss.GetData(), function_str.c_str());
2160   }
2161 }
2162 
2163 void ClangExpressionDeclMap::AddThisType(NameSearchContext &context,
2164                                          const TypeFromUser &ut,
2165                                          unsigned int current_id) {
2166   CompilerType copied_clang_type = GuardedCopyType(ut);
2167 
2168   Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
2169 
2170   if (!copied_clang_type) {
2171     if (log)
2172       log->Printf(
2173           "ClangExpressionDeclMap::AddThisType - Couldn't import the type");
2174 
2175     return;
2176   }
2177 
2178   if (copied_clang_type.IsAggregateType() &&
2179       copied_clang_type.GetCompleteType()) {
2180     CompilerType void_clang_type =
2181         ClangASTContext::GetBasicType(m_ast_context, eBasicTypeVoid);
2182     CompilerType void_ptr_clang_type = void_clang_type.GetPointerType();
2183 
2184     CompilerType method_type = ClangASTContext::CreateFunctionType(
2185         m_ast_context, void_clang_type, &void_ptr_clang_type, 1, false, 0);
2186 
2187     const bool is_virtual = false;
2188     const bool is_static = false;
2189     const bool is_inline = false;
2190     const bool is_explicit = false;
2191     const bool is_attr_used = true;
2192     const bool is_artificial = false;
2193 
2194     CXXMethodDecl *method_decl =
2195         ClangASTContext::GetASTContext(m_ast_context)
2196             ->AddMethodToCXXRecordType(
2197                 copied_clang_type.GetOpaqueQualType(), "$__lldb_expr", NULL,
2198                 method_type, lldb::eAccessPublic, is_virtual, is_static,
2199                 is_inline, is_explicit, is_attr_used, is_artificial);
2200 
2201     if (log) {
2202       ASTDumper method_ast_dumper((clang::Decl *)method_decl);
2203       ASTDumper type_ast_dumper(copied_clang_type);
2204 
2205       log->Printf("  CEDM::AddThisType Added function $__lldb_expr "
2206                   "(description %s) for this type %s",
2207                   method_ast_dumper.GetCString(), type_ast_dumper.GetCString());
2208     }
2209   }
2210 
2211   if (!copied_clang_type.IsValid())
2212     return;
2213 
2214   TypeSourceInfo *type_source_info = m_ast_context->getTrivialTypeSourceInfo(
2215       QualType::getFromOpaquePtr(copied_clang_type.GetOpaqueQualType()));
2216 
2217   if (!type_source_info)
2218     return;
2219 
2220   // Construct a typedef type because if "*this" is a templated type we can't
2221   // just return ClassTemplateSpecializationDecls in response to name queries.
2222   // Using a typedef makes this much more robust.
2223 
2224   TypedefDecl *typedef_decl = TypedefDecl::Create(
2225       *m_ast_context, m_ast_context->getTranslationUnitDecl(), SourceLocation(),
2226       SourceLocation(), context.m_decl_name.getAsIdentifierInfo(),
2227       type_source_info);
2228 
2229   if (!typedef_decl)
2230     return;
2231 
2232   context.AddNamedDecl(typedef_decl);
2233 
2234   return;
2235 }
2236 
2237 void ClangExpressionDeclMap::AddOneType(NameSearchContext &context,
2238                                         const TypeFromUser &ut,
2239                                         unsigned int current_id) {
2240   CompilerType copied_clang_type = GuardedCopyType(ut);
2241 
2242   if (!copied_clang_type) {
2243     Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
2244 
2245     if (log)
2246       log->Printf(
2247           "ClangExpressionDeclMap::AddOneType - Couldn't import the type");
2248 
2249     return;
2250   }
2251 
2252   context.AddTypeDecl(copied_clang_type);
2253 }
2254