brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.8 KiB · 2cfa86d Raw
54 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCDECLVENDOR_H10#define LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCDECLVENDOR_H11 12#include "lldb/lldb-private.h"13 14#include "Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h"15#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"16#include "lldb/Symbol/DeclVendor.h"17 18namespace lldb_private {19 20class AppleObjCExternalASTSource;21 22class AppleObjCDeclVendor : public DeclVendor {23public:24  AppleObjCDeclVendor(ObjCLanguageRuntime &runtime);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 33  friend class AppleObjCExternalASTSource;34 35private:36  clang::ObjCInterfaceDecl *GetDeclForISA(ObjCLanguageRuntime::ObjCISA isa);37  bool FinishDecl(clang::ObjCInterfaceDecl *decl);38 39  ObjCLanguageRuntime &m_runtime;40  std::shared_ptr<TypeSystemClang> m_ast_ctx;41  ObjCLanguageRuntime::EncodingToTypeSP m_type_realizer_sp;42  AppleObjCExternalASTSource *m_external_source;43 44  typedef llvm::DenseMap<ObjCLanguageRuntime::ObjCISA,45                         clang::ObjCInterfaceDecl *>46      ISAToInterfaceMap;47 48  ISAToInterfaceMap m_isa_to_interface;49};50 51} // namespace lldb_private52 53#endif // LLDB_SOURCE_PLUGINS_LANGUAGERUNTIME_OBJC_APPLEOBJCRUNTIME_APPLEOBJCDECLVENDOR_H54