LLDB mainline
AppleObjCDeclVendor.h
Go to the documentation of this file.
1//===-- AppleObjCDeclVendor.h -----------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCDECLVENDOR_H
10#define LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCDECLVENDOR_H
11
12#include "lldb/lldb-private.h"
13
17
18namespace lldb_private {
19
20class AppleObjCExternalASTSource;
21
23public:
25
26 static bool classof(const DeclVendor *vendor) {
27 return vendor->GetKind() == eAppleObjCDeclVendor;
28 }
29
30 uint32_t FindDecls(ConstString name, bool append, uint32_t max_matches,
31 std::vector<CompilerDecl> &decls) override;
32
34
35private:
36 clang::ObjCInterfaceDecl *GetDeclForISA(ObjCLanguageRuntime::ObjCISA isa);
37 bool FinishDecl(clang::ObjCInterfaceDecl *decl);
38
40 std::shared_ptr<TypeSystemClang> m_ast_ctx;
43
44 typedef llvm::DenseMap<ObjCLanguageRuntime::ObjCISA,
45 clang::ObjCInterfaceDecl *>
47
49};
50
51} // namespace lldb_private
52
53#endif // LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCDECLVENDOR_H
llvm::DenseMap< ObjCLanguageRuntime::ObjCISA, clang::ObjCInterfaceDecl * > ISAToInterfaceMap
ObjCLanguageRuntime::EncodingToTypeSP m_type_realizer_sp
uint32_t FindDecls(ConstString name, bool append, uint32_t max_matches, std::vector< CompilerDecl > &decls) override
Look up the set of Decls that the DeclVendor currently knows about matching a given name.
bool FinishDecl(clang::ObjCInterfaceDecl *decl)
AppleObjCExternalASTSource * m_external_source
std::shared_ptr< TypeSystemClang > m_ast_ctx
clang::ObjCInterfaceDecl * GetDeclForISA(ObjCLanguageRuntime::ObjCISA isa)
static bool classof(const DeclVendor *vendor)
A uniqued constant string class.
Definition: ConstString.h:40
DeclVendorKind GetKind() const
Definition: DeclVendor.h:33
std::shared_ptr< EncodingToType > EncodingToTypeSP
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14