blob: 83cbe517643a1ac8416fe75636aa295951eb28cd [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- ClangExpressionDeclMap.cpp -----------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Chris Lattner30fdc8d2010-06-08 16:52:24 +00006//
7//===----------------------------------------------------------------------===//
8
Sean Callanan4dbb2712015-09-25 20:35:58 +00009#include "ClangExpressionDeclMap.h"
10
11#include "ASTDumper.h"
12#include "ClangASTSource.h"
13#include "ClangModulesDeclVendor.h"
14#include "ClangPersistentVariables.h"
15
Chris Lattner30fdc8d2010-06-08 16:52:24 +000016#include "lldb/Core/Address.h"
17#include "lldb/Core/Module.h"
Greg Clayton9191db42013-10-21 18:40:51 +000018#include "lldb/Core/ModuleSpec.h"
Sean Callanane4ec90e2010-12-16 03:17:46 +000019#include "lldb/Core/ValueObjectConstResult.h"
Sean Callanan9b3569b2011-12-10 03:12:34 +000020#include "lldb/Core/ValueObjectVariable.h"
Sean Callanan96d27302013-04-11 00:09:05 +000021#include "lldb/Expression/Materializer.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000022#include "lldb/Symbol/ClangASTContext.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000023#include "lldb/Symbol/CompileUnit.h"
Paul Hermand628cbb2015-09-15 23:44:17 +000024#include "lldb/Symbol/CompilerDecl.h"
Greg Clayton99558cc42015-08-24 23:46:31 +000025#include "lldb/Symbol/CompilerDeclContext.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000026#include "lldb/Symbol/Function.h"
27#include "lldb/Symbol/ObjectFile.h"
28#include "lldb/Symbol/SymbolContext.h"
Siva Chandra9293fc42016-01-07 23:32:34 +000029#include "lldb/Symbol/SymbolFile.h"
Sean Callanan503aa522011-10-12 00:12:34 +000030#include "lldb/Symbol/SymbolVendor.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000031#include "lldb/Symbol/Type.h"
32#include "lldb/Symbol/TypeList.h"
33#include "lldb/Symbol/Variable.h"
34#include "lldb/Symbol/VariableList.h"
Sean Callanana0d56432014-11-11 02:49:44 +000035#include "lldb/Target/CPPLanguageRuntime.h"
Sean Callanan1d180662010-07-20 23:31:16 +000036#include "lldb/Target/ExecutionContext.h"
Sean Callanane0b23b52012-11-15 02:02:04 +000037#include "lldb/Target/ObjCLanguageRuntime.h"
Sean Callananea22d422010-07-16 00:09:46 +000038#include "lldb/Target/Process.h"
Sean Callananf4b9bd32010-10-05 20:18:48 +000039#include "lldb/Target/RegisterContext.h"
Jason Molendab57e4a12013-11-04 09:33:30 +000040#include "lldb/Target/StackFrame.h"
Sean Callanan1d180662010-07-20 23:31:16 +000041#include "lldb/Target/Target.h"
Jim Ingham895c9822010-12-07 01:56:02 +000042#include "lldb/Target/Thread.h"
Zachary Turner01c32432017-02-14 19:06:07 +000043#include "lldb/Utility/Endian.h"
Zachary Turner6f9e6902017-03-03 20:56:28 +000044#include "lldb/Utility/Log.h"
Pavel Labathd821c992018-08-07 11:07:21 +000045#include "lldb/Utility/RegisterValue.h"
Zachary Turner97206d52017-05-12 04:51:55 +000046#include "lldb/Utility/Status.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000047#include "lldb/lldb-private.h"
48#include "clang/AST/ASTConsumer.h"
49#include "clang/AST/ASTContext.h"
Sean Callanan68e44232017-09-28 20:20:25 +000050#include "clang/AST/ASTImporter.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000051#include "clang/AST/Decl.h"
52#include "clang/AST/DeclarationName.h"
Sean Callanan68e44232017-09-28 20:20:25 +000053#include "clang/AST/RecursiveASTVisitor.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054
Siva Chandra0f4873d2015-09-03 23:27:10 +000055#include "Plugins/Language/CPlusPlus/CPlusPlusLanguage.h"
56
Greg Clayton83c5cd92010-11-14 22:13:40 +000057using namespace lldb;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000058using namespace lldb_private;
59using namespace clang;
60
Kate Stoneb9c1b512016-09-06 20:57:50 +000061namespace {
62const char *g_lldb_local_vars_namespace_cstr = "$__lldb_local_vars";
Siva Chandra03ff5c82016-02-05 19:10:04 +000063} // anonymous namespace
64
Kate Stoneb9c1b512016-09-06 20:57:50 +000065ClangExpressionDeclMap::ClangExpressionDeclMap(
66 bool keep_result_in_memory,
67 Materializer::PersistentVariableDelegate *result_delegate,
Krasimir Georgiev7ffc4682019-02-05 11:35:45 +000068 ExecutionContext &exe_ctx, ValueObject *ctx_obj)
Kate Stoneb9c1b512016-09-06 20:57:50 +000069 : ClangASTSource(exe_ctx.GetTargetSP()), m_found_entities(),
70 m_struct_members(), m_keep_result_in_memory(keep_result_in_memory),
Krasimir Georgiev7ffc4682019-02-05 11:35:45 +000071 m_result_delegate(result_delegate), m_ctx_obj(ctx_obj), m_parser_vars(),
72 m_struct_vars() {
Kate Stoneb9c1b512016-09-06 20:57:50 +000073 EnableStructVars();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000074}
75
Kate Stoneb9c1b512016-09-06 20:57:50 +000076ClangExpressionDeclMap::~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
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +000080
Kate Stoneb9c1b512016-09-06 20:57:50 +000081 DidParse();
82 DisableStructVars();
Sean Callanan979f74d2010-12-03 01:38:59 +000083}
Sean Callananbe3a1b12010-10-26 00:31:56 +000084
Kate Stoneb9c1b512016-09-06 20:57:50 +000085bool ClangExpressionDeclMap::WillParse(ExecutionContext &exe_ctx,
86 Materializer *materializer) {
87 ClangASTMetrics::ClearLocalCounters();
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +000088
Kate Stoneb9c1b512016-09-06 20:57:50 +000089 EnableParserVars();
90 m_parser_vars->m_exe_ctx = exe_ctx;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +000091
Kate Stoneb9c1b512016-09-06 20:57:50 +000092 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 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000108
Kate Stoneb9c1b512016-09-06 20:57:50 +0000109 if (target) {
110 m_parser_vars->m_persistent_vars = llvm::cast<ClangPersistentVariables>(
111 target->GetPersistentExpressionStateForLanguage(eLanguageTypeC));
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000112
Kate Stoneb9c1b512016-09-06 20:57:50 +0000113 if (!target->GetScratchClangASTContext())
114 return false;
115 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000116
Kate Stoneb9c1b512016-09-06 20:57:50 +0000117 m_parser_vars->m_target_info = GetTargetInfo();
118 m_parser_vars->m_materializer = materializer;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000119
Kate Stoneb9c1b512016-09-06 20:57:50 +0000120 return true;
Sean Callanan979f74d2010-12-03 01:38:59 +0000121}
122
Kate Stoneb9c1b512016-09-06 20:57:50 +0000123void ClangExpressionDeclMap::InstallCodeGenerator(
124 clang::ASTConsumer *code_gen) {
125 assert(m_parser_vars);
126 m_parser_vars->m_code_gen = code_gen;
Sean Callanan80c97592015-05-01 00:47:29 +0000127}
128
Kate Stoneb9c1b512016-09-06 20:57:50 +0000129void ClangExpressionDeclMap::DidParse() {
130 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
Sean Callanan8106d802013-03-08 20:04:57 +0000131
Kate Stoneb9c1b512016-09-06 20:57:50 +0000132 if (log)
133 ClangASTMetrics::DumpCounters(log);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000134
Jonas Devlieghere70355ac2019-02-12 03:47:39 +0000135 if (m_parser_vars) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000136 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());
Sean Callanan6b1b9532010-10-08 01:58:41 +0000143 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000144
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 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000157}
158
Sean Callanan549c9f72010-07-13 21:41:46 +0000159// Interface for IRForTarget
160
Kate Stoneb9c1b512016-09-06 20:57:50 +0000161ClangExpressionDeclMap::TargetInfo ClangExpressionDeclMap::GetTargetInfo() {
162 assert(m_parser_vars.get());
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000163
Kate Stoneb9c1b512016-09-06 20:57:50 +0000164 TargetInfo ret;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000165
Kate Stoneb9c1b512016-09-06 20:57:50 +0000166 ExecutionContext &exe_ctx = m_parser_vars->m_exe_ctx;
Sean Callanan933693b2012-02-10 01:22:05 +0000167
Kate Stoneb9c1b512016-09-06 20:57:50 +0000168 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();
Sean Callanan933693b2012-02-10 01:22:05 +0000177 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000178 }
Sean Callanan933693b2012-02-10 01:22:05 +0000179
Kate Stoneb9c1b512016-09-06 20:57:50 +0000180 return ret;
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000181}
182
Sean Callanan68e44232017-09-28 20:20:25 +0000183namespace {
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.
197class Completer : public clang::RecursiveASTVisitor<Completer> {
198private:
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;
Adrian Prantl05097242018-04-30 16:49:04 +0000216 // We are assuming the Decl was parsed in this very expression, so it
217 // should not have external storage.
Sean Callanan68e44232017-09-28 20:20:25 +0000218 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
237public:
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
251static 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
265static 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);
Gabor Marton5ac6d492019-05-15 10:29:48 +0000275 llvm::Expected<clang::QualType> ret_or_error = exporter.Import(root);
Sean Callanan68e44232017-09-28 20:20:25 +0000276 merger.RemoveSources(importer_source);
Gabor Marton5ac6d492019-05-15 10:29:48 +0000277 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 }
Sean Callanan68e44232017-09-28 20:20:25 +0000284}
285
286TypeFromUser 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 {
Pavel Labath9344e452017-10-17 21:52:29 +0000312 lldbassert(0 && "No mechanism for deporting a type!");
Sean Callanan68e44232017-09-28 20:20:25 +0000313 return TypeFromUser();
314 }
315}
316
Kate Stoneb9c1b512016-09-06 20:57:50 +0000317bool ClangExpressionDeclMap::AddPersistentVariable(const NamedDecl *decl,
Adrian Prantl0e4c4822019-03-06 21:22:25 +0000318 ConstString name,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000319 TypeFromParser parser_type,
320 bool is_result,
321 bool is_lvalue) {
322 assert(m_parser_vars.get());
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000323
Kate Stoneb9c1b512016-09-06 20:57:50 +0000324 ClangASTContext *ast =
325 llvm::dyn_cast_or_null<ClangASTContext>(parser_type.GetTypeSystem());
326 if (ast == nullptr)
327 return false;
Greg Claytonf73034f2015-09-08 18:15:05 +0000328
Kate Stoneb9c1b512016-09-06 20:57:50 +0000329 if (m_parser_vars->m_materializer && is_result) {
Zachary Turner97206d52017-05-12 04:51:55 +0000330 Status err;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000331
Sean Callanan933693b2012-02-10 01:22:05 +0000332 ExecutionContext &exe_ctx = m_parser_vars->m_exe_ctx;
333 Target *target = exe_ctx.GetTargetPtr();
Kate Stoneb9c1b512016-09-06 20:57:50 +0000334 if (target == nullptr)
335 return false;
Greg Claytonc14ee322011-09-22 04:58:26 +0000336
Sean Callanan68e44232017-09-28 20:20:25 +0000337 TypeFromUser user_type =
338 DeportType(*target->GetScratchClangASTContext(), *ast, parser_type);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000339
Kate Stoneb9c1b512016-09-06 20:57:50 +0000340 uint32_t offset = m_parser_vars->m_materializer->AddResultVariable(
341 user_type, is_lvalue, m_keep_result_in_memory, m_result_delegate, err);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000342
Kate Stoneb9c1b512016-09-06 20:57:50 +0000343 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);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000347
Kate Stoneb9c1b512016-09-06 20:57:50 +0000348 m_found_entities.AddNewlyConstructedVariable(var);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000349
Sean Callananbc8ac342015-09-04 20:49:51 +0000350 var->EnableParserVars(GetParserID());
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000351
Kate Stoneb9c1b512016-09-06 20:57:50 +0000352 ClangExpressionVariable::ParserVars *parser_vars =
353 var->GetParserVars(GetParserID());
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000354
Sean Callanan3c495c12013-01-15 23:29:36 +0000355 parser_vars->m_named_decl = decl;
356 parser_vars->m_parser_type = parser_type;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000357
Kate Stoneb9c1b512016-09-06 20:57:50 +0000358 var->EnableJITVars(GetParserID());
359
360 ClangExpressionVariable::JITVars *jit_vars = var->GetJITVars(GetParserID());
361
362 jit_vars->m_offset = offset;
363
Sean Callanan64dfc9a2010-08-23 23:09:38 +0000364 return true;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000365 }
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
Sean Callanan68e44232017-09-28 20:20:25 +0000375 TypeFromUser user_type = DeportType(*context, *ast, parser_type);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000376
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;
Sean Callanan2235f322010-08-11 03:57:18 +0000430}
431
Kate Stoneb9c1b512016-09-06 20:57:50 +0000432bool ClangExpressionDeclMap::AddValueToStruct(const NamedDecl *decl,
Adrian Prantl0e4c4822019-03-06 21:22:25 +0000433 ConstString name,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000434 llvm::Value *value, size_t size,
435 lldb::offset_t alignment) {
436 assert(m_struct_vars.get());
437 assert(m_parser_vars.get());
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000438
Kate Stoneb9c1b512016-09-06 20:57:50 +0000439 bool is_persistent_variable = false;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000440
Kate Stoneb9c1b512016-09-06 20:57:50 +0000441 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000442
Kate Stoneb9c1b512016-09-06 20:57:50 +0000443 m_struct_vars->m_struct_laid_out = false;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000444
Kate Stoneb9c1b512016-09-06 20:57:50 +0000445 if (ClangExpressionVariable::FindVariableInList(m_struct_members, decl,
446 GetParserID()))
447 return true;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000448
Kate Stoneb9c1b512016-09-06 20:57:50 +0000449 ClangExpressionVariable *var(ClangExpressionVariable::FindVariableInList(
450 m_found_entities, decl, GetParserID()));
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000451
Kate Stoneb9c1b512016-09-06 20:57:50 +0000452 if (!var) {
453 var = ClangExpressionVariable::FindVariableInList(
454 *m_parser_vars->m_persistent_vars, decl, GetParserID());
455 is_persistent_variable = true;
456 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000457
Kate Stoneb9c1b512016-09-06 20:57:50 +0000458 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
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000477
Sean Callanan823bb4c2010-08-30 22:17:16 +0000478 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000479 log->Printf("Already placed at 0x%llx",
480 (unsigned long long)jit_vars->m_offset);
481 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000482
Kate Stoneb9c1b512016-09-06 20:57:50 +0000483 llvm::cast<ClangExpressionVariable>(var)->EnableJITVars(GetParserID());
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000484
Kate Stoneb9c1b512016-09-06 20:57:50 +0000485 ClangExpressionVariable::JITVars *jit_vars =
486 llvm::cast<ClangExpressionVariable>(var)->GetJITVars(GetParserID());
Sean Callanan3c495c12013-01-15 23:29:36 +0000487
Kate Stoneb9c1b512016-09-06 20:57:50 +0000488 jit_vars->m_alignment = alignment;
489 jit_vars->m_size = size;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000490
Kate Stoneb9c1b512016-09-06 20:57:50 +0000491 m_struct_members.AddVariable(var->shared_from_this());
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000492
Kate Stoneb9c1b512016-09-06 20:57:50 +0000493 if (m_parser_vars->m_materializer) {
494 uint32_t offset = 0;
495
Zachary Turner97206d52017-05-12 04:51:55 +0000496 Status err;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000497
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);
Sean Callanan1582ee62013-04-18 22:06:33 +0000510 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000511
Kate Stoneb9c1b512016-09-06 20:57:50 +0000512 if (!err.Success())
513 return false;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000514
Kate Stoneb9c1b512016-09-06 20:57:50 +0000515 if (log)
516 log->Printf("Placed at 0x%llx", (unsigned long long)offset);
Sean Callanan3c495c12013-01-15 23:29:36 +0000517
Kate Stoneb9c1b512016-09-06 20:57:50 +0000518 jit_vars->m_offset =
519 offset; // TODO DoStructLayout() should not change this.
520 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000521
Kate Stoneb9c1b512016-09-06 20:57:50 +0000522 return true;
523}
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000524
Kate Stoneb9c1b512016-09-06 20:57:50 +0000525bool ClangExpressionDeclMap::DoStructLayout() {
526 assert(m_struct_vars.get());
Sean Callanan3dd6a422013-04-11 21:16:36 +0000527
Kate Stoneb9c1b512016-09-06 20:57:50 +0000528 if (m_struct_vars->m_struct_laid_out)
529 return true;
Sean Callanandf667652013-04-11 02:05:11 +0000530
Kate Stoneb9c1b512016-09-06 20:57:50 +0000531 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
542bool 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
556bool 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
592bool 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
Adrian Prantl05097242018-04-30 16:49:04 +0000600 // We know m_parser_vars is valid since we searched for the variable by its
601 // NamedDecl
Kate Stoneb9c1b512016-09-06 20:57:50 +0000602
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
611addr_t ClangExpressionDeclMap::GetSymbolAddress(Target &target,
612 Process *process,
Adrian Prantl0e4c4822019-03-06 21:22:25 +0000613 ConstString name,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000614 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 }
Sean Callanandf667652013-04-11 02:05:11 +0000663 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000664 symbol_load_addr = GetSymbolAddress(
665 target, process, sym_ctx.symbol->GetReExportedSymbolName(),
666 symbol_type, reexport_module_sp.get());
667 }
668 } break;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000669
Kate Stoneb9c1b512016-09-06 20:57:50 +0000670 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;
Sean Callanandf667652013-04-11 02:05:11 +0000697 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000698 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000699
Kate Stoneb9c1b512016-09-06 20:57:50 +0000700 if (symbol_load_addr == LLDB_INVALID_ADDRESS && process) {
701 ObjCLanguageRuntime *runtime = process->GetObjCLanguageRuntime();
Sean Callanan549c9f72010-07-13 21:41:46 +0000702
Kate Stoneb9c1b512016-09-06 20:57:50 +0000703 if (runtime) {
704 symbol_load_addr = runtime->LookupRuntimeSymbol(name);
Greg Clayton084db102011-06-23 04:25:29 +0000705 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000706 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000707
Kate Stoneb9c1b512016-09-06 20:57:50 +0000708 return symbol_load_addr;
Sean Callananc3a16002011-01-17 23:42:46 +0000709}
710
Adrian Prantl0e4c4822019-03-06 21:22:25 +0000711addr_t ClangExpressionDeclMap::GetSymbolAddress(ConstString name,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000712 lldb::SymbolType symbol_type) {
713 assert(m_parser_vars.get());
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000714
Kate Stoneb9c1b512016-09-06 20:57:50 +0000715 if (!m_parser_vars->m_exe_ctx.GetTargetPtr())
716 return false;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000717
Kate Stoneb9c1b512016-09-06 20:57:50 +0000718 return GetSymbolAddress(m_parser_vars->m_exe_ctx.GetTargetRef(),
719 m_parser_vars->m_exe_ctx.GetProcessPtr(), name,
720 symbol_type);
Sean Callanand9ca42a2011-05-08 02:21:26 +0000721}
722
Kate Stoneb9c1b512016-09-06 20:57:50 +0000723lldb::VariableSP ClangExpressionDeclMap::FindGlobalVariable(
Adrian Prantl0e4c4822019-03-06 21:22:25 +0000724 Target &target, ModuleSP &module, ConstString name,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000725 CompilerDeclContext *namespace_decl, TypeFromUser *type) {
726 VariableList vars;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000727
Kate Stoneb9c1b512016-09-06 20:57:50 +0000728 if (module && namespace_decl)
Pavel Labath34cda142018-05-31 09:46:26 +0000729 module->FindGlobalVariables(name, namespace_decl, -1, vars);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000730 else
Pavel Labath34cda142018-05-31 09:46:26 +0000731 target.GetImages().FindGlobalVariables(name, -1, vars);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000732
Kate Stoneb9c1b512016-09-06 20:57:50 +0000733 if (vars.GetSize()) {
734 if (type) {
735 for (size_t i = 0; i < vars.GetSize(); ++i) {
736 VariableSP var_sp = vars.GetVariableAtIndex(i);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000737
Kate Stoneb9c1b512016-09-06 20:57:50 +0000738 if (ClangASTContext::AreTypesSame(
739 *type, var_sp->GetType()->GetFullCompilerType()))
740 return var_sp;
741 }
742 } else {
743 return vars.GetVariableAtIndex(0);
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000744 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000745 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +0000746
Kate Stoneb9c1b512016-09-06 20:57:50 +0000747 return VariableSP();
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000748}
749
Kate Stoneb9c1b512016-09-06 20:57:50 +0000750ClangASTContext *ClangExpressionDeclMap::GetClangASTContext() {
751 StackFrame *frame = m_parser_vars->m_exe_ctx.GetFramePtr();
752 if (frame == nullptr)
753 return nullptr;
Siva Chandra03ff5c82016-02-05 19:10:04 +0000754
Kate Stoneb9c1b512016-09-06 20:57:50 +0000755 SymbolContext sym_ctx = frame->GetSymbolContext(lldb::eSymbolContextFunction |
756 lldb::eSymbolContextBlock);
757 if (sym_ctx.block == nullptr)
758 return nullptr;
Siva Chandra03ff5c82016-02-05 19:10:04 +0000759
Kate Stoneb9c1b512016-09-06 20:57:50 +0000760 CompilerDeclContext frame_decl_context = sym_ctx.block->GetDeclContext();
761 if (!frame_decl_context)
762 return nullptr;
Siva Chandra03ff5c82016-02-05 19:10:04 +0000763
Kate Stoneb9c1b512016-09-06 20:57:50 +0000764 return llvm::dyn_cast_or_null<ClangASTContext>(
765 frame_decl_context.GetTypeSystem());
Siva Chandra03ff5c82016-02-05 19:10:04 +0000766}
767
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000768// Interface for ClangASTSource
Sean Callanan3bfdaa22011-09-15 02:13:07 +0000769
Kate Stoneb9c1b512016-09-06 20:57:50 +0000770void ClangExpressionDeclMap::FindExternalVisibleDecls(
771 NameSearchContext &context) {
772 assert(m_ast_context);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000773
Kate Stoneb9c1b512016-09-06 20:57:50 +0000774 ClangASTMetrics::RegisterVisibleQuery();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000775
Kate Stoneb9c1b512016-09-06 20:57:50 +0000776 const ConstString name(context.m_decl_name.getAsString().c_str());
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000777
Kate Stoneb9c1b512016-09-06 20:57:50 +0000778 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000779
Kate Stoneb9c1b512016-09-06 20:57:50 +0000780 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;
Sean Callanan6abfabf2010-11-19 20:20:02 +0000817 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000818
Kate Stoneb9c1b512016-09-06 20:57:50 +0000819 ClangASTImporter::NamespaceMapSP namespace_map =
Sean Callanan68e44232017-09-28 20:20:25 +0000820 m_ast_importer_sp
821 ? m_ast_importer_sp->GetNamespaceMap(namespace_context)
822 : ClangASTImporter::NamespaceMapSP();
823
824 if (!namespace_map)
825 return;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000826
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());
Sean Callanan68e44232017-09-28 20:20:25 +0000831
Kate Stoneb9c1b512016-09-06 20:57:50 +0000832 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;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000844
Sean Callanan503aa522011-10-12 00:12:34 +0000845 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000846 log->Printf(" CEDM::FEVD[%u] Searching the root namespace", current_id);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000847
Kate Stoneb9c1b512016-09-06 20:57:50 +0000848 FindExternalVisibleDecls(context, lldb::ModuleSP(), namespace_decl,
849 current_id);
850 }
Sean Callananc02a1c02017-04-24 23:14:04 +0000851
852 ClangASTSource::FindExternalVisibleDecls(context);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000853}
854
855void 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());
Sean Callanan1b3c43b2017-09-26 17:25:34 +0000873 if (IgnoreName(name, false))
Kate Stoneb9c1b512016-09-06 20:57:50 +0000874 return;
875
Adrian Prantl05097242018-04-30 16:49:04 +0000876 // Only look for functions by name out in our symbols if the function doesn't
877 // start with our phony prefix of '$'
Kate Stoneb9c1b512016-09-06 20:57:50 +0000878 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
Sean Callanan68e44232017-09-28 20:20:25 +0000909 Decl *parser_persistent_decl = CopyDecl(persistent_decl);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000910
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
Sean Callanan1b3c43b2017-09-26 17:25:34 +0000933 if (name.GetCString()[0] == '$' && !namespace_decl) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000934 static ConstString g_lldb_class_name("$__lldb_class");
935
936 if (name == g_lldb_class_name) {
Aleksandr Urakov40624a02019-02-05 09:14:36 +0000937 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
Kate Stoneb9c1b512016-09-06 20:57:50 +0000952 // 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());
Siva Chandra03ff5c82016-02-05 19:10:04 +0000984 }
985
Kate Stoneb9c1b512016-09-06 20:57:50 +0000986 AddThisType(context, class_user_type, current_id);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000987
Kate Stoneb9c1b512016-09-06 20:57:50 +0000988 if (method_decl->isInstance()) {
989 // self is a pointer to the object
Saleem Abdulrasool324a1032014-04-04 04:06:10 +0000990
Kate Stoneb9c1b512016-09-06 20:57:50 +0000991 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 {
Adrian Prantl05097242018-04-30 16:49:04 +00001001 // 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.
Kate Stoneb9c1b512016-09-06 20:57:50 +00001006 // 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)
Sean Callananb2269162011-10-21 22:18:07 +00001019 return;
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001020
Kate Stoneb9c1b512016-09-06 20:57:50 +00001021 TypeFromUser pointee_type =
1022 this_type->GetForwardCompilerType().GetPointeeType();
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001023
Kate Stoneb9c1b512016-09-06 20:57:50 +00001024 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 }
Sean Callanan503aa522011-10-12 00:12:34 +00001036 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001037 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001038
Kate Stoneb9c1b512016-09-06 20:57:50 +00001039 return;
1040 }
1041
1042 static ConstString g_lldb_objc_class_name("$__lldb_objc_class");
1043 if (name == g_lldb_objc_class_name) {
Aleksandr Urakov40624a02019-02-05 09:14:36 +00001044 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
Kate Stoneb9c1b512016-09-06 20:57:50 +00001059 // 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 {
Adrian Prantl05097242018-04-30 16:49:04 +00001130 // 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.
Kate Stoneb9c1b512016-09-06 20:57:50 +00001135
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(
Sean Callanan1b3c43b2017-09-26 17:25:34 +00001191 m_ast_context, name.GetCString(), nullptr);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001192 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
Sean Callanan1b3c43b2017-09-26 17:25:34 +00001206 if (name.GetStringRef().startswith("$__lldb"))
Kate Stoneb9c1b512016-09-06 20:57:50 +00001207 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) {
Sean Callanan503aa522011-10-12 00:12:34 +00001225 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001226 log->Printf(" CEDM::FEVD[%u] Found register %s", current_id,
1227 reg_info->name);
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001228
Kate Stoneb9c1b512016-09-06 20:57:50 +00001229 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
Adrian Prantl05097242018-04-30 16:49:04 +00001252 // decls in the search if we are looking for decls in the artificial
1253 // namespace $__lldb_local_vars.
Kate Stoneb9c1b512016-09-06 20:57:50 +00001254 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
Sean Callananc02a1c02017-04-24 23:14:04 +00001268 if (var && !variable_found) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00001269 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 }
Sean Callanan503aa522011-10-12 00:12:34 +00001288 }
Saleem Abdulrasool324a1032014-04-04 04:06:10 +00001289
Kate Stoneb9c1b512016-09-06 20:57:50 +00001290 std::vector<clang::NamedDecl *> decls_from_modules;
Sean Callanan503aa522011-10-12 00:12:34 +00001291
Kate Stoneb9c1b512016-09-06 20:57:50 +00001292 if (target) {
1293 if (ClangModulesDeclVendor *decl_vendor =
1294 target->GetClangModulesDeclVendor()) {
1295 decl_vendor->FindDecls(name, false, UINT32_MAX, decls_from_modules);
1296 }
1297 }
Sean Callananb3a36df2016-03-19 00:51:43 +00001298
Sean Callananc02a1c02017-04-24 23:14:04 +00001299 const bool include_inlines = false;
1300 const bool append = false;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001301
Sean Callananc02a1c02017-04-24 23:14:04 +00001302 if (namespace_decl && module_sp) {
1303 const bool include_symbols = false;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001304
Sean Callananc02a1c02017-04-24 23:14:04 +00001305 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;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001310
Sean Callananc02a1c02017-04-24 23:14:04 +00001311 // TODO Fix FindFunctions so that it doesn't return
1312 // instance methods for eFunctionNameTypeBase.
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001313
Sean Callananc02a1c02017-04-24 23:14:04 +00001314 target->GetImages().FindFunctions(name, eFunctionNameTypeFull,
1315 include_symbols, include_inlines,
1316 append, sc_list);
1317 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001318
Adrian Prantl05097242018-04-30 16:49:04 +00001319 // 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.
Sean Callananc02a1c02017-04-24 23:14:04 +00001322 //
1323 // AddOneFunction will not add a function whose type has already been
Adrian Prantl05097242018-04-30 16:49:04 +00001324 // 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.
Sean Callananc02a1c02017-04-24 23:14:04 +00001328 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();
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001338
Sean Callananc02a1c02017-04-24 23:14:04 +00001339 // 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());
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001345
Sean Callananc02a1c02017-04-24 23:14:04 +00001346 // 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 };
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001354
Adrian Prantl05097242018-04-30 16:49:04 +00001355 // 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.
Sean Callananc02a1c02017-04-24 23:14:04 +00001359 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;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001365 SymbolContext sym_ctx;
1366 sc_list.GetContextAtIndex(index, sym_ctx);
1367
Adrian Prantl05097242018-04-30 16:49:04 +00001368 // We don't know enough about symbols to compare them, but we should
1369 // keep them in the list.
Sean Callananc02a1c02017-04-24 23:14:04 +00001370 Function *function = sym_ctx.function;
1371 if (!function) {
1372 sc_sym_list.Append(sym_ctx);
1373 continue;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001374 }
Sean Callananc02a1c02017-04-24 23:14:04 +00001375 // Filter out functions without declaration contexts, as well as
Adrian Prantl05097242018-04-30 16:49:04 +00001376 // class/instance methods, since they'll be skipped in the code that
1377 // follows anyway.
Sean Callananc02a1c02017-04-24 23:14:04 +00001378 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) {
Adrian Prantl05097242018-04-30 16:49:04 +00001396 // 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.
Sean Callananc02a1c02017-04-24 23:14:04 +00001400 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);
Kate Stoneb9c1b512016-09-06 20:57:50 +00001406 }
1407
Sean Callananc02a1c02017-04-24 23:14:04 +00001408 // 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;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001421 }
Sean Callananc02a1c02017-04-24 23:14:04 +00001422 matches.insert(std::make_pair(t, &fdi));
Kate Stoneb9c1b512016-09-06 20:57:50 +00001423 }
1424
Sean Callananc02a1c02017-04-24 23:14:04 +00001425 // 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 =
Sean Callanan68e44232017-09-28 20:20:25 +00001476 llvm::cast_or_null<FunctionDecl>(CopyDecl(decl));
Sean Callananc02a1c02017-04-24 23:14:04 +00001477 if (copied_decl) {
1478 context.AddNamedDecl(copied_decl);
1479 context.m_found.function_with_type_info = true;
1480 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001481 }
1482 }
1483 }
1484
1485 if (!context.m_found.function_with_type_info) {
Sean Callananc02a1c02017-04-24 23:14:04 +00001486 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;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001492 }
1493 }
Sean Callananb3a36df2016-03-19 00:51:43 +00001494 }
Sean Callananc02a1c02017-04-24 23:14:04 +00001495
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
Sean Callanan68e44232017-09-28 20:20:25 +00001518 clang::Decl *copied_decl = CopyDecl(decl_from_modules);
Sean Callananc02a1c02017-04-24 23:14:04 +00001519 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
Sean Callanan68e44232017-09-28 20:20:25 +00001545 clang::Decl *copied_decl = CopyDecl(decl_from_modules);
Sean Callananc02a1c02017-04-24 23:14:04 +00001546 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) {
Adrian Prantl05097242018-04-30 16:49:04 +00001568 // 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.
Sean Callanan9c99faa2017-05-16 23:46:13 +00001570 Status error;
Stephane Sezer30fa7e22017-10-24 22:56:05 +00001571
Sean Callanan9c99faa2017-05-16 23:46:13 +00001572 const Symbol *data_symbol =
1573 m_parser_vars->m_sym_ctx.FindBestGlobalDataSymbol(name, error);
Stephane Sezer30fa7e22017-10-24 22:56:05 +00001574
Sean Callanan9c99faa2017-05-16 23:46:13 +00001575 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 }
Stephane Sezer30fa7e22017-10-24 22:56:05 +00001581
Sean Callananc02a1c02017-04-24 23:14:04 +00001582 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 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001593 }
Sean Callanan6b4067c2010-07-17 00:43:37 +00001594}
Greg Claytona2721472011-06-25 00:44:06 +00001595
Kate Stoneb9c1b512016-09-06 20:57:50 +00001596bool 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));
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001601
Kate Stoneb9c1b512016-09-06 20:57:50 +00001602 Type *var_type = var->GetType();
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001603
Kate Stoneb9c1b512016-09-06 20:57:50 +00001604 if (!var_type) {
Sean Callananea22d422010-07-16 00:09:46 +00001605 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001606 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 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001635
1636 DWARFExpression &var_location_expr = var->LocationExpression();
1637
1638 Target *target = m_parser_vars->m_exe_ctx.GetTargetPtr();
Zachary Turner97206d52017-05-12 04:51:55 +00001639 Status err;
Kate Stoneb9c1b512016-09-06 20:57:50 +00001640
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;
Greg Clayton7b462cc2010-10-15 22:48:33 +00001652 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001653 }
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;
Sean Callanan468574b2010-06-22 23:46:24 +00001693}
1694
Kate Stoneb9c1b512016-09-06 20:57:50 +00001695void ClangExpressionDeclMap::AddOneVariable(NameSearchContext &context,
1696 VariableSP var,
1697 ValueObjectSP valobj,
1698 unsigned int current_id) {
1699 assert(m_parser_vars.get());
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001700
Kate Stoneb9c1b512016-09-06 20:57:50 +00001701 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001702
Kate Stoneb9c1b512016-09-06 20:57:50 +00001703 TypeFromUser ut;
1704 TypeFromParser pt;
1705 Value var_location;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001706
Kate Stoneb9c1b512016-09-06 20:57:50 +00001707 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
1759void 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
1796void 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
1855bool ClangExpressionDeclMap::ResolveUnknownTypes() {
1856 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
1857 Target *target = m_parser_vars->m_exe_ctx.GetTargetPtr();
1858
Sean Callanan68e44232017-09-28 20:20:25 +00001859 ClangASTContextForExpressions *scratch_ast_context =
1860 static_cast<ClangASTContextForExpressions*>(
1861 target->GetScratchClangASTContext());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001862
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) {
Sean Callanane0a64f72011-12-01 21:04:37 +00001876 if (log)
Kate Stoneb9c1b512016-09-06 20:57:50 +00001877 log->Printf("Entity of unknown type does not have a VarDecl");
1878 return false;
1879 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001880
Kate Stoneb9c1b512016-09-06 20:57:50 +00001881 if (log) {
1882 ASTDumper ast_dumper(const_cast<VarDecl *>(var_decl));
1883 log->Printf("Variable of unknown type now has Decl %s",
Greg Clayton64bc6ca2011-10-20 00:47:21 +00001884 ast_dumper.GetCString());
Kate Stoneb9c1b512016-09-06 20:57:50 +00001885 }
1886
1887 QualType var_type = var_decl->getType();
1888 TypeFromParser parser_type(
1889 var_type.getAsOpaquePtr(),
1890 ClangASTContext::GetASTContext(&var_decl->getASTContext()));
1891
Sean Callanan68e44232017-09-28 20:20:25 +00001892 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 {
Pavel Labath9344e452017-10-17 21:52:29 +00001903 lldbassert(0 && "No mechanism to copy a resolved unknown type!");
Sean Callanan68e44232017-09-28 20:20:25 +00001904 return false;
1905 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001906
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);
Greg Clayton7b462cc2010-10-15 22:48:33 +00001925 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00001926 }
1927
1928 return true;
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001929}
Sean Callanan5666b672010-08-04 01:02:13 +00001930
Kate Stoneb9c1b512016-09-06 20:57:50 +00001931void ClangExpressionDeclMap::AddOneRegister(NameSearchContext &context,
1932 const RegisterInfo *reg_info,
1933 unsigned int current_id) {
1934 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001935
Kate Stoneb9c1b512016-09-06 20:57:50 +00001936 CompilerType clang_type =
1937 ClangASTContext::GetBuiltinTypeForEncodingAndBitSize(
1938 m_ast_context, reg_info->encoding, reg_info->byte_size * 8);
Sean Callanan7736a202016-04-29 18:09:03 +00001939
Kate Stoneb9c1b512016-09-06 20:57:50 +00001940 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 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001946
Kate Stoneb9c1b512016-09-06 20:57:50 +00001947 TypeFromParser parser_clang_type(clang_type);
Sean Callananfa4fab72013-02-01 06:55:48 +00001948
Kate Stoneb9c1b512016-09-06 20:57:50 +00001949 NamedDecl *var_decl = context.AddVarDecl(parser_clang_type);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001950
Kate Stoneb9c1b512016-09-06 20:57:50 +00001951 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);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001956
Kate Stoneb9c1b512016-09-06 20:57:50 +00001957 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;
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00001968
Kate Stoneb9c1b512016-09-06 20:57:50 +00001969 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
1977void 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
Luke Drummondf5bb1d62016-12-19 17:22:44 +00001993 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));
Kate Stoneb9c1b512016-09-06 20:57:50 +00001999
2000 if (!extern_c) {
2001 TypeSystem *type_system = function->GetDeclContext().GetTypeSystem();
Davide Italianofe34df52017-09-30 21:16:56 +00002002 if (llvm::isa<ClangASTContext>(type_system)) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00002003 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);
Sean Callanan09e91ac2017-05-11 22:08:05 +00002008 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>(
Sean Callanan68e44232017-09-28 20:20:25 +00002014 CopyDecl(function_template));
Sean Callanan09e91ac2017-05-11 22:08:05 +00002015 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) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00002033 if (clang::FunctionDecl *copied_function_decl =
2034 llvm::dyn_cast_or_null<clang::FunctionDecl>(
Sean Callanan68e44232017-09-28 20:20:25 +00002035 CopyDecl(src_function_decl))) {
Kate Stoneb9c1b512016-09-06 20:57:50 +00002036 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 }
Sean Callanan7736a202016-04-29 18:09:03 +00002058 }
Kate Stoneb9c1b512016-09-06 20:57:50 +00002059 }
Sean Callananfc55f5d2010-09-21 00:44:12 +00002060 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00002061
Kate Stoneb9c1b512016-09-06 20:57:50 +00002062 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
Sean Callanan3b436d22015-10-23 21:45:02 +00002089 return;
Kate Stoneb9c1b512016-09-06 20:57:50 +00002090 }
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) {
Pavel Labath03a77e92018-03-21 11:10:57 +00002147 std::string function_str =
2148 function_decl ? ASTDumper(function_decl).GetCString() : "nullptr";
Kate Stoneb9c1b512016-09-06 20:57:50 +00002149
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(),
Pavel Labath03a77e92018-03-21 11:10:57 +00002159 ss.GetData(), function_str.c_str());
Kate Stoneb9c1b512016-09-06 20:57:50 +00002160 }
2161}
2162
2163void ClangExpressionDeclMap::AddThisType(NameSearchContext &context,
Aleksandr Urakov40624a02019-02-05 09:14:36 +00002164 const TypeFromUser &ut,
Kate Stoneb9c1b512016-09-06 20:57:50 +00002165 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");
Sean Callanan3b436d22015-10-23 21:45:02 +00002174
2175 return;
Kate Stoneb9c1b512016-09-06 20:57:50 +00002176 }
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(
Davide Italiano675767a2018-03-27 19:40:50 +00002197 copied_clang_type.GetOpaqueQualType(), "$__lldb_expr", NULL,
Kate Stoneb9c1b512016-09-06 20:57:50 +00002198 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;
Sean Callananfa4fab72013-02-01 06:55:48 +00002235}
2236
Kate Stoneb9c1b512016-09-06 20:57:50 +00002237void ClangExpressionDeclMap::AddOneType(NameSearchContext &context,
Aleksandr Urakov40624a02019-02-05 09:14:36 +00002238 const TypeFromUser &ut,
Kate Stoneb9c1b512016-09-06 20:57:50 +00002239 unsigned int current_id) {
2240 CompilerType copied_clang_type = GuardedCopyType(ut);
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00002241
Kate Stoneb9c1b512016-09-06 20:57:50 +00002242 if (!copied_clang_type) {
2243 Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
Sean Callananfa4fab72013-02-01 06:55:48 +00002244
Kate Stoneb9c1b512016-09-06 20:57:50 +00002245 if (log)
2246 log->Printf(
2247 "ClangExpressionDeclMap::AddOneType - Couldn't import the type");
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00002248
Kate Stoneb9c1b512016-09-06 20:57:50 +00002249 return;
2250 }
Sylvestre Ledruceab3ac2014-07-06 17:54:58 +00002251
Kate Stoneb9c1b512016-09-06 20:57:50 +00002252 context.AddTypeDecl(copied_clang_type);
Sean Callanan5666b672010-08-04 01:02:13 +00002253}