blob: 81beba822f9166e62633e879889d30bcd6a97ff1 [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:
Douglas Gregor97b98722010-01-19 23:20:36 +000099 K = CXCursor_UnexposedStmt;
100 break;
101
Douglas Gregor36897b02010-09-10 00:22:18 +0000102 case Stmt::LabelStmtClass:
103 K = CXCursor_LabelStmt;
104 break;
105
Douglas Gregor97b98722010-01-19 23:20:36 +0000106 case Stmt::PredefinedExprClass:
107 case Stmt::IntegerLiteralClass:
108 case Stmt::FloatingLiteralClass:
109 case Stmt::ImaginaryLiteralClass:
110 case Stmt::StringLiteralClass:
111 case Stmt::CharacterLiteralClass:
112 case Stmt::ParenExprClass:
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000113 case Stmt::UnaryOperatorClass:
114 case Stmt::OffsetOfExprClass:
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +0000115 case Stmt::UnaryExprOrTypeTraitExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000116 case Stmt::ArraySubscriptExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000117 case Stmt::BinaryOperatorClass:
118 case Stmt::CompoundAssignOperatorClass:
119 case Stmt::ConditionalOperatorClass:
John McCall56ca35d2011-02-17 10:25:35 +0000120 case Stmt::BinaryConditionalOperatorClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000121 case Stmt::ImplicitCastExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000122 case Stmt::CStyleCastExprClass:
123 case Stmt::CompoundLiteralExprClass:
124 case Stmt::ExtVectorElementExprClass:
125 case Stmt::InitListExprClass:
126 case Stmt::DesignatedInitExprClass:
127 case Stmt::ImplicitValueInitExprClass:
128 case Stmt::ParenListExprClass:
129 case Stmt::VAArgExprClass:
130 case Stmt::AddrLabelExprClass:
131 case Stmt::StmtExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000132 case Stmt::ChooseExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +0000133 case Stmt::GenericSelectionExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000134 case Stmt::GNUNullExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000135 case Stmt::CXXStaticCastExprClass:
136 case Stmt::CXXDynamicCastExprClass:
137 case Stmt::CXXReinterpretCastExprClass:
138 case Stmt::CXXConstCastExprClass:
139 case Stmt::CXXFunctionalCastExprClass:
140 case Stmt::CXXTypeidExprClass:
Francois Pichet9be88402010-09-08 23:47:05 +0000141 case Stmt::CXXUuidofExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000142 case Stmt::CXXBoolLiteralExprClass:
143 case Stmt::CXXNullPtrLiteralExprClass:
144 case Stmt::CXXThisExprClass:
145 case Stmt::CXXThrowExprClass:
146 case Stmt::CXXDefaultArgExprClass:
Douglas Gregored8abf12010-07-08 06:14:04 +0000147 case Stmt::CXXScalarValueInitExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000148 case Stmt::CXXNewExprClass:
149 case Stmt::CXXDeleteExprClass:
150 case Stmt::CXXPseudoDestructorExprClass:
151 case Stmt::UnresolvedLookupExprClass:
152 case Stmt::UnaryTypeTraitExprClass:
Francois Pichet6ad6f282010-12-07 00:08:36 +0000153 case Stmt::BinaryTypeTraitExprClass:
John Wiegley55262202011-04-25 06:54:41 +0000154 case Stmt::ExpressionTraitExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000155 case Stmt::DependentScopeDeclRefExprClass:
156 case Stmt::CXXBindTemporaryExprClass:
John McCall4765fa02010-12-06 08:20:24 +0000157 case Stmt::ExprWithCleanupsClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000158 case Stmt::CXXUnresolvedConstructExprClass:
159 case Stmt::CXXDependentScopeMemberExprClass:
160 case Stmt::UnresolvedMemberExprClass:
Sebastian Redl2e156222010-09-10 20:55:43 +0000161 case Stmt::CXXNoexceptExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000162 case Stmt::ObjCStringLiteralClass:
163 case Stmt::ObjCEncodeExprClass:
164 case Stmt::ObjCSelectorExprClass:
165 case Stmt::ObjCProtocolExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000166 case Stmt::ObjCIsaExprClass:
167 case Stmt::ShuffleVectorExprClass:
168 case Stmt::BlockExprClass:
John McCall7cd7d1a2010-11-15 23:31:06 +0000169 case Stmt::OpaqueValueExprClass:
Douglas Gregorbe230c32011-01-03 17:17:50 +0000170 case Stmt::PackExpansionExprClass:
Douglas Gregoree8aff02011-01-04 17:33:58 +0000171 case Stmt::SizeOfPackExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000172 K = CXCursor_UnexposedExpr;
173 break;
Douglas Gregor36897b02010-09-10 00:22:18 +0000174
Douglas Gregor97b98722010-01-19 23:20:36 +0000175 case Stmt::DeclRefExprClass:
176 case Stmt::BlockDeclRefExprClass:
Douglas Gregorc7793c72011-01-15 01:15:58 +0000177 case Stmt::SubstNonTypeTemplateParmPackExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000178 // FIXME: UnresolvedLookupExpr?
179 // FIXME: DependentScopeDeclRefExpr?
180 K = CXCursor_DeclRefExpr;
181 break;
182
183 case Stmt::MemberExprClass:
184 case Stmt::ObjCIvarRefExprClass:
185 case Stmt::ObjCPropertyRefExprClass:
186 // FIXME: UnresolvedMemberExpr?
187 // FIXME: CXXDependentScopeMemberExpr?
188 K = CXCursor_MemberRefExpr;
189 break;
190
191 case Stmt::CallExprClass:
192 case Stmt::CXXOperatorCallExprClass:
193 case Stmt::CXXMemberCallExprClass:
Peter Collingbournee08ce652011-02-09 21:07:24 +0000194 case Stmt::CUDAKernelCallExprClass:
Douglas Gregor97b98722010-01-19 23:20:36 +0000195 case Stmt::CXXConstructExprClass:
196 case Stmt::CXXTemporaryObjectExprClass:
197 // FIXME: CXXUnresolvedConstructExpr
Douglas Gregor97b98722010-01-19 23:20:36 +0000198 K = CXCursor_CallExpr;
199 break;
200
201 case Stmt::ObjCMessageExprClass:
202 K = CXCursor_ObjCMessageExpr;
203 break;
204 }
205
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000206 CXCursor C = { K, { Parent, S, TU } };
Douglas Gregor97b98722010-01-19 23:20:36 +0000207 return C;
208}
209
Douglas Gregor2e331b92010-01-16 14:00:32 +0000210CXCursor cxcursor::MakeCursorObjCSuperClassRef(ObjCInterfaceDecl *Super,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000211 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000212 CXTranslationUnit TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000213 assert(Super && TU && "Invalid arguments!");
Douglas Gregor2e331b92010-01-16 14:00:32 +0000214 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000215 CXCursor C = { CXCursor_ObjCSuperClassRef, { Super, RawLoc, TU } };
Douglas Gregor2e331b92010-01-16 14:00:32 +0000216 return C;
217}
218
219std::pair<ObjCInterfaceDecl *, SourceLocation>
220cxcursor::getCursorObjCSuperClassRef(CXCursor C) {
221 assert(C.kind == CXCursor_ObjCSuperClassRef);
222 return std::make_pair(static_cast<ObjCInterfaceDecl *>(C.data[0]),
223 SourceLocation::getFromRawEncoding(
224 reinterpret_cast<uintptr_t>(C.data[1])));
225}
226
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000227CXCursor cxcursor::MakeCursorObjCProtocolRef(ObjCProtocolDecl *Super,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000228 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000229 CXTranslationUnit TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000230 assert(Super && TU && "Invalid arguments!");
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000231 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000232 CXCursor C = { CXCursor_ObjCProtocolRef, { Super, RawLoc, TU } };
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000233 return C;
234}
235
236std::pair<ObjCProtocolDecl *, SourceLocation>
237cxcursor::getCursorObjCProtocolRef(CXCursor C) {
238 assert(C.kind == CXCursor_ObjCProtocolRef);
239 return std::make_pair(static_cast<ObjCProtocolDecl *>(C.data[0]),
240 SourceLocation::getFromRawEncoding(
241 reinterpret_cast<uintptr_t>(C.data[1])));
242}
243
Douglas Gregor1adb0822010-01-16 17:14:40 +0000244CXCursor cxcursor::MakeCursorObjCClassRef(ObjCInterfaceDecl *Class,
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000245 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000246 CXTranslationUnit TU) {
Ted Kremenekebfa3392010-03-19 20:39:03 +0000247 // 'Class' can be null for invalid code.
248 if (!Class)
249 return MakeCXCursorInvalid(CXCursor_InvalidCode);
250 assert(TU && "Invalid arguments!");
Douglas Gregor1adb0822010-01-16 17:14:40 +0000251 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000252 CXCursor C = { CXCursor_ObjCClassRef, { Class, RawLoc, TU } };
Douglas Gregor1adb0822010-01-16 17:14:40 +0000253 return C;
254}
255
256std::pair<ObjCInterfaceDecl *, SourceLocation>
257cxcursor::getCursorObjCClassRef(CXCursor C) {
258 assert(C.kind == CXCursor_ObjCClassRef);
259 return std::make_pair(static_cast<ObjCInterfaceDecl *>(C.data[0]),
260 SourceLocation::getFromRawEncoding(
261 reinterpret_cast<uintptr_t>(C.data[1])));
262}
263
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000264CXCursor cxcursor::MakeCursorTypeRef(TypeDecl *Type, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000265 CXTranslationUnit TU) {
Daniel Dunbar54d67ca2010-01-25 00:40:30 +0000266 assert(Type && TU && "Invalid arguments!");
Douglas Gregor7d0d40e2010-01-21 16:28:34 +0000267 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
268 CXCursor C = { CXCursor_TypeRef, { Type, RawLoc, TU } };
269 return C;
270}
271
272std::pair<TypeDecl *, SourceLocation>
273cxcursor::getCursorTypeRef(CXCursor C) {
274 assert(C.kind == CXCursor_TypeRef);
275 return std::make_pair(static_cast<TypeDecl *>(C.data[0]),
276 SourceLocation::getFromRawEncoding(
277 reinterpret_cast<uintptr_t>(C.data[1])));
278}
279
Douglas Gregor0b36e612010-08-31 20:37:03 +0000280CXCursor cxcursor::MakeCursorTemplateRef(TemplateDecl *Template,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000281 SourceLocation Loc,
282 CXTranslationUnit TU) {
Douglas Gregor0b36e612010-08-31 20:37:03 +0000283 assert(Template && TU && "Invalid arguments!");
284 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
285 CXCursor C = { CXCursor_TemplateRef, { Template, RawLoc, TU } };
286 return C;
287}
288
289std::pair<TemplateDecl *, SourceLocation>
290cxcursor::getCursorTemplateRef(CXCursor C) {
291 assert(C.kind == CXCursor_TemplateRef);
292 return std::make_pair(static_cast<TemplateDecl *>(C.data[0]),
293 SourceLocation::getFromRawEncoding(
294 reinterpret_cast<uintptr_t>(C.data[1])));
295}
296
Douglas Gregor69319002010-08-31 23:48:11 +0000297CXCursor cxcursor::MakeCursorNamespaceRef(NamedDecl *NS, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000298 CXTranslationUnit TU) {
Douglas Gregor69319002010-08-31 23:48:11 +0000299
300 assert(NS && (isa<NamespaceDecl>(NS) || isa<NamespaceAliasDecl>(NS)) && TU &&
301 "Invalid arguments!");
302 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
303 CXCursor C = { CXCursor_NamespaceRef, { NS, RawLoc, TU } };
304 return C;
305}
306
307std::pair<NamedDecl *, SourceLocation>
308cxcursor::getCursorNamespaceRef(CXCursor C) {
309 assert(C.kind == CXCursor_NamespaceRef);
310 return std::make_pair(static_cast<NamedDecl *>(C.data[0]),
311 SourceLocation::getFromRawEncoding(
312 reinterpret_cast<uintptr_t>(C.data[1])));
313}
314
Douglas Gregora67e03f2010-09-09 21:42:20 +0000315CXCursor cxcursor::MakeCursorMemberRef(FieldDecl *Field, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000316 CXTranslationUnit TU) {
Douglas Gregora67e03f2010-09-09 21:42:20 +0000317
318 assert(Field && TU && "Invalid arguments!");
319 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
320 CXCursor C = { CXCursor_MemberRef, { Field, RawLoc, TU } };
321 return C;
322}
323
324std::pair<FieldDecl *, SourceLocation>
325cxcursor::getCursorMemberRef(CXCursor C) {
326 assert(C.kind == CXCursor_MemberRef);
327 return std::make_pair(static_cast<FieldDecl *>(C.data[0]),
328 SourceLocation::getFromRawEncoding(
329 reinterpret_cast<uintptr_t>(C.data[1])));
330}
331
Ted Kremeneka60ed472010-11-16 08:15:36 +0000332CXCursor cxcursor::MakeCursorCXXBaseSpecifier(CXXBaseSpecifier *B,
333 CXTranslationUnit TU){
Ted Kremenek3064ef92010-08-27 21:34:58 +0000334 CXCursor C = { CXCursor_CXXBaseSpecifier, { B, 0, TU } };
335 return C;
336}
337
338CXXBaseSpecifier *cxcursor::getCursorCXXBaseSpecifier(CXCursor C) {
339 assert(C.kind == CXCursor_CXXBaseSpecifier);
340 return static_cast<CXXBaseSpecifier*>(C.data[0]);
341}
342
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +0000343CXCursor cxcursor::MakePreprocessingDirectiveCursor(SourceRange Range,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000344 CXTranslationUnit TU) {
Douglas Gregor9f1e3ff2010-03-18 00:42:48 +0000345 CXCursor C = { CXCursor_PreprocessingDirective,
346 { reinterpret_cast<void *>(Range.getBegin().getRawEncoding()),
347 reinterpret_cast<void *>(Range.getEnd().getRawEncoding()),
348 TU }
349 };
350 return C;
351}
352
353SourceRange cxcursor::getCursorPreprocessingDirective(CXCursor C) {
354 assert(C.kind == CXCursor_PreprocessingDirective);
355 return SourceRange(SourceLocation::getFromRawEncoding(
356 reinterpret_cast<uintptr_t> (C.data[0])),
357 SourceLocation::getFromRawEncoding(
358 reinterpret_cast<uintptr_t> (C.data[1])));
359}
360
Ted Kremeneka60ed472010-11-16 08:15:36 +0000361CXCursor cxcursor::MakeMacroDefinitionCursor(MacroDefinition *MI,
362 CXTranslationUnit TU) {
Douglas Gregor572feb22010-03-18 18:04:21 +0000363 CXCursor C = { CXCursor_MacroDefinition, { MI, 0, TU } };
364 return C;
365}
366
367MacroDefinition *cxcursor::getCursorMacroDefinition(CXCursor C) {
368 assert(C.kind == CXCursor_MacroDefinition);
369 return static_cast<MacroDefinition *>(C.data[0]);
370}
371
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000372CXCursor cxcursor::MakeMacroInstantiationCursor(MacroInstantiation *MI,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000373 CXTranslationUnit TU) {
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000374 CXCursor C = { CXCursor_MacroInstantiation, { MI, 0, TU } };
Douglas Gregor48072312010-03-18 15:23:44 +0000375 return C;
376}
377
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000378MacroInstantiation *cxcursor::getCursorMacroInstantiation(CXCursor C) {
Douglas Gregor48072312010-03-18 15:23:44 +0000379 assert(C.kind == CXCursor_MacroInstantiation);
Douglas Gregor4ae8f292010-03-18 17:52:52 +0000380 return static_cast<MacroInstantiation *>(C.data[0]);
Douglas Gregor48072312010-03-18 15:23:44 +0000381}
382
Douglas Gregorecdcb882010-10-20 22:00:55 +0000383CXCursor cxcursor::MakeInclusionDirectiveCursor(InclusionDirective *ID,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000384 CXTranslationUnit TU) {
Douglas Gregorecdcb882010-10-20 22:00:55 +0000385 CXCursor C = { CXCursor_InclusionDirective, { ID, 0, TU } };
386 return C;
387}
388
389InclusionDirective *cxcursor::getCursorInclusionDirective(CXCursor C) {
390 assert(C.kind == CXCursor_InclusionDirective);
391 return static_cast<InclusionDirective *>(C.data[0]);
392}
393
Douglas Gregor36897b02010-09-10 00:22:18 +0000394CXCursor cxcursor::MakeCursorLabelRef(LabelStmt *Label, SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000395 CXTranslationUnit TU) {
Douglas Gregor36897b02010-09-10 00:22:18 +0000396
397 assert(Label && TU && "Invalid arguments!");
398 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
399 CXCursor C = { CXCursor_LabelRef, { Label, RawLoc, TU } };
400 return C;
401}
402
403std::pair<LabelStmt*, SourceLocation>
404cxcursor::getCursorLabelRef(CXCursor C) {
405 assert(C.kind == CXCursor_LabelRef);
406 return std::make_pair(static_cast<LabelStmt *>(C.data[0]),
407 SourceLocation::getFromRawEncoding(
408 reinterpret_cast<uintptr_t>(C.data[1])));
409}
410
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000411CXCursor cxcursor::MakeCursorOverloadedDeclRef(OverloadExpr *E,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000412 CXTranslationUnit TU) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000413 assert(E && TU && "Invalid arguments!");
414 OverloadedDeclRefStorage Storage(E);
415 void *RawLoc = reinterpret_cast<void *>(E->getNameLoc().getRawEncoding());
416 CXCursor C = {
417 CXCursor_OverloadedDeclRef,
418 { Storage.getOpaqueValue(), RawLoc, TU }
419 };
420 return C;
421}
422
423CXCursor cxcursor::MakeCursorOverloadedDeclRef(Decl *D,
424 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000425 CXTranslationUnit TU) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000426 assert(D && TU && "Invalid arguments!");
427 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
428 OverloadedDeclRefStorage Storage(D);
429 CXCursor C = {
430 CXCursor_OverloadedDeclRef,
431 { Storage.getOpaqueValue(), RawLoc, TU }
432 };
433 return C;
434}
435
436CXCursor cxcursor::MakeCursorOverloadedDeclRef(TemplateName Name,
437 SourceLocation Loc,
Ted Kremeneka60ed472010-11-16 08:15:36 +0000438 CXTranslationUnit TU) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000439 assert(Name.getAsOverloadedTemplate() && TU && "Invalid arguments!");
440 void *RawLoc = reinterpret_cast<void *>(Loc.getRawEncoding());
441 OverloadedDeclRefStorage Storage(Name.getAsOverloadedTemplate());
442 CXCursor C = {
443 CXCursor_OverloadedDeclRef,
444 { Storage.getOpaqueValue(), RawLoc, TU }
445 };
446 return C;
447}
448
449std::pair<cxcursor::OverloadedDeclRefStorage, SourceLocation>
450cxcursor::getCursorOverloadedDeclRef(CXCursor C) {
451 assert(C.kind == CXCursor_OverloadedDeclRef);
452 return std::make_pair(OverloadedDeclRefStorage::getFromOpaqueValue(C.data[0]),
453 SourceLocation::getFromRawEncoding(
454 reinterpret_cast<uintptr_t>(C.data[1])));
455}
456
Douglas Gregor283cae32010-01-15 21:56:13 +0000457Decl *cxcursor::getCursorDecl(CXCursor Cursor) {
458 return (Decl *)Cursor.data[0];
459}
460
461Expr *cxcursor::getCursorExpr(CXCursor Cursor) {
462 return dyn_cast_or_null<Expr>(getCursorStmt(Cursor));
463}
464
465Stmt *cxcursor::getCursorStmt(CXCursor Cursor) {
Douglas Gregor78db0cd2010-01-16 15:44:18 +0000466 if (Cursor.kind == CXCursor_ObjCSuperClassRef ||
Douglas Gregor1adb0822010-01-16 17:14:40 +0000467 Cursor.kind == CXCursor_ObjCProtocolRef ||
468 Cursor.kind == CXCursor_ObjCClassRef)
Douglas Gregor2e331b92010-01-16 14:00:32 +0000469 return 0;
470
Douglas Gregor283cae32010-01-15 21:56:13 +0000471 return (Stmt *)Cursor.data[1];
472}
473
Ted Kremenek95f33552010-08-26 01:42:22 +0000474Attr *cxcursor::getCursorAttr(CXCursor Cursor) {
475 return (Attr *)Cursor.data[1];
476}
477
Douglas Gregorf46034a2010-01-18 23:41:10 +0000478ASTContext &cxcursor::getCursorContext(CXCursor Cursor) {
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000479 return getCursorASTUnit(Cursor)->getASTContext();
480}
Douglas Gregorf46034a2010-01-18 23:41:10 +0000481
Douglas Gregorb2cd4872010-01-20 23:57:43 +0000482ASTUnit *cxcursor::getCursorASTUnit(CXCursor Cursor) {
Ted Kremeneka60ed472010-11-16 08:15:36 +0000483 return static_cast<ASTUnit *>(static_cast<CXTranslationUnit>(Cursor.data[2])
484 ->TUData);
485}
486
487CXTranslationUnit cxcursor::getCursorTU(CXCursor Cursor) {
488 return static_cast<CXTranslationUnit>(Cursor.data[2]);
Douglas Gregor283cae32010-01-15 21:56:13 +0000489}
490
Douglas Gregor283cae32010-01-15 21:56:13 +0000491bool cxcursor::operator==(CXCursor X, CXCursor Y) {
492 return X.kind == Y.kind && X.data[0] == Y.data[0] && X.data[1] == Y.data[1] &&
493 X.data[2] == Y.data[2];
Douglas Gregor2e331b92010-01-16 14:00:32 +0000494}
Ted Kremenek007a7c92010-11-01 23:26:51 +0000495
496// FIXME: Remove once we can model DeclGroups and their appropriate ranges
497// properly in the ASTs.
498bool cxcursor::isFirstInDeclGroup(CXCursor C) {
499 assert(clang_isDeclaration(C.kind));
500 return ((uintptr_t) (C.data[1])) != 0;
501}
502
Ted Kremenekeca099b2010-12-08 23:43:14 +0000503//===----------------------------------------------------------------------===//
504// CXCursorSet.
505//===----------------------------------------------------------------------===//
506
507typedef llvm::DenseMap<CXCursor, unsigned> CXCursorSet_Impl;
508
509static inline CXCursorSet packCXCursorSet(CXCursorSet_Impl *setImpl) {
510 return (CXCursorSet) setImpl;
511}
512static inline CXCursorSet_Impl *unpackCXCursorSet(CXCursorSet set) {
513 return (CXCursorSet_Impl*) set;
514}
515namespace llvm {
Ted Kremenekda6fb692010-12-09 00:33:41 +0000516template<> struct DenseMapInfo<CXCursor> {
Ted Kremenekeca099b2010-12-08 23:43:14 +0000517public:
518 static inline CXCursor getEmptyKey() {
519 return MakeCXCursorInvalid(CXCursor_InvalidFile);
520 }
521 static inline CXCursor getTombstoneKey() {
522 return MakeCXCursorInvalid(CXCursor_NoDeclFound);
523 }
524 static inline unsigned getHashValue(const CXCursor &cursor) {
525 return llvm::DenseMapInfo<std::pair<void*,void*> >
526 ::getHashValue(std::make_pair(cursor.data[0], cursor.data[1]));
527 }
528 static inline bool isEqual(const CXCursor &x, const CXCursor &y) {
529 return x.kind == y.kind &&
530 x.data[0] == y.data[0] &&
531 x.data[1] == y.data[1];
532 }
533};
534}
535
536extern "C" {
537CXCursorSet clang_createCXCursorSet() {
538 return packCXCursorSet(new CXCursorSet_Impl());
539}
540
541void clang_disposeCXCursorSet(CXCursorSet set) {
542 delete unpackCXCursorSet(set);
543}
544
545unsigned clang_CXCursorSet_contains(CXCursorSet set, CXCursor cursor) {
546 CXCursorSet_Impl *setImpl = unpackCXCursorSet(set);
547 if (!setImpl)
548 return 0;
549 return setImpl->find(cursor) == setImpl->end();
550}
551
Anders Carlssone8b3de02010-12-09 01:00:12 +0000552unsigned clang_CXCursorSet_insert(CXCursorSet set, CXCursor cursor) {
Ted Kremenekeca099b2010-12-08 23:43:14 +0000553 // Do not insert invalid cursors into the set.
554 if (cursor.kind >= CXCursor_FirstInvalid &&
555 cursor.kind <= CXCursor_LastInvalid)
556 return 1;
557
558 CXCursorSet_Impl *setImpl = unpackCXCursorSet(set);
559 if (!setImpl)
560 return 1;
561 unsigned &entry = (*setImpl)[cursor];
562 unsigned flag = entry == 0 ? 1 : 0;
563 entry = 1;
564 return flag;
565}
566} // end: extern "C"