blob: 2a78012d8917736c6ac05666032fdd5b5f2499c4 [file] [log] [blame]
Ted Kremenek16c440a2010-01-15 20:35:54 +00001//===- CXCursor.cpp - Routines for manipulating CXCursors -----------------===//
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//
Douglas Gregor2e331b92010-01-16 14:00:32 +000010// This file defines routines for manipulating CXCursors. It should be the
11// only file that has internal knowledge of the encoding of the data in
12// CXCursor.
Ted Kremenek16c440a2010-01-15 20:35:54 +000013//
14//===----------------------------------------------------------------------===//
15
Ted Kremenek0a90d322010-11-17 23:24:11 +000016#include "CXTranslationUnit.h"
Ted Kremenek16c440a2010-01-15 20:35:54 +000017#include "CXCursor.h"
Ted Kremeneked122732010-11-16 01:56:27 +000018#include "CXString.h"
Douglas Gregor7eaa8ae2010-01-20 00:23:15 +000019#include "clang/Frontend/ASTUnit.h"
Ted Kremenek16c440a2010-01-15 20:35:54 +000020#include "clang/AST/Decl.h"
Douglas Gregor69319002010-08-31 23:48:11 +000021#include "clang/AST/DeclCXX.h"
Douglas Gregor283cae32010-01-15 21:56:13 +000022#include "clang/AST/DeclObjC.h"
23#include "clang/AST/Expr.h"
Douglas Gregor1f60d9e2010-09-13 22:52:57 +000024#include "clang/AST/ExprCXX.h"
Ted Kremenek007a7c92010-11-01 23:26:51 +000025#include "clang-c/Index.h"
Ted Kremenekedc8aa62010-01-16 00:36:30 +000026#include "llvm/Support/ErrorHandling.h"
Ted Kremenek16c440a2010-01-15 20:35:54 +000027
28using namespace clang;
Douglas Gregor1f60d9e2010-09-13 22:52:57 +000029using namespace cxcursor;
Ted Kremenek16c440a2010-01-15 20:35:54 +000030
Douglas Gregor5bfb8c12010-01-20 23:34:41 +000031CXCursor cxcursor::MakeCXCursorInvalid(CXCursorKind K) {
32 assert(K >= CXCursor_FirstInvalid && K <= CXCursor_LastInvalid);
33 CXCursor C = { K, { 0, 0, 0 } };
34 return C;
Ted Kremenek16c440a2010-01-15 20:35:54 +000035}
36
Ted Kremeneke77f4432010-02-18 03:09:07 +000037static CXCursorKind GetCursorKind(const Attr *A) {
38 assert(A && "Invalid arguments!");
39 switch (A->getKind()) {
40 default: break;
Sean Hunt387475d2010-06-16 23:43:53 +000041 case attr::IBAction: return CXCursor_IBActionAttr;
42 case attr::IBOutlet: return CXCursor_IBOutletAttr;
43 case attr::IBOutletCollection: return CXCursor_IBOutletCollectionAttr;
Ted Kremeneke77f4432010-02-18 03:09:07 +000044 }
45
46 return CXCursor_UnexposedAttr;
47}
48
Ted Kremeneka60ed472010-11-16 08:15:36 +000049CXCursor cxcursor::MakeCXCursor(const Attr *A, Decl *Parent,
50 CXTranslationUnit TU) {
Ted Kremeneke77f4432010-02-18 03:09:07 +000051 assert(A && Parent && TU && "Invalid arguments!");
52 CXCursor C = { GetCursorKind(A), { Parent, (void*)A, TU } };
53 return C;
54}
55
Ted Kremeneka60ed472010-11-16 08:15:36 +000056CXCursor cxcursor::MakeCXCursor(Decl *D, CXTranslationUnit TU,
Ted Kremenek007a7c92010-11-01 23:26:51 +000057 bool FirstInDeclGroup) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +000058 assert(D && TU && "Invalid arguments!");
Ted Kremenek007a7c92010-11-01 23:26:51 +000059 CXCursor C = { getCursorKindForDecl(D),
Jeffrey Yasskindec09842011-01-18 02:00:16 +000060 { D, (void*)(intptr_t) (FirstInDeclGroup ? 1 : 0), TU }
Ted Kremenek007a7c92010-11-01 23:26:51 +000061 };
Douglas Gregor5bfb8c12010-01-20 23:34:41 +000062 return C;
Ted Kremenekedc8aa62010-01-16 00:36:30 +000063}
64
Ted Kremeneka60ed472010-11-16 08:15:36 +000065CXCursor cxcursor::MakeCXCursor(Stmt *S, Decl *Parent,
66 CXTranslationUnit TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +000067 assert(S && TU && "Invalid arguments!");
Douglas Gregor97b98722010-01-19 23:20:36 +000068 CXCursorKind K = CXCursor_NotImplemented;
69
70 switch (S->getStmtClass()) {
71 case Stmt::NoStmtClass:
72 break;
73
74 case Stmt::NullStmtClass:
75 case Stmt::CompoundStmtClass:
76 case Stmt::CaseStmtClass:
77 case Stmt::DefaultStmtClass:
Douglas Gregor97b98722010-01-19 23:20:36 +000078 case Stmt::IfStmtClass:
79 case Stmt::SwitchStmtClass:
80 case Stmt::WhileStmtClass:
81 case Stmt::DoStmtClass:
82 case Stmt::ForStmtClass:
83 case Stmt::GotoStmtClass:
84 case Stmt::IndirectGotoStmtClass:
85 case Stmt::ContinueStmtClass:
86 case Stmt::BreakStmtClass:
87 case Stmt::ReturnStmtClass:
88 case Stmt::DeclStmtClass:
Douglas Gregor97b98722010-01-19 23:20:36 +000089 case Stmt::AsmStmtClass:
90 case Stmt::ObjCAtTryStmtClass:
91 case Stmt::ObjCAtCatchStmtClass:
92 case Stmt::ObjCAtFinallyStmtClass:
93 case Stmt::ObjCAtThrowStmtClass:
94 case Stmt::ObjCAtSynchronizedStmtClass:
95 case Stmt::ObjCForCollectionStmtClass:
96 case Stmt::CXXCatchStmtClass:
97 case Stmt::CXXTryStmtClass:
Richard Smithad762fc2011-04-14 22:09:26 +000098 case Stmt::CXXForRangeStmtClass:
John Wiegley28bbe4b2011-04-28 01:08:34 +000099 case Stmt::SEHTryStmtClass:
100 case Stmt::SEHExceptStmtClass:
101 case Stmt::SEHFinallyStmtClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000102 K = CXCursor_UnexposedStmt;
103 break;
104
Douglas Gregor36897b02010-09-10 00:22:18 +0000105 case Stmt::LabelStmtClass:
106 K = CXCursor_LabelStmt;
107 break;
108
Douglas Gregor97b98722010-01-19 23:20:36 +0000109 case Stmt::PredefinedExprClass:
110 case Stmt::IntegerLiteralClass:
111 case Stmt::FloatingLiteralClass:
112 case Stmt::ImaginaryLiteralClass:
113 case Stmt::StringLiteralClass:
114 case Stmt::CharacterLiteralClass:
115 case Stmt::ParenExprClass:
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000116 case Stmt::UnaryOperatorClass:
117 case Stmt::OffsetOfExprClass:
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +0000118 case Stmt::UnaryExprOrTypeTraitExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000119 case Stmt::ArraySubscriptExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000120 case Stmt::BinaryOperatorClass:
121 case Stmt::CompoundAssignOperatorClass:
122 case Stmt::ConditionalOperatorClass:
John McCall56ca35d2011-02-17 10:25:35 +0000123 case Stmt::BinaryConditionalOperatorClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000124 case Stmt::ImplicitCastExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000125 case Stmt::CStyleCastExprClass:
126 case Stmt::CompoundLiteralExprClass:
127 case Stmt::ExtVectorElementExprClass:
128 case Stmt::InitListExprClass:
129 case Stmt::DesignatedInitExprClass:
130 case Stmt::ImplicitValueInitExprClass:
131 case Stmt::ParenListExprClass:
132 case Stmt::VAArgExprClass:
133 case Stmt::AddrLabelExprClass:
134 case Stmt::StmtExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000135 case Stmt::ChooseExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +0000136 case Stmt::GenericSelectionExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000137 case Stmt::GNUNullExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000138 case Stmt::CXXStaticCastExprClass:
139 case Stmt::CXXDynamicCastExprClass:
140 case Stmt::CXXReinterpretCastExprClass:
141 case Stmt::CXXConstCastExprClass:
142 case Stmt::CXXFunctionalCastExprClass:
143 case Stmt::CXXTypeidExprClass:
Francois Pichet9be88402010-09-08 23:47:05 +0000144 case Stmt::CXXUuidofExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000145 case Stmt::CXXBoolLiteralExprClass:
146 case Stmt::CXXNullPtrLiteralExprClass:
147 case Stmt::CXXThisExprClass:
148 case Stmt::CXXThrowExprClass:
149 case Stmt::CXXDefaultArgExprClass:
Douglas Gregored8abf12010-07-08 06:14:04 +0000150 case Stmt::CXXScalarValueInitExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000151 case Stmt::CXXNewExprClass:
152 case Stmt::CXXDeleteExprClass:
153 case Stmt::CXXPseudoDestructorExprClass:
154 case Stmt::UnresolvedLookupExprClass:
155 case Stmt::UnaryTypeTraitExprClass:
Francois Pichet6ad6f282010-12-07 00:08:36 +0000156 case Stmt::BinaryTypeTraitExprClass:
John Wiegley21ff2e52011-04-28 00:16:57 +0000157 case Stmt::ArrayTypeTraitExprClass:
John Wiegley55262202011-04-25 06:54:41 +0000158 case Stmt::ExpressionTraitExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000159 case Stmt::DependentScopeDeclRefExprClass:
160 case Stmt::CXXBindTemporaryExprClass:
John McCall4765fa02010-12-06 08:20:24 +0000161 case Stmt::ExprWithCleanupsClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000162 case Stmt::CXXUnresolvedConstructExprClass:
163 case Stmt::CXXDependentScopeMemberExprClass:
164 case Stmt::UnresolvedMemberExprClass:
Sebastian Redl2e156222010-09-10 20:55:43 +0000165 case Stmt::CXXNoexceptExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000166 case Stmt::ObjCStringLiteralClass:
167 case Stmt::ObjCEncodeExprClass:
168 case Stmt::ObjCSelectorExprClass:
169 case Stmt::ObjCProtocolExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000170 case Stmt::ObjCIsaExprClass:
171 case Stmt::ShuffleVectorExprClass:
172 case Stmt::BlockExprClass:
John McCall7cd7d1a2010-11-15 23:31:06 +0000173 case Stmt::OpaqueValueExprClass:
Douglas Gregorbe230c32011-01-03 17:17:50 +0000174 case Stmt::PackExpansionExprClass:
Douglas Gregoree8aff02011-01-04 17:33:58 +0000175 case Stmt::SizeOfPackExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000176 K = CXCursor_UnexposedExpr;
177 break;
Douglas Gregor36897b02010-09-10 00:22:18 +0000178
Douglas Gregor97b98722010-01-19 23:20:36 +0000179 case Stmt::DeclRefExprClass:
180 case Stmt::BlockDeclRefExprClass:
Douglas Gregorc7793c72011-01-15 01:15:58 +0000181 case Stmt::SubstNonTypeTemplateParmPackExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000182 // FIXME: UnresolvedLookupExpr?
183 // FIXME: DependentScopeDeclRefExpr?
184 K = CXCursor_DeclRefExpr;
185 break;
186
187 case Stmt::MemberExprClass:
188 case Stmt::ObjCIvarRefExprClass:
189 case Stmt::ObjCPropertyRefExprClass:
190 // FIXME: UnresolvedMemberExpr?
191 // FIXME: CXXDependentScopeMemberExpr?
192 K = CXCursor_MemberRefExpr;
193 break;
194
195 case Stmt::CallExprClass:
196 case Stmt::CXXOperatorCallExprClass:
197 case Stmt::CXXMemberCallExprClass:
Peter Collingbournee08ce652011-02-09 21:07:24 +0000198 case Stmt::CUDAKernelCallExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000199 case Stmt::CXXConstructExprClass:
200 case Stmt::CXXTemporaryObjectExprClass:
201 // FIXME: CXXUnresolvedConstructExpr
Douglas Gregor97b98722010-01-19 23:20:36 +0000202 K = CXCursor_CallExpr;
203 break;
204
205 case Stmt::ObjCMessageExprClass:
206 K = CXCursor_ObjCMessageExpr;
207 break;
208 }
209
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000210 CXCursor C = { K, { Parent, S, TU } };
Douglas Gregor97b98722010-01-19 23:20:36 +0000211 return C;
212}
213
Douglas Gregor2e331b92010-01-16 14:00:32 +0000214CXCursor cxcursor::MakeCursorObjCSuperClassRef(ObjCInterfaceDecl *Super,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000215 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000216 CXTranslationUnit TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000217 assert(Super && TU && "Invalid arguments!");
Douglas Gregor2e331b92010-01-16 14:00:32 +0000218 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000219 CXCursor C = { CXCursor_ObjCSuperClassRef, { Super, RawLoc, TU } };
Douglas Gregor2e331b92010-01-16 14:00:32 +0000220 return C;
221}
222
223std::pair<ObjCInterfaceDecl *, SourceLocation>
224cxcursor::getCursorObjCSuperClassRef(CXCursor C) {
225 assert(C.kind == CXCursor_ObjCSuperClassRef);
226 return std::make_pair(static_cast<ObjCInterfaceDecl *>(C.data[0]),
227 SourceLocation::getFromRawEncoding(
228 reinterpret_cast<uintptr_t>(C.data[1])));
229}
230
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000231CXCursor cxcursor::MakeCursorObjCProtocolRef(ObjCProtocolDecl *Super,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000232 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000233 CXTranslationUnit TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000234 assert(Super && TU && "Invalid arguments!");
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000235 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000236 CXCursor C = { CXCursor_ObjCProtocolRef, { Super, RawLoc, TU } };
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000237 return C;
238}
239
240std::pair<ObjCProtocolDecl *, SourceLocation>
241cxcursor::getCursorObjCProtocolRef(CXCursor C) {
242 assert(C.kind == CXCursor_ObjCProtocolRef);
243 return std::make_pair(static_cast<ObjCProtocolDecl *>(C.data[0]),
244 SourceLocation::getFromRawEncoding(
245 reinterpret_cast<uintptr_t>(C.data[1])));
246}
247
Douglas Gregor1adb0822010-01-16 17:14:40 +0000248CXCursor cxcursor::MakeCursorObjCClassRef(ObjCInterfaceDecl *Class,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000249 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000250 CXTranslationUnit TU) {
Ted Kremenekebfa3392010-03-19 20:39:03 +0000251 // 'Class' can be null for invalid code.
252 if (!Class)
253 return MakeCXCursorInvalid(CXCursor_InvalidCode);
254 assert(TU && "Invalid arguments!");
Douglas Gregor1adb0822010-01-16 17:14:40 +0000255 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000256 CXCursor C = { CXCursor_ObjCClassRef, { Class, RawLoc, TU } };
Douglas Gregor1adb0822010-01-16 17:14:40 +0000257 return C;
258}
259
260std::pair<ObjCInterfaceDecl *, SourceLocation>
261cxcursor::getCursorObjCClassRef(CXCursor C) {
262 assert(C.kind == CXCursor_ObjCClassRef);
263 return std::make_pair(static_cast<ObjCInterfaceDecl *>(C.data[0]),
264 SourceLocation::getFromRawEncoding(
265 reinterpret_cast<uintptr_t>(C.data[1])));
266}
267
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000268CXCursor cxcursor::MakeCursorTypeRef(TypeDecl *Type, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000269 CXTranslationUnit TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000270 assert(Type && TU && "Invalid arguments!");
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000271 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
272 CXCursor C = { CXCursor_TypeRef, { Type, RawLoc, TU } };
273 return C;
274}
275
276std::pair<TypeDecl *, SourceLocation>
277cxcursor::getCursorTypeRef(CXCursor C) {
278 assert(C.kind == CXCursor_TypeRef);
279 return std::make_pair(static_cast<TypeDecl *>(C.data[0]),
280 SourceLocation::getFromRawEncoding(
281 reinterpret_cast<uintptr_t>(C.data[1])));
282}
283
Douglas Gregor0b36e612010-08-31 20:37:03 +0000284CXCursor cxcursor::MakeCursorTemplateRef(TemplateDecl *Template,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000285 SourceLocation Loc,
286 CXTranslationUnit TU) {
Douglas Gregor0b36e612010-08-31 20:37:03 +0000287 assert(Template && TU && "Invalid arguments!");
288 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
289 CXCursor C = { CXCursor_TemplateRef, { Template, RawLoc, TU } };
290 return C;
291}
292
293std::pair<TemplateDecl *, SourceLocation>
294cxcursor::getCursorTemplateRef(CXCursor C) {
295 assert(C.kind == CXCursor_TemplateRef);
296 return std::make_pair(static_cast<TemplateDecl *>(C.data[0]),
297 SourceLocation::getFromRawEncoding(
298 reinterpret_cast<uintptr_t>(C.data[1])));
299}
300
Douglas Gregor69319002010-08-31 23:48:11 +0000301CXCursor cxcursor::MakeCursorNamespaceRef(NamedDecl *NS, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000302 CXTranslationUnit TU) {
Douglas Gregor69319002010-08-31 23:48:11 +0000303
304 assert(NS && (isa<NamespaceDecl>(NS) || isa<NamespaceAliasDecl>(NS)) && TU &&
305 "Invalid arguments!");
306 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
307 CXCursor C = { CXCursor_NamespaceRef, { NS, RawLoc, TU } };
308 return C;
309}
310
311std::pair<NamedDecl *, SourceLocation>
312cxcursor::getCursorNamespaceRef(CXCursor C) {
313 assert(C.kind == CXCursor_NamespaceRef);
314 return std::make_pair(static_cast<NamedDecl *>(C.data[0]),
315 SourceLocation::getFromRawEncoding(
316 reinterpret_cast<uintptr_t>(C.data[1])));
317}
318
Douglas Gregora67e03f2010-09-09 21:42:20 +0000319CXCursor cxcursor::MakeCursorMemberRef(FieldDecl *Field, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000320 CXTranslationUnit TU) {
Douglas Gregora67e03f2010-09-09 21:42:20 +0000321
322 assert(Field && TU && "Invalid arguments!");
323 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
324 CXCursor C = { CXCursor_MemberRef, { Field, RawLoc, TU } };
325 return C;
326}
327
328std::pair<FieldDecl *, SourceLocation>
329cxcursor::getCursorMemberRef(CXCursor C) {
330 assert(C.kind == CXCursor_MemberRef);
331 return std::make_pair(static_cast<FieldDecl *>(C.data[0]),
332 SourceLocation::getFromRawEncoding(
333 reinterpret_cast<uintptr_t>(C.data[1])));
334}
335
Ted Kremeneka60ed472010-11-16 08:15:36 +0000336CXCursor cxcursor::MakeCursorCXXBaseSpecifier(CXXBaseSpecifier *B,
337 CXTranslationUnit TU){
Ted Kremenek3064ef92010-08-27 21:34:58 +0000338 CXCursor C = { CXCursor_CXXBaseSpecifier, { B, 0, TU } };
339 return C;
340}
341
342CXXBaseSpecifier *cxcursor::getCursorCXXBaseSpecifier(CXCursor C) {
343 assert(C.kind == CXCursor_CXXBaseSpecifier);
344 return static_cast<CXXBaseSpecifier*>(C.data[0]);
345}
346
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +0000347CXCursor cxcursor::MakePreprocessingDirectiveCursor(SourceRange Range,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000348 CXTranslationUnit TU) {
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +0000349 CXCursor C = { CXCursor_PreprocessingDirective,
350 { reinterpret_cast<void *>(Range.getBegin().getRawEncoding()),
351 reinterpret_cast<void *>(Range.getEnd().getRawEncoding()),
352 TU }
353 };
354 return C;
355}
356
357SourceRange cxcursor::getCursorPreprocessingDirective(CXCursor C) {
358 assert(C.kind == CXCursor_PreprocessingDirective);
359 return SourceRange(SourceLocation::getFromRawEncoding(
360 reinterpret_cast<uintptr_t> (C.data[0])),
361 SourceLocation::getFromRawEncoding(
362 reinterpret_cast<uintptr_t> (C.data[1])));
363}
364
Ted Kremeneka60ed472010-11-16 08:15:36 +0000365CXCursor cxcursor::MakeMacroDefinitionCursor(MacroDefinition *MI,
366 CXTranslationUnit TU) {
Douglas Gregor572feb22010-03-18 18:04:21 +0000367 CXCursor C = { CXCursor_MacroDefinition, { MI, 0, TU } };
368 return C;
369}
370
371MacroDefinition *cxcursor::getCursorMacroDefinition(CXCursor C) {
372 assert(C.kind == CXCursor_MacroDefinition);
373 return static_cast<MacroDefinition *>(C.data[0]);
374}
375
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000376CXCursor cxcursor::MakeMacroInstantiationCursor(MacroInstantiation *MI,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000377 CXTranslationUnit TU) {
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000378 CXCursor C = { CXCursor_MacroInstantiation, { MI, 0, TU } };
Douglas Gregor48072312010-03-18 15:23:44 +0000379 return C;
380}
381
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000382MacroInstantiation *cxcursor::getCursorMacroInstantiation(CXCursor C) {
Douglas Gregor48072312010-03-18 15:23:44 +0000383 assert(C.kind == CXCursor_MacroInstantiation);
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000384 return static_cast<MacroInstantiation *>(C.data[0]);
Douglas Gregor48072312010-03-18 15:23:44 +0000385}
386
Douglas Gregorecdcb882010-10-20 22:00:55 +0000387CXCursor cxcursor::MakeInclusionDirectiveCursor(InclusionDirective *ID,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000388 CXTranslationUnit TU) {
Douglas Gregorecdcb882010-10-20 22:00:55 +0000389 CXCursor C = { CXCursor_InclusionDirective, { ID, 0, TU } };
390 return C;
391}
392
393InclusionDirective *cxcursor::getCursorInclusionDirective(CXCursor C) {
394 assert(C.kind == CXCursor_InclusionDirective);
395 return static_cast<InclusionDirective *>(C.data[0]);
396}
397
Douglas Gregor36897b02010-09-10 00:22:18 +0000398CXCursor cxcursor::MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000399 CXTranslationUnit TU) {
Douglas Gregor36897b02010-09-10 00:22:18 +0000400
401 assert(Label && TU && "Invalid arguments!");
402 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
403 CXCursor C = { CXCursor_LabelRef, { Label, RawLoc, TU } };
404 return C;
405}
406
407std::pair<LabelStmt*, SourceLocation>
408cxcursor::getCursorLabelRef(CXCursor C) {
409 assert(C.kind == CXCursor_LabelRef);
410 return std::make_pair(static_cast<LabelStmt *>(C.data[0]),
411 SourceLocation::getFromRawEncoding(
412 reinterpret_cast<uintptr_t>(C.data[1])));
413}
414
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000415CXCursor cxcursor::MakeCursorOverloadedDeclRef(OverloadExpr *E,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000416 CXTranslationUnit TU) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000417 assert(E && TU && "Invalid arguments!");
418 OverloadedDeclRefStorage Storage(E);
419 void *RawLoc = reinterpret_cast<void *>(E->getNameLoc().getRawEncoding());
420 CXCursor C = {
421 CXCursor_OverloadedDeclRef,
422 { Storage.getOpaqueValue(), RawLoc, TU }
423 };
424 return C;
425}
426
427CXCursor cxcursor::MakeCursorOverloadedDeclRef(Decl *D,
428 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000429 CXTranslationUnit TU) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000430 assert(D && TU && "Invalid arguments!");
431 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
432 OverloadedDeclRefStorage Storage(D);
433 CXCursor C = {
434 CXCursor_OverloadedDeclRef,
435 { Storage.getOpaqueValue(), RawLoc, TU }
436 };
437 return C;
438}
439
440CXCursor cxcursor::MakeCursorOverloadedDeclRef(TemplateName Name,
441 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000442 CXTranslationUnit TU) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000443 assert(Name.getAsOverloadedTemplate() && TU && "Invalid arguments!");
444 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
445 OverloadedDeclRefStorage Storage(Name.getAsOverloadedTemplate());
446 CXCursor C = {
447 CXCursor_OverloadedDeclRef,
448 { Storage.getOpaqueValue(), RawLoc, TU }
449 };
450 return C;
451}
452
453std::pair<cxcursor::OverloadedDeclRefStorage, SourceLocation>
454cxcursor::getCursorOverloadedDeclRef(CXCursor C) {
455 assert(C.kind == CXCursor_OverloadedDeclRef);
456 return std::make_pair(OverloadedDeclRefStorage::getFromOpaqueValue(C.data[0]),
457 SourceLocation::getFromRawEncoding(
458 reinterpret_cast<uintptr_t>(C.data[1])));
459}
460
Douglas Gregor283cae32010-01-15 21:56:13 +0000461Decl *cxcursor::getCursorDecl(CXCursor Cursor) {
462 return (Decl *)Cursor.data[0];
463}
464
465Expr *cxcursor::getCursorExpr(CXCursor Cursor) {
466 return dyn_cast_or_null<Expr>(getCursorStmt(Cursor));
467}
468
469Stmt *cxcursor::getCursorStmt(CXCursor Cursor) {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000470 if (Cursor.kind == CXCursor_ObjCSuperClassRef ||
Douglas Gregor1adb0822010-01-16 17:14:40 +0000471 Cursor.kind == CXCursor_ObjCProtocolRef ||
472 Cursor.kind == CXCursor_ObjCClassRef)
Douglas Gregor2e331b92010-01-16 14:00:32 +0000473 return 0;
474
Douglas Gregor283cae32010-01-15 21:56:13 +0000475 return (Stmt *)Cursor.data[1];
476}
477
Ted Kremenek95f33552010-08-26 01:42:22 +0000478Attr *cxcursor::getCursorAttr(CXCursor Cursor) {
479 return (Attr *)Cursor.data[1];
480}
481
Douglas Gregorf46034a2010-01-18 23:41:10 +0000482ASTContext &cxcursor::getCursorContext(CXCursor Cursor) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000483 return getCursorASTUnit(Cursor)->getASTContext();
484}
Douglas Gregorf46034a2010-01-18 23:41:10 +0000485
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000486ASTUnit *cxcursor::getCursorASTUnit(CXCursor Cursor) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000487 return static_cast<ASTUnit *>(static_cast<CXTranslationUnit>(Cursor.data[2])
488 ->TUData);
489}
490
491CXTranslationUnit cxcursor::getCursorTU(CXCursor Cursor) {
492 return static_cast<CXTranslationUnit>(Cursor.data[2]);
Douglas Gregor283cae32010-01-15 21:56:13 +0000493}
494
Douglas Gregor283cae32010-01-15 21:56:13 +0000495bool cxcursor::operator==(CXCursor X, CXCursor Y) {
496 return X.kind == Y.kind && X.data[0] == Y.data[0] && X.data[1] == Y.data[1] &&
497 X.data[2] == Y.data[2];
Douglas Gregor2e331b92010-01-16 14:00:32 +0000498}
Ted Kremenek007a7c92010-11-01 23:26:51 +0000499
500// FIXME: Remove once we can model DeclGroups and their appropriate ranges
501// properly in the ASTs.
502bool cxcursor::isFirstInDeclGroup(CXCursor C) {
503 assert(clang_isDeclaration(C.kind));
504 return ((uintptr_t) (C.data[1])) != 0;
505}
506
Ted Kremenekeca099b2010-12-08 23:43:14 +0000507//===----------------------------------------------------------------------===//
508// CXCursorSet.
509//===----------------------------------------------------------------------===//
510
511typedef llvm::DenseMap<CXCursor, unsigned> CXCursorSet_Impl;
512
513static inline CXCursorSet packCXCursorSet(CXCursorSet_Impl *setImpl) {
514 return (CXCursorSet) setImpl;
515}
516static inline CXCursorSet_Impl *unpackCXCursorSet(CXCursorSet set) {
517 return (CXCursorSet_Impl*) set;
518}
519namespace llvm {
Ted Kremenekda6fb692010-12-09 00:33:41 +0000520template<> struct DenseMapInfo<CXCursor> {
Ted Kremenekeca099b2010-12-08 23:43:14 +0000521public:
522 static inline CXCursor getEmptyKey() {
523 return MakeCXCursorInvalid(CXCursor_InvalidFile);
524 }
525 static inline CXCursor getTombstoneKey() {
526 return MakeCXCursorInvalid(CXCursor_NoDeclFound);
527 }
528 static inline unsigned getHashValue(const CXCursor &cursor) {
529 return llvm::DenseMapInfo<std::pair<void*,void*> >
530 ::getHashValue(std::make_pair(cursor.data[0], cursor.data[1]));
531 }
532 static inline bool isEqual(const CXCursor &x, const CXCursor &y) {
533 return x.kind == y.kind &&
534 x.data[0] == y.data[0] &&
535 x.data[1] == y.data[1];
536 }
537};
538}
539
540extern "C" {
541CXCursorSet clang_createCXCursorSet() {
542 return packCXCursorSet(new CXCursorSet_Impl());
543}
544
545void clang_disposeCXCursorSet(CXCursorSet set) {
546 delete unpackCXCursorSet(set);
547}
548
549unsigned clang_CXCursorSet_contains(CXCursorSet set, CXCursor cursor) {
550 CXCursorSet_Impl *setImpl = unpackCXCursorSet(set);
551 if (!setImpl)
552 return 0;
553 return setImpl->find(cursor) == setImpl->end();
554}
555
Anders Carlssone8b3de02010-12-09 01:00:12 +0000556unsigned clang_CXCursorSet_insert(CXCursorSet set, CXCursor cursor) {
Ted Kremenekeca099b2010-12-08 23:43:14 +0000557 // Do not insert invalid cursors into the set.
558 if (cursor.kind >= CXCursor_FirstInvalid &&
559 cursor.kind <= CXCursor_LastInvalid)
560 return 1;
561
562 CXCursorSet_Impl *setImpl = unpackCXCursorSet(set);
563 if (!setImpl)
564 return 1;
565 unsigned &entry = (*setImpl)[cursor];
566 unsigned flag = entry == 0 ? 1 : 0;
567 entry = 1;
568 return flag;
569}
570} // end: extern "C"