003 File Manager
Current Path:
/usr/src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang
usr
/
src
/
contrib
/
llvm-project
/
lldb
/
source
/
Plugins
/
ExpressionParser
/
Clang
/
📁
..
📄
ASTResultSynthesizer.cpp
(14.35 KB)
📄
ASTResultSynthesizer.h
(6.39 KB)
📄
ASTStructExtractor.cpp
(5.17 KB)
📄
ASTStructExtractor.h
(5.19 KB)
📄
ASTUtils.cpp
(906 B)
📄
ASTUtils.h
(18.41 KB)
📄
ClangASTImporter.cpp
(41.82 KB)
📄
ClangASTImporter.h
(11.08 KB)
📄
ClangASTMetadata.cpp
(986 B)
📄
ClangASTMetadata.h
(2.94 KB)
📄
ClangASTSource.cpp
(55.96 KB)
📄
ClangASTSource.h
(13.72 KB)
📄
ClangDeclVendor.cpp
(1.16 KB)
📄
ClangDeclVendor.h
(1.27 KB)
📄
ClangDiagnostic.h
(1.54 KB)
📄
ClangExpressionDeclMap.cpp
(64.5 KB)
📄
ClangExpressionDeclMap.h
(23.21 KB)
📄
ClangExpressionHelper.h
(1.9 KB)
📄
ClangExpressionParser.cpp
(55.41 KB)
📄
ClangExpressionParser.h
(6.72 KB)
📄
ClangExpressionSourceCode.cpp
(15.9 KB)
📄
ClangExpressionSourceCode.h
(3.72 KB)
📄
ClangExpressionVariable.cpp
(2.19 KB)
📄
ClangExpressionVariable.h
(6.92 KB)
📄
ClangExternalASTSourceCallbacks.cpp
(3.14 KB)
📄
ClangExternalASTSourceCallbacks.h
(2.44 KB)
📄
ClangFunctionCaller.cpp
(7.66 KB)
📄
ClangFunctionCaller.h
(5.76 KB)
📄
ClangHost.cpp
(6.28 KB)
📄
ClangHost.h
(742 B)
📄
ClangModulesDeclVendor.cpp
(25.16 KB)
📄
ClangModulesDeclVendor.h
(4.31 KB)
📄
ClangPersistentVariables.cpp
(4.14 KB)
📄
ClangPersistentVariables.h
(3.85 KB)
📄
ClangUserExpression.cpp
(32.03 KB)
📄
ClangUserExpression.h
(9.76 KB)
📄
ClangUtil.cpp
(2.4 KB)
📄
ClangUtil.h
(1.69 KB)
📄
ClangUtilityFunction.cpp
(5.1 KB)
📄
ClangUtilityFunction.h
(3.73 KB)
📄
CppModuleConfiguration.cpp
(2.94 KB)
📄
CppModuleConfiguration.h
(3.06 KB)
📄
CxxModuleHandler.cpp
(9.8 KB)
📄
CxxModuleHandler.h
(2.76 KB)
📄
IRDynamicChecks.cpp
(17.29 KB)
📄
IRDynamicChecks.h
(4 KB)
📄
IRForTarget.cpp
(63.93 KB)
📄
IRForTarget.h
(18.24 KB)
📄
ModuleDependencyCollector.h
(1.37 KB)
📄
NameSearchContext.cpp
(5.92 KB)
📄
NameSearchContext.h
(4.57 KB)
Editing: NameSearchContext.h
//===-- NameSearchContext.h -------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_NAME_SEARCH_CONTEXT_H #define LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_NAME_SEARCH_CONTEXT_H #include "Plugins/ExpressionParser/Clang/ClangASTImporter.h" #include "Plugins/TypeSystem/Clang/TypeSystemClang.h" #include "lldb/Symbol/CompilerType.h" #include "llvm/ADT/SmallSet.h" namespace lldb_private { /// \class NameSearchContext ClangASTSource.h /// "lldb/Expression/ClangASTSource.h" Container for all objects relevant to a /// single name lookup /// /// LLDB needs to create Decls for entities it finds. This class communicates /// what name is being searched for and provides helper functions to construct /// Decls given appropriate type information. struct NameSearchContext { /// The type system of the AST from which the lookup originated. TypeSystemClang &m_clang_ts; /// The list of declarations already constructed. llvm::SmallVectorImpl<clang::NamedDecl *> &m_decls; /// The mapping of all namespaces found for this request back to their /// modules. ClangASTImporter::NamespaceMapSP m_namespace_map; /// The name being looked for. const clang::DeclarationName m_decl_name; /// The DeclContext to put declarations into. const clang::DeclContext *m_decl_context; /// All the types of functions that have been reported, so we don't /// report conflicts. llvm::SmallSet<CompilerType, 5> m_function_types; bool m_found_variable = false; bool m_found_function_with_type_info = false; bool m_found_function = false; bool m_found_local_vars_nsp = false; bool m_found_type = false; /// Constructor /// /// Initializes class variables. /// /// \param[in] clang_ts /// The TypeSystemClang from which the request originates. /// /// \param[in] decls /// A reference to a list into which new Decls will be placed. This /// list is typically empty when the function is called. /// /// \param[in] name /// The name being searched for (always an Identifier). /// /// \param[in] dc /// The DeclContext to register Decls in. NameSearchContext(TypeSystemClang &clang_ts, llvm::SmallVectorImpl<clang::NamedDecl *> &decls, clang::DeclarationName name, const clang::DeclContext *dc) : m_clang_ts(clang_ts), m_decls(decls), m_namespace_map(std::make_shared<ClangASTImporter::NamespaceMap>()), m_decl_name(name), m_decl_context(dc) { ; } /// Create a VarDecl with the name being searched for and the provided type /// and register it in the right places. /// /// \param[in] type /// The opaque QualType for the VarDecl being registered. clang::NamedDecl *AddVarDecl(const CompilerType &type); /// Create a FunDecl with the name being searched for and the provided type /// and register it in the right places. /// /// \param[in] type /// The opaque QualType for the FunDecl being registered. /// /// \param[in] extern_c /// If true, build an extern "C" linkage specification for this. clang::NamedDecl *AddFunDecl(const CompilerType &type, bool extern_c = false); /// Create a FunDecl with the name being searched for and generic type (i.e. /// intptr_t NAME_GOES_HERE(...)) and register it in the right places. clang::NamedDecl *AddGenericFunDecl(); /// Create a TypeDecl with the name being searched for and the provided type /// and register it in the right places. /// /// \param[in] compiler_type /// The opaque QualType for the TypeDecl being registered. clang::NamedDecl *AddTypeDecl(const CompilerType &compiler_type); /// Add Decls from the provided DeclContextLookupResult to the list of /// results. /// /// \param[in] result /// The DeclContextLookupResult, usually returned as the result /// of querying a DeclContext. void AddLookupResult(clang::DeclContextLookupResult result); /// Add a NamedDecl to the list of results. /// /// \param[in] decl /// The NamedDecl, usually returned as the result /// of querying a DeclContext. void AddNamedDecl(clang::NamedDecl *decl); private: clang::ASTContext &GetASTContext() const { return m_clang_ts.getASTContext(); } }; } // namespace lldb_private #endif // LLDB_SOURCE_PLUGINS_EXPRESSIONPARSER_CLANG_NAME_SEARCH_CONTEXT_H
Upload File
Create Folder