blob: e39baea8ead2d538b914c1216d122f492110f8e0 [file] [log] [blame]
Greg Clayton47a15b72011-01-17 04:19:51 +00001//===-- ClangExternalASTSourceCallbacks.cpp ---------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Symbol/ClangExternalASTSourceCallbacks.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15
Kate Stoneb9c1b512016-09-06 20:57:50 +000016// Clang headers like to use NDEBUG inside of them to enable/disable debug
Bruce Mitchenerd93c4a32014-07-01 21:22:11 +000017// related features using "#ifndef NDEBUG" preprocessor blocks to do one thing
Greg Clayton47a15b72011-01-17 04:19:51 +000018// or another. This is bad because it means that if clang was built in release
19// mode, it assumes that you are building in release mode which is not always
20// the case. You can end up with functions that are defined as empty in header
21// files when NDEBUG is not defined, and this can cause link errors with the
22// clang .a files that you have since you might be missing functions in the .a
23// file. So we have to define NDEBUG when including clang headers to avoid any
24// mismatches. This is covered by rdar://problem/8691220
25
Sean Callanan3b1d4f62011-10-26 17:46:51 +000026#if !defined(NDEBUG) && !defined(LLVM_NDEBUG_OFF)
Greg Clayton47a15b72011-01-17 04:19:51 +000027#define LLDB_DEFINED_NDEBUG_FOR_CLANG
28#define NDEBUG
29// Need to include assert.h so it is as clang would expect it to be (disabled)
30#include <assert.h>
31#endif
32
33#include "clang/AST/DeclBase.h"
34#include "clang/AST/DeclarationName.h"
35
36#ifdef LLDB_DEFINED_NDEBUG_FOR_CLANG
37#undef NDEBUG
38#undef LLDB_DEFINED_NDEBUG_FOR_CLANG
39// Need to re-include assert.h so it is as _we_ would expect it to be (enabled)
40#include <assert.h>
41#endif
42
43#include "lldb/Core/Log.h"
Greg Claytone6b36cd2015-12-08 01:02:08 +000044#include "clang/AST/Decl.h"
Greg Clayton47a15b72011-01-17 04:19:51 +000045
46using namespace clang;
47using namespace lldb_private;
48
Kate Stoneb9c1b512016-09-06 20:57:50 +000049bool ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(
Greg Clayton47a15b72011-01-17 04:19:51 +000050 const clang::DeclContext *decl_ctx,
Kate Stoneb9c1b512016-09-06 20:57:50 +000051 clang::DeclarationName clang_decl_name) {
52 if (m_callback_find_by_name) {
53 llvm::SmallVector<clang::NamedDecl *, 3> results;
54
55 m_callback_find_by_name(m_callback_baton, decl_ctx, clang_decl_name,
56 &results);
57
58 SetExternalVisibleDeclsForName(decl_ctx, clang_decl_name, results);
59
60 return (results.size() != 0);
61 }
62
63 std::string decl_name(clang_decl_name.getAsString());
64
65 switch (clang_decl_name.getNameKind()) {
66 // Normal identifiers.
67 case clang::DeclarationName::Identifier:
68 // printf
69 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
70 // = %p, decl_name = { kind = \"Identifier\", name = \"%s\")\n", decl_ctx,
71 // decl_name.c_str());
72 if (clang_decl_name.getAsIdentifierInfo()->getBuiltinID() != 0) {
73 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
74 return false;
Greg Claytona2721472011-06-25 00:44:06 +000075 }
Kate Stoneb9c1b512016-09-06 20:57:50 +000076 break;
Greg Clayton47a15b72011-01-17 04:19:51 +000077
Kate Stoneb9c1b512016-09-06 20:57:50 +000078 case clang::DeclarationName::ObjCZeroArgSelector:
79 // printf
80 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
81 // = %p, decl_name = { kind = \"ObjCZeroArgSelector\", name = \"%s\")\n",
82 // decl_ctx, decl_name.c_str());
Sean Callananeeffea42013-02-12 08:01:13 +000083 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
84 return false;
Kate Stoneb9c1b512016-09-06 20:57:50 +000085
86 case clang::DeclarationName::ObjCOneArgSelector:
87 // printf
88 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
89 // = %p, decl_name = { kind = \"ObjCOneArgSelector\", name = \"%s\")\n",
90 // decl_ctx, decl_name.c_str());
91 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
92 return false;
93
94 case clang::DeclarationName::ObjCMultiArgSelector:
95 // printf
96 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
97 // = %p, decl_name = { kind = \"ObjCMultiArgSelector\", name = \"%s\")\n",
98 // decl_ctx, decl_name.c_str());
99 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
100 return false;
101
102 case clang::DeclarationName::CXXConstructorName:
103 // printf
104 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
105 // = %p, decl_name = { kind = \"CXXConstructorName\", name = \"%s\")\n",
106 // decl_ctx, decl_name.c_str());
107 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
108 return false;
109
110 case clang::DeclarationName::CXXDestructorName:
111 // printf
112 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
113 // = %p, decl_name = { kind = \"CXXDestructorName\", name = \"%s\")\n",
114 // decl_ctx, decl_name.c_str());
115 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
116 return false;
117
118 case clang::DeclarationName::CXXConversionFunctionName:
119 // printf
120 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
121 // = %p, decl_name = { kind = \"CXXConversionFunctionName\", name =
122 // \"%s\")\n", decl_ctx, decl_name.c_str());
123 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
124 return false;
125
126 case clang::DeclarationName::CXXOperatorName:
127 // printf
128 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
129 // = %p, decl_name = { kind = \"CXXOperatorName\", name = \"%s\")\n",
130 // decl_ctx, decl_name.c_str());
131 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
132 return false;
133
134 case clang::DeclarationName::CXXLiteralOperatorName:
135 // printf
136 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
137 // = %p, decl_name = { kind = \"CXXLiteralOperatorName\", name = \"%s\")\n",
138 // decl_ctx, decl_name.c_str());
139 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
140 return false;
141
142 case clang::DeclarationName::CXXUsingDirective:
143 // printf
144 // ("ClangExternalASTSourceCallbacks::FindExternalVisibleDeclsByName(decl_ctx
145 // = %p, decl_name = { kind = \"CXXUsingDirective\", name = \"%s\")\n",
146 // decl_ctx, decl_name.c_str());
147 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
148 return false;
149 }
150
151 SetNoExternalVisibleDeclsForName(decl_ctx, clang_decl_name);
152 return false;
Greg Clayton47a15b72011-01-17 04:19:51 +0000153}
154
Kate Stoneb9c1b512016-09-06 20:57:50 +0000155void ClangExternalASTSourceCallbacks::CompleteType(TagDecl *tag_decl) {
156 if (m_callback_tag_decl)
157 m_callback_tag_decl(m_callback_baton, tag_decl);
Greg Clayton47a15b72011-01-17 04:19:51 +0000158}
159
Kate Stoneb9c1b512016-09-06 20:57:50 +0000160void ClangExternalASTSourceCallbacks::CompleteType(
161 ObjCInterfaceDecl *objc_decl) {
162 if (m_callback_objc_decl)
163 m_callback_objc_decl(m_callback_baton, objc_decl);
Greg Clayton47a15b72011-01-17 04:19:51 +0000164}
Sean Callanan5b26f272012-02-04 08:49:35 +0000165
Kate Stoneb9c1b512016-09-06 20:57:50 +0000166bool ClangExternalASTSourceCallbacks::layoutRecordType(
Zachary Turner504f38d2015-03-24 16:24:50 +0000167 const clang::RecordDecl *Record, uint64_t &Size, uint64_t &Alignment,
Zachary Turnera98fac22015-03-24 18:56:08 +0000168 llvm::DenseMap<const clang::FieldDecl *, uint64_t> &FieldOffsets,
169 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits> &BaseOffsets,
Kate Stoneb9c1b512016-09-06 20:57:50 +0000170 llvm::DenseMap<const clang::CXXRecordDecl *, clang::CharUnits>
171 &VirtualBaseOffsets) {
172 if (m_callback_layout_record_type)
173 return m_callback_layout_record_type(m_callback_baton, Record, Size,
174 Alignment, FieldOffsets, BaseOffsets,
175 VirtualBaseOffsets);
176
177 return false;
Sean Callanan5b26f272012-02-04 08:49:35 +0000178}
179
Kate Stoneb9c1b512016-09-06 20:57:50 +0000180void ClangExternalASTSourceCallbacks::FindExternalLexicalDecls(
181 const clang::DeclContext *decl_ctx,
182 llvm::function_ref<bool(clang::Decl::Kind)> IsKindWeWant,
183 llvm::SmallVectorImpl<clang::Decl *> &decls) {
184 if (m_callback_tag_decl && decl_ctx) {
185 clang::TagDecl *tag_decl = llvm::dyn_cast<clang::TagDecl>(
186 const_cast<clang::DeclContext *>(decl_ctx));
187 if (tag_decl)
188 CompleteType(tag_decl);
189 }
Greg Claytone6b36cd2015-12-08 01:02:08 +0000190}