blob: a5d4909e63c8e4045ca6100658ff29b59482fd65 [file] [log] [blame]
Steve Naroff2b8ee6c2009-09-01 15:55:40 +00001/* c-index-test.c */
Steve Naroff50398192009-08-28 15:28:48 +00002
3#include "clang-c/Index.h"
Douglas Gregor1e5e6682010-08-26 13:48:20 +00004#include <ctype.h>
Douglas Gregor0c8296d2009-11-07 00:00:49 +00005#include <stdlib.h>
Steve Naroff89922f82009-08-31 00:59:03 +00006#include <stdio.h>
Steve Naroffaf08ddc2009-09-03 15:49:00 +00007#include <string.h>
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00008#include <assert.h>
Steve Naroffaf08ddc2009-09-03 15:49:00 +00009
Ted Kremenek0d435192009-11-17 18:13:31 +000010/******************************************************************************/
11/* Utility functions. */
12/******************************************************************************/
13
John Thompson2e06fc82009-10-27 13:42:56 +000014#ifdef _MSC_VER
15char *basename(const char* path)
16{
17 char* base1 = (char*)strrchr(path, '/');
18 char* base2 = (char*)strrchr(path, '\\');
19 if (base1 && base2)
20 return((base1 > base2) ? base1 + 1 : base2 + 1);
21 else if (base1)
22 return(base1 + 1);
23 else if (base2)
24 return(base2 + 1);
25
26 return((char*)path);
27}
28#else
Steve Naroffff9e18c2009-09-24 20:03:06 +000029extern char *basename(const char *);
John Thompson2e06fc82009-10-27 13:42:56 +000030#endif
Steve Naroffff9e18c2009-09-24 20:03:06 +000031
Douglas Gregor45ba9a12010-07-25 17:39:21 +000032/** \brief Return the default parsing options. */
Douglas Gregor44c181a2010-07-23 00:33:23 +000033static unsigned getDefaultParsingOptions() {
34 unsigned options = CXTranslationUnit_DetailedPreprocessingRecord;
35
36 if (getenv("CINDEXTEST_EDITING"))
Douglas Gregorb1c031b2010-08-09 22:28:58 +000037 options |= clang_defaultEditingTranslationUnitOptions();
Douglas Gregor87c08a52010-08-13 22:48:40 +000038 if (getenv("CINDEXTEST_COMPLETION_CACHING"))
39 options |= CXTranslationUnit_CacheCompletionResults;
Douglas Gregordca8ee82011-05-06 16:33:08 +000040 if (getenv("CINDEXTEST_NESTED_MACROS"))
41 options |= CXTranslationUnit_NestedMacroInstantiations;
Douglas Gregor44c181a2010-07-23 00:33:23 +000042
43 return options;
44}
45
Daniel Dunbar51b058c2010-02-14 08:32:24 +000046static void PrintExtent(FILE *out, unsigned begin_line, unsigned begin_column,
47 unsigned end_line, unsigned end_column) {
48 fprintf(out, "[%d:%d - %d:%d]", begin_line, begin_column,
Daniel Dunbard52864b2010-02-14 10:02:57 +000049 end_line, end_column);
Daniel Dunbar51b058c2010-02-14 08:32:24 +000050}
51
Ted Kremenek1c6da172009-11-17 19:37:36 +000052static unsigned CreateTranslationUnit(CXIndex Idx, const char *file,
53 CXTranslationUnit *TU) {
Ted Kremeneke68fff62010-02-17 00:41:32 +000054
Douglas Gregora88084b2010-02-18 18:08:43 +000055 *TU = clang_createTranslationUnit(Idx, file);
Dan Gohman6be2a222010-07-26 21:44:15 +000056 if (!*TU) {
Ted Kremenek1c6da172009-11-17 19:37:36 +000057 fprintf(stderr, "Unable to load translation unit from '%s'!\n", file);
58 return 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +000059 }
Ted Kremenek1c6da172009-11-17 19:37:36 +000060 return 1;
61}
62
Douglas Gregor4db64a42010-01-23 00:14:00 +000063void free_remapped_files(struct CXUnsavedFile *unsaved_files,
64 int num_unsaved_files) {
65 int i;
66 for (i = 0; i != num_unsaved_files; ++i) {
67 free((char *)unsaved_files[i].Filename);
68 free((char *)unsaved_files[i].Contents);
69 }
Douglas Gregor653a55f2010-08-19 20:50:29 +000070 free(unsaved_files);
Douglas Gregor4db64a42010-01-23 00:14:00 +000071}
72
73int parse_remapped_files(int argc, const char **argv, int start_arg,
74 struct CXUnsavedFile **unsaved_files,
75 int *num_unsaved_files) {
76 int i;
77 int arg;
78 int prefix_len = strlen("-remap-file=");
79 *unsaved_files = 0;
80 *num_unsaved_files = 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +000081
Douglas Gregor4db64a42010-01-23 00:14:00 +000082 /* Count the number of remapped files. */
83 for (arg = start_arg; arg < argc; ++arg) {
84 if (strncmp(argv[arg], "-remap-file=", prefix_len))
85 break;
Ted Kremeneke68fff62010-02-17 00:41:32 +000086
Douglas Gregor4db64a42010-01-23 00:14:00 +000087 ++*num_unsaved_files;
88 }
Ted Kremeneke68fff62010-02-17 00:41:32 +000089
Douglas Gregor4db64a42010-01-23 00:14:00 +000090 if (*num_unsaved_files == 0)
91 return 0;
Ted Kremeneke68fff62010-02-17 00:41:32 +000092
Douglas Gregor4db64a42010-01-23 00:14:00 +000093 *unsaved_files
Douglas Gregor653a55f2010-08-19 20:50:29 +000094 = (struct CXUnsavedFile *)malloc(sizeof(struct CXUnsavedFile) *
95 *num_unsaved_files);
Douglas Gregor4db64a42010-01-23 00:14:00 +000096 for (arg = start_arg, i = 0; i != *num_unsaved_files; ++i, ++arg) {
97 struct CXUnsavedFile *unsaved = *unsaved_files + i;
98 const char *arg_string = argv[arg] + prefix_len;
99 int filename_len;
100 char *filename;
101 char *contents;
102 FILE *to_file;
103 const char *semi = strchr(arg_string, ';');
104 if (!semi) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000105 fprintf(stderr,
Douglas Gregor4db64a42010-01-23 00:14:00 +0000106 "error: -remap-file=from;to argument is missing semicolon\n");
107 free_remapped_files(*unsaved_files, i);
108 *unsaved_files = 0;
109 *num_unsaved_files = 0;
110 return -1;
111 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000112
Douglas Gregor4db64a42010-01-23 00:14:00 +0000113 /* Open the file that we're remapping to. */
Francois Pichetc44fe4b2010-10-12 01:01:43 +0000114 to_file = fopen(semi + 1, "rb");
Douglas Gregor4db64a42010-01-23 00:14:00 +0000115 if (!to_file) {
116 fprintf(stderr, "error: cannot open file %s that we are remapping to\n",
117 semi + 1);
118 free_remapped_files(*unsaved_files, i);
119 *unsaved_files = 0;
120 *num_unsaved_files = 0;
121 return -1;
122 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000123
Douglas Gregor4db64a42010-01-23 00:14:00 +0000124 /* Determine the length of the file we're remapping to. */
125 fseek(to_file, 0, SEEK_END);
126 unsaved->Length = ftell(to_file);
127 fseek(to_file, 0, SEEK_SET);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000128
Douglas Gregor4db64a42010-01-23 00:14:00 +0000129 /* Read the contents of the file we're remapping to. */
130 contents = (char *)malloc(unsaved->Length + 1);
131 if (fread(contents, 1, unsaved->Length, to_file) != unsaved->Length) {
132 fprintf(stderr, "error: unexpected %s reading 'to' file %s\n",
133 (feof(to_file) ? "EOF" : "error"), semi + 1);
134 fclose(to_file);
135 free_remapped_files(*unsaved_files, i);
136 *unsaved_files = 0;
137 *num_unsaved_files = 0;
138 return -1;
139 }
140 contents[unsaved->Length] = 0;
141 unsaved->Contents = contents;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000142
Douglas Gregor4db64a42010-01-23 00:14:00 +0000143 /* Close the file. */
144 fclose(to_file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000145
Douglas Gregor4db64a42010-01-23 00:14:00 +0000146 /* Copy the file name that we're remapping from. */
147 filename_len = semi - arg_string;
148 filename = (char *)malloc(filename_len + 1);
149 memcpy(filename, arg_string, filename_len);
150 filename[filename_len] = 0;
151 unsaved->Filename = filename;
152 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000153
Douglas Gregor4db64a42010-01-23 00:14:00 +0000154 return 0;
155}
156
Ted Kremenek0d435192009-11-17 18:13:31 +0000157/******************************************************************************/
158/* Pretty-printing. */
159/******************************************************************************/
160
Douglas Gregor358559d2010-10-02 22:49:11 +0000161int want_display_name = 0;
162
Douglas Gregordd3e5542011-05-04 00:14:37 +0000163static void PrintCursor(CXTranslationUnit TU, CXCursor Cursor) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000164 if (clang_isInvalid(Cursor.kind)) {
165 CXString ks = clang_getCursorKindSpelling(Cursor.kind);
166 printf("Invalid Cursor => %s", clang_getCString(ks));
167 clang_disposeString(ks);
168 }
Steve Naroff699a07d2009-09-25 21:32:34 +0000169 else {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000170 CXString string, ks;
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000171 CXCursor Referenced;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000172 unsigned line, column;
Douglas Gregore0329ac2010-09-02 00:07:54 +0000173 CXCursor SpecializationOf;
Douglas Gregor9f592342010-10-01 20:25:15 +0000174 CXCursor *overridden;
175 unsigned num_overridden;
176
Ted Kremeneke68fff62010-02-17 00:41:32 +0000177 ks = clang_getCursorKindSpelling(Cursor.kind);
Douglas Gregor358559d2010-10-02 22:49:11 +0000178 string = want_display_name? clang_getCursorDisplayName(Cursor)
179 : clang_getCursorSpelling(Cursor);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000180 printf("%s=%s", clang_getCString(ks),
181 clang_getCString(string));
182 clang_disposeString(ks);
Steve Naroffef0cef62009-11-09 17:45:52 +0000183 clang_disposeString(string);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000184
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000185 Referenced = clang_getCursorReferenced(Cursor);
186 if (!clang_equalCursors(Referenced, clang_getNullCursor())) {
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000187 if (clang_getCursorKind(Referenced) == CXCursor_OverloadedDeclRef) {
188 unsigned I, N = clang_getNumOverloadedDecls(Referenced);
189 printf("[");
190 for (I = 0; I != N; ++I) {
191 CXCursor Ovl = clang_getOverloadedDecl(Referenced, I);
Douglas Gregor1f6206e2010-09-14 00:20:32 +0000192 CXSourceLocation Loc;
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000193 if (I)
194 printf(", ");
195
Douglas Gregor1f6206e2010-09-14 00:20:32 +0000196 Loc = clang_getCursorLocation(Ovl);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000197 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000198 printf("%d:%d", line, column);
199 }
200 printf("]");
201 } else {
202 CXSourceLocation Loc = clang_getCursorLocation(Referenced);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000203 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregor1f60d9e2010-09-13 22:52:57 +0000204 printf(":%d:%d", line, column);
205 }
Douglas Gregorc5d1e932010-01-19 01:20:04 +0000206 }
Douglas Gregorb6998662010-01-19 19:34:47 +0000207
208 if (clang_isCursorDefinition(Cursor))
209 printf(" (Definition)");
Douglas Gregor58ddb602010-08-23 23:00:57 +0000210
211 switch (clang_getCursorAvailability(Cursor)) {
212 case CXAvailability_Available:
213 break;
214
215 case CXAvailability_Deprecated:
216 printf(" (deprecated)");
217 break;
218
219 case CXAvailability_NotAvailable:
220 printf(" (unavailable)");
221 break;
222 }
Ted Kremenek95f33552010-08-26 01:42:22 +0000223
224 if (Cursor.kind == CXCursor_IBOutletCollectionAttr) {
225 CXType T =
226 clang_getCanonicalType(clang_getIBOutletCollectionType(Cursor));
227 CXString S = clang_getTypeKindSpelling(T.kind);
228 printf(" [IBOutletCollection=%s]", clang_getCString(S));
229 clang_disposeString(S);
230 }
Ted Kremenek3064ef92010-08-27 21:34:58 +0000231
232 if (Cursor.kind == CXCursor_CXXBaseSpecifier) {
233 enum CX_CXXAccessSpecifier access = clang_getCXXAccessSpecifier(Cursor);
234 unsigned isVirtual = clang_isVirtualBase(Cursor);
235 const char *accessStr = 0;
236
237 switch (access) {
238 case CX_CXXInvalidAccessSpecifier:
239 accessStr = "invalid"; break;
240 case CX_CXXPublic:
241 accessStr = "public"; break;
242 case CX_CXXProtected:
243 accessStr = "protected"; break;
244 case CX_CXXPrivate:
245 accessStr = "private"; break;
246 }
247
248 printf(" [access=%s isVirtual=%s]", accessStr,
249 isVirtual ? "true" : "false");
250 }
Douglas Gregore0329ac2010-09-02 00:07:54 +0000251
252 SpecializationOf = clang_getSpecializedCursorTemplate(Cursor);
253 if (!clang_equalCursors(SpecializationOf, clang_getNullCursor())) {
254 CXSourceLocation Loc = clang_getCursorLocation(SpecializationOf);
255 CXString Name = clang_getCursorSpelling(SpecializationOf);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000256 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregore0329ac2010-09-02 00:07:54 +0000257 printf(" [Specialization of %s:%d:%d]",
258 clang_getCString(Name), line, column);
259 clang_disposeString(Name);
260 }
Douglas Gregor9f592342010-10-01 20:25:15 +0000261
262 clang_getOverriddenCursors(Cursor, &overridden, &num_overridden);
263 if (num_overridden) {
264 unsigned I;
265 printf(" [Overrides ");
266 for (I = 0; I != num_overridden; ++I) {
267 CXSourceLocation Loc = clang_getCursorLocation(overridden[I]);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000268 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Douglas Gregor9f592342010-10-01 20:25:15 +0000269 if (I)
270 printf(", ");
271 printf("@%d:%d", line, column);
272 }
273 printf("]");
274 clang_disposeOverriddenCursors(overridden);
275 }
Douglas Gregorecdcb882010-10-20 22:00:55 +0000276
277 if (Cursor.kind == CXCursor_InclusionDirective) {
278 CXFile File = clang_getIncludedFile(Cursor);
279 CXString Included = clang_getFileName(File);
280 printf(" (%s)", clang_getCString(Included));
281 clang_disposeString(Included);
Douglas Gregordd3e5542011-05-04 00:14:37 +0000282
283 if (clang_isFileMultipleIncludeGuarded(TU, File))
284 printf(" [multi-include guarded]");
Douglas Gregorecdcb882010-10-20 22:00:55 +0000285 }
Steve Naroff699a07d2009-09-25 21:32:34 +0000286 }
Steve Naroffaf08ddc2009-09-03 15:49:00 +0000287}
Steve Naroff89922f82009-08-31 00:59:03 +0000288
Ted Kremeneke68fff62010-02-17 00:41:32 +0000289static const char* GetCursorSource(CXCursor Cursor) {
Douglas Gregor1db19de2010-01-19 21:36:55 +0000290 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Ted Kremenek74844072010-02-17 00:41:20 +0000291 CXString source;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000292 CXFile file;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000293 clang_getSpellingLocation(Loc, &file, 0, 0, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000294 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000295 if (!clang_getCString(source)) {
Ted Kremenek74844072010-02-17 00:41:20 +0000296 clang_disposeString(source);
297 return "<invalid loc>";
298 }
299 else {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000300 const char *b = basename(clang_getCString(source));
Ted Kremenek74844072010-02-17 00:41:20 +0000301 clang_disposeString(source);
302 return b;
303 }
Ted Kremenek9298cfc2009-11-17 05:31:58 +0000304}
305
Ted Kremenek0d435192009-11-17 18:13:31 +0000306/******************************************************************************/
Ted Kremenekce2ae882010-01-26 17:59:48 +0000307/* Callbacks. */
308/******************************************************************************/
309
310typedef void (*PostVisitTU)(CXTranslationUnit);
311
Douglas Gregora88084b2010-02-18 18:08:43 +0000312void PrintDiagnostic(CXDiagnostic Diagnostic) {
313 FILE *out = stderr;
Douglas Gregor5352ac02010-01-28 00:27:43 +0000314 CXFile file;
Douglas Gregor274f1902010-02-22 23:17:23 +0000315 CXString Msg;
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000316 unsigned display_opts = CXDiagnostic_DisplaySourceLocation
Douglas Gregoraa5f1352010-11-19 16:18:16 +0000317 | CXDiagnostic_DisplayColumn | CXDiagnostic_DisplaySourceRanges
318 | CXDiagnostic_DisplayOption;
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000319 unsigned i, num_fixits;
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000320
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000321 if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored)
Douglas Gregor5352ac02010-01-28 00:27:43 +0000322 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000323
Douglas Gregor274f1902010-02-22 23:17:23 +0000324 Msg = clang_formatDiagnostic(Diagnostic, display_opts);
325 fprintf(stderr, "%s\n", clang_getCString(Msg));
326 clang_disposeString(Msg);
Ted Kremenekf7b714d2010-03-25 02:00:39 +0000327
Douglas Gregora9b06d42010-11-09 06:24:54 +0000328 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
329 &file, 0, 0, 0);
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000330 if (!file)
331 return;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000332
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000333 num_fixits = clang_getDiagnosticNumFixIts(Diagnostic);
334 for (i = 0; i != num_fixits; ++i) {
Douglas Gregor473d7012010-02-19 18:16:06 +0000335 CXSourceRange range;
336 CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range);
337 CXSourceLocation start = clang_getRangeStart(range);
338 CXSourceLocation end = clang_getRangeEnd(range);
339 unsigned start_line, start_column, end_line, end_column;
340 CXFile start_file, end_file;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000341 clang_getSpellingLocation(start, &start_file, &start_line,
342 &start_column, 0);
343 clang_getSpellingLocation(end, &end_file, &end_line, &end_column, 0);
Douglas Gregor473d7012010-02-19 18:16:06 +0000344 if (clang_equalLocations(start, end)) {
345 /* Insertion. */
346 if (start_file == file)
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000347 fprintf(out, "FIX-IT: Insert \"%s\" at %d:%d\n",
Douglas Gregor473d7012010-02-19 18:16:06 +0000348 clang_getCString(insertion_text), start_line, start_column);
349 } else if (strcmp(clang_getCString(insertion_text), "") == 0) {
350 /* Removal. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000351 if (start_file == file && end_file == file) {
352 fprintf(out, "FIX-IT: Remove ");
353 PrintExtent(out, start_line, start_column, end_line, end_column);
354 fprintf(out, "\n");
Douglas Gregor51c6d382010-01-29 00:41:11 +0000355 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000356 } else {
357 /* Replacement. */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000358 if (start_file == end_file) {
359 fprintf(out, "FIX-IT: Replace ");
360 PrintExtent(out, start_line, start_column, end_line, end_column);
Douglas Gregor473d7012010-02-19 18:16:06 +0000361 fprintf(out, " with \"%s\"\n", clang_getCString(insertion_text));
Douglas Gregor436f3f02010-02-18 22:27:07 +0000362 }
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000363 break;
364 }
Douglas Gregor473d7012010-02-19 18:16:06 +0000365 clang_disposeString(insertion_text);
Douglas Gregor51c6d382010-01-29 00:41:11 +0000366 }
Douglas Gregor5352ac02010-01-28 00:27:43 +0000367}
368
Douglas Gregora88084b2010-02-18 18:08:43 +0000369void PrintDiagnostics(CXTranslationUnit TU) {
370 int i, n = clang_getNumDiagnostics(TU);
371 for (i = 0; i != n; ++i) {
372 CXDiagnostic Diag = clang_getDiagnostic(TU, i);
373 PrintDiagnostic(Diag);
374 clang_disposeDiagnostic(Diag);
375 }
376}
377
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000378void PrintMemoryUsage(CXTranslationUnit TU) {
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000379 unsigned long total = 0.0;
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000380 unsigned i = 0;
Ted Kremenekf7870022011-04-20 16:41:07 +0000381 CXTUResourceUsage usage = clang_getCXTUResourceUsage(TU);
Francois Pichet3c683362011-04-18 23:33:22 +0000382 fprintf(stderr, "Memory usage:\n");
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000383 for (i = 0 ; i != usage.numEntries; ++i) {
Ted Kremenekf7870022011-04-20 16:41:07 +0000384 const char *name = clang_getTUResourceUsageName(usage.entries[i].kind);
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000385 unsigned long amount = usage.entries[i].amount;
386 total += amount;
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000387 fprintf(stderr, " %s : %ld bytes (%f MBytes)\n", name, amount,
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000388 ((double) amount)/(1024*1024));
389 }
Ted Kremenek4e6a3f72011-04-18 23:42:53 +0000390 fprintf(stderr, " TOTAL = %ld bytes (%f MBytes)\n", total,
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000391 ((double) total)/(1024*1024));
Ted Kremenekf7870022011-04-20 16:41:07 +0000392 clang_disposeCXTUResourceUsage(usage);
Ted Kremenek59fc1e52011-04-18 22:47:10 +0000393}
394
Ted Kremenekce2ae882010-01-26 17:59:48 +0000395/******************************************************************************/
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000396/* Logic for testing traversal. */
Ted Kremenek0d435192009-11-17 18:13:31 +0000397/******************************************************************************/
398
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000399static const char *FileCheckPrefix = "CHECK";
400
Douglas Gregora7bde202010-01-19 00:34:46 +0000401static void PrintCursorExtent(CXCursor C) {
402 CXSourceRange extent = clang_getCursorExtent(C);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000403 CXFile begin_file, end_file;
404 unsigned begin_line, begin_column, end_line, end_column;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000405
Douglas Gregora9b06d42010-11-09 06:24:54 +0000406 clang_getSpellingLocation(clang_getRangeStart(extent),
407 &begin_file, &begin_line, &begin_column, 0);
408 clang_getSpellingLocation(clang_getRangeEnd(extent),
409 &end_file, &end_line, &end_column, 0);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000410 if (!begin_file || !end_file)
Ted Kremenek70ee5422010-01-16 01:44:12 +0000411 return;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000412
Daniel Dunbar51b058c2010-02-14 08:32:24 +0000413 printf(" Extent=");
414 PrintExtent(stdout, begin_line, begin_column, end_line, end_column);
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000415}
416
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000417/* Data used by all of the visitors. */
418typedef struct {
419 CXTranslationUnit TU;
420 enum CXCursorKind *Filter;
421} VisitorData;
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000422
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000423
Ted Kremeneke68fff62010-02-17 00:41:32 +0000424enum CXChildVisitResult FilteredPrintingVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000425 CXCursor Parent,
426 CXClientData ClientData) {
427 VisitorData *Data = (VisitorData *)ClientData;
428 if (!Data->Filter || (Cursor.kind == *(enum CXCursorKind *)Data->Filter)) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000429 CXSourceLocation Loc = clang_getCursorLocation(Cursor);
Douglas Gregor1db19de2010-01-19 21:36:55 +0000430 unsigned line, column;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000431 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000432 printf("// %s: %s:%d:%d: ", FileCheckPrefix,
Douglas Gregor1db19de2010-01-19 21:36:55 +0000433 GetCursorSource(Cursor), line, column);
Douglas Gregordd3e5542011-05-04 00:14:37 +0000434 PrintCursor(Data->TU, Cursor);
Douglas Gregora7bde202010-01-19 00:34:46 +0000435 PrintCursorExtent(Cursor);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000436 printf("\n");
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000437 return CXChildVisit_Recurse;
Steve Naroff2d4d6292009-08-31 14:26:51 +0000438 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000439
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000440 return CXChildVisit_Continue;
Steve Naroff89922f82009-08-31 00:59:03 +0000441}
Steve Naroff50398192009-08-28 15:28:48 +0000442
Ted Kremeneke68fff62010-02-17 00:41:32 +0000443static enum CXChildVisitResult FunctionScanVisitor(CXCursor Cursor,
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000444 CXCursor Parent,
445 CXClientData ClientData) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000446 const char *startBuf, *endBuf;
447 unsigned startLine, startColumn, endLine, endColumn, curLine, curColumn;
448 CXCursor Ref;
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000449 VisitorData *Data = (VisitorData *)ClientData;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000450
Douglas Gregorb6998662010-01-19 19:34:47 +0000451 if (Cursor.kind != CXCursor_FunctionDecl ||
452 !clang_isCursorDefinition(Cursor))
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000453 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000454
455 clang_getDefinitionSpellingAndExtent(Cursor, &startBuf, &endBuf,
456 &startLine, &startColumn,
457 &endLine, &endColumn);
458 /* Probe the entire body, looking for both decls and refs. */
459 curLine = startLine;
460 curColumn = startColumn;
461
462 while (startBuf < endBuf) {
Douglas Gregor98258af2010-01-18 22:46:11 +0000463 CXSourceLocation Loc;
Douglas Gregor1db19de2010-01-19 21:36:55 +0000464 CXFile file;
Ted Kremenek74844072010-02-17 00:41:20 +0000465 CXString source;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000466
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000467 if (*startBuf == '\n') {
468 startBuf++;
469 curLine++;
470 curColumn = 1;
471 } else if (*startBuf != '\t')
472 curColumn++;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000473
Douglas Gregor98258af2010-01-18 22:46:11 +0000474 Loc = clang_getCursorLocation(Cursor);
Douglas Gregora9b06d42010-11-09 06:24:54 +0000475 clang_getSpellingLocation(Loc, &file, 0, 0, 0);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000476
Douglas Gregor1db19de2010-01-19 21:36:55 +0000477 source = clang_getFileName(file);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000478 if (clang_getCString(source)) {
Douglas Gregorb9790342010-01-22 21:44:22 +0000479 CXSourceLocation RefLoc
480 = clang_getLocation(Data->TU, file, curLine, curColumn);
481 Ref = clang_getCursor(Data->TU, RefLoc);
Douglas Gregor98258af2010-01-18 22:46:11 +0000482 if (Ref.kind == CXCursor_NoDeclFound) {
483 /* Nothing found here; that's fine. */
484 } else if (Ref.kind != CXCursor_FunctionDecl) {
485 printf("// %s: %s:%d:%d: ", FileCheckPrefix, GetCursorSource(Ref),
486 curLine, curColumn);
Douglas Gregordd3e5542011-05-04 00:14:37 +0000487 PrintCursor(Data->TU, Ref);
Douglas Gregor98258af2010-01-18 22:46:11 +0000488 printf("\n");
489 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000490 }
Ted Kremenek74844072010-02-17 00:41:20 +0000491 clang_disposeString(source);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000492 startBuf++;
493 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000494
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000495 return CXChildVisit_Continue;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000496}
497
Ted Kremenek7d405622010-01-12 23:34:26 +0000498/******************************************************************************/
499/* USR testing. */
500/******************************************************************************/
501
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000502enum CXChildVisitResult USRVisitor(CXCursor C, CXCursor parent,
503 CXClientData ClientData) {
504 VisitorData *Data = (VisitorData *)ClientData;
505 if (!Data->Filter || (C.kind == *(enum CXCursorKind *)Data->Filter)) {
Ted Kremenekcf84aa42010-01-18 20:23:29 +0000506 CXString USR = clang_getCursorUSR(C);
Ted Kremeneke542f772010-04-20 23:15:40 +0000507 const char *cstr = clang_getCString(USR);
508 if (!cstr || cstr[0] == '\0') {
Ted Kremenek7d405622010-01-12 23:34:26 +0000509 clang_disposeString(USR);
Ted Kremeneke74ef122010-04-16 21:31:52 +0000510 return CXChildVisit_Recurse;
Ted Kremenek7d405622010-01-12 23:34:26 +0000511 }
Ted Kremeneke542f772010-04-20 23:15:40 +0000512 printf("// %s: %s %s", FileCheckPrefix, GetCursorSource(C), cstr);
513
Douglas Gregora7bde202010-01-19 00:34:46 +0000514 PrintCursorExtent(C);
Ted Kremenek7d405622010-01-12 23:34:26 +0000515 printf("\n");
516 clang_disposeString(USR);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000517
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000518 return CXChildVisit_Recurse;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000519 }
520
Douglas Gregore5b72ba2010-01-20 21:32:04 +0000521 return CXChildVisit_Continue;
Ted Kremenek7d405622010-01-12 23:34:26 +0000522}
523
524/******************************************************************************/
Ted Kremenek16b55a72010-01-26 19:31:51 +0000525/* Inclusion stack testing. */
526/******************************************************************************/
527
528void InclusionVisitor(CXFile includedFile, CXSourceLocation *includeStack,
529 unsigned includeStackLen, CXClientData data) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000530
Ted Kremenek16b55a72010-01-26 19:31:51 +0000531 unsigned i;
Ted Kremenek74844072010-02-17 00:41:20 +0000532 CXString fname;
533
534 fname = clang_getFileName(includedFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000535 printf("file: %s\nincluded by:\n", clang_getCString(fname));
Ted Kremenek74844072010-02-17 00:41:20 +0000536 clang_disposeString(fname);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000537
Ted Kremenek16b55a72010-01-26 19:31:51 +0000538 for (i = 0; i < includeStackLen; ++i) {
539 CXFile includingFile;
540 unsigned line, column;
Douglas Gregora9b06d42010-11-09 06:24:54 +0000541 clang_getSpellingLocation(includeStack[i], &includingFile, &line,
542 &column, 0);
Ted Kremenek74844072010-02-17 00:41:20 +0000543 fname = clang_getFileName(includingFile);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000544 printf(" %s:%d:%d\n", clang_getCString(fname), line, column);
Ted Kremenek74844072010-02-17 00:41:20 +0000545 clang_disposeString(fname);
Ted Kremenek16b55a72010-01-26 19:31:51 +0000546 }
547 printf("\n");
548}
549
550void PrintInclusionStack(CXTranslationUnit TU) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000551 clang_getInclusions(TU, InclusionVisitor, NULL);
Ted Kremenek16b55a72010-01-26 19:31:51 +0000552}
553
554/******************************************************************************/
Ted Kremenek3bed5272010-03-03 06:37:58 +0000555/* Linkage testing. */
556/******************************************************************************/
557
558static enum CXChildVisitResult PrintLinkage(CXCursor cursor, CXCursor p,
559 CXClientData d) {
560 const char *linkage = 0;
561
Douglas Gregordd3e5542011-05-04 00:14:37 +0000562 VisitorData *Data = (VisitorData *)d;
563
Ted Kremenek3bed5272010-03-03 06:37:58 +0000564 if (clang_isInvalid(clang_getCursorKind(cursor)))
565 return CXChildVisit_Recurse;
566
567 switch (clang_getCursorLinkage(cursor)) {
568 case CXLinkage_Invalid: break;
Douglas Gregorc2a2b3c2010-03-04 19:36:27 +0000569 case CXLinkage_NoLinkage: linkage = "NoLinkage"; break;
570 case CXLinkage_Internal: linkage = "Internal"; break;
571 case CXLinkage_UniqueExternal: linkage = "UniqueExternal"; break;
572 case CXLinkage_External: linkage = "External"; break;
Ted Kremenek3bed5272010-03-03 06:37:58 +0000573 }
574
575 if (linkage) {
Douglas Gregordd3e5542011-05-04 00:14:37 +0000576 PrintCursor(Data->TU, cursor);
Ted Kremenek3bed5272010-03-03 06:37:58 +0000577 printf("linkage=%s\n", linkage);
578 }
579
580 return CXChildVisit_Recurse;
581}
582
583/******************************************************************************/
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000584/* Typekind testing. */
585/******************************************************************************/
586
587static enum CXChildVisitResult PrintTypeKind(CXCursor cursor, CXCursor p,
588 CXClientData d) {
Douglas Gregordd3e5542011-05-04 00:14:37 +0000589 VisitorData *Data = (VisitorData *)d;
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000590
591 if (!clang_isInvalid(clang_getCursorKind(cursor))) {
592 CXType T = clang_getCursorType(cursor);
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000593 CXString S = clang_getTypeKindSpelling(T.kind);
Douglas Gregordd3e5542011-05-04 00:14:37 +0000594 PrintCursor(Data->TU, cursor);
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000595 printf(" typekind=%s", clang_getCString(S));
Douglas Gregore72fb6f2011-01-27 16:27:11 +0000596 if (clang_isConstQualifiedType(T))
597 printf(" const");
598 if (clang_isVolatileQualifiedType(T))
599 printf(" volatile");
600 if (clang_isRestrictQualifiedType(T))
601 printf(" restrict");
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000602 clang_disposeString(S);
Benjamin Kramere1403d22010-06-22 09:29:44 +0000603 /* Print the canonical type if it is different. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +0000604 {
605 CXType CT = clang_getCanonicalType(T);
606 if (!clang_equalTypes(T, CT)) {
607 CXString CS = clang_getTypeKindSpelling(CT.kind);
608 printf(" [canonical=%s]", clang_getCString(CS));
609 clang_disposeString(CS);
610 }
611 }
Benjamin Kramere1403d22010-06-22 09:29:44 +0000612 /* Print the return type if it exists. */
Ted Kremenek04c3cf32010-06-21 20:15:39 +0000613 {
Ted Kremenek9a140842010-06-21 20:48:56 +0000614 CXType RT = clang_getCursorResultType(cursor);
Ted Kremenek04c3cf32010-06-21 20:15:39 +0000615 if (RT.kind != CXType_Invalid) {
616 CXString RS = clang_getTypeKindSpelling(RT.kind);
617 printf(" [result=%s]", clang_getCString(RS));
618 clang_disposeString(RS);
619 }
620 }
Ted Kremenek3ce9e7d2010-07-30 00:14:11 +0000621 /* Print if this is a non-POD type. */
622 printf(" [isPOD=%d]", clang_isPODType(T));
Ted Kremenek04c3cf32010-06-21 20:15:39 +0000623
Ted Kremenek8e0ac172010-05-14 21:29:26 +0000624 printf("\n");
625 }
626 return CXChildVisit_Recurse;
627}
628
629
630/******************************************************************************/
Ted Kremenek7d405622010-01-12 23:34:26 +0000631/* Loading ASTs/source. */
632/******************************************************************************/
633
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000634static int perform_test_load(CXIndex Idx, CXTranslationUnit TU,
Ted Kremenek98271562010-01-12 18:53:15 +0000635 const char *filter, const char *prefix,
Ted Kremenekce2ae882010-01-26 17:59:48 +0000636 CXCursorVisitor Visitor,
637 PostVisitTU PV) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000638
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000639 if (prefix)
Ted Kremeneke68fff62010-02-17 00:41:32 +0000640 FileCheckPrefix = prefix;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000641
642 if (Visitor) {
643 enum CXCursorKind K = CXCursor_NotImplemented;
644 enum CXCursorKind *ck = &K;
645 VisitorData Data;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000646
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000647 /* Perform some simple filtering. */
648 if (!strcmp(filter, "all") || !strcmp(filter, "local")) ck = NULL;
Douglas Gregor358559d2010-10-02 22:49:11 +0000649 else if (!strcmp(filter, "all-display") ||
650 !strcmp(filter, "local-display")) {
651 ck = NULL;
652 want_display_name = 1;
653 }
Daniel Dunbarb1ffee62010-02-10 20:42:40 +0000654 else if (!strcmp(filter, "none")) K = (enum CXCursorKind) ~0;
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000655 else if (!strcmp(filter, "category")) K = CXCursor_ObjCCategoryDecl;
656 else if (!strcmp(filter, "interface")) K = CXCursor_ObjCInterfaceDecl;
657 else if (!strcmp(filter, "protocol")) K = CXCursor_ObjCProtocolDecl;
658 else if (!strcmp(filter, "function")) K = CXCursor_FunctionDecl;
659 else if (!strcmp(filter, "typedef")) K = CXCursor_TypedefDecl;
660 else if (!strcmp(filter, "scan-function")) Visitor = FunctionScanVisitor;
661 else {
662 fprintf(stderr, "Unknown filter for -test-load-tu: %s\n", filter);
663 return 1;
664 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000665
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000666 Data.TU = TU;
667 Data.Filter = ck;
668 clang_visitChildren(clang_getTranslationUnitCursor(TU), Visitor, &Data);
Ted Kremenek0d435192009-11-17 18:13:31 +0000669 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000670
Ted Kremenekce2ae882010-01-26 17:59:48 +0000671 if (PV)
672 PV(TU);
Ted Kremeneke3ee02a2010-01-26 17:55:33 +0000673
Douglas Gregora88084b2010-02-18 18:08:43 +0000674 PrintDiagnostics(TU);
Ted Kremenek0d435192009-11-17 18:13:31 +0000675 clang_disposeTranslationUnit(TU);
676 return 0;
677}
678
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +0000679int perform_test_load_tu(const char *file, const char *filter,
Ted Kremenekce2ae882010-01-26 17:59:48 +0000680 const char *prefix, CXCursorVisitor Visitor,
681 PostVisitTU PV) {
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000682 CXIndex Idx;
683 CXTranslationUnit TU;
Ted Kremenek020a0952010-02-11 07:41:25 +0000684 int result;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000685 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000686 !strcmp(filter, "local") ? 1 : 0,
687 /* displayDiagnosics=*/1);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000688
Ted Kremenek020a0952010-02-11 07:41:25 +0000689 if (!CreateTranslationUnit(Idx, file, &TU)) {
690 clang_disposeIndex(Idx);
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000691 return 1;
Ted Kremenek020a0952010-02-11 07:41:25 +0000692 }
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000693
Ted Kremenek020a0952010-02-11 07:41:25 +0000694 result = perform_test_load(Idx, TU, filter, prefix, Visitor, PV);
695 clang_disposeIndex(Idx);
696 return result;
Daniel Dunbar625e4ef2009-12-01 02:35:37 +0000697}
698
Ted Kremenekce2ae882010-01-26 17:59:48 +0000699int perform_test_load_source(int argc, const char **argv,
700 const char *filter, CXCursorVisitor Visitor,
701 PostVisitTU PV) {
Daniel Dunbarada487d2009-12-01 02:03:10 +0000702 CXIndex Idx;
703 CXTranslationUnit TU;
Douglas Gregor4db64a42010-01-23 00:14:00 +0000704 struct CXUnsavedFile *unsaved_files = 0;
705 int num_unsaved_files = 0;
706 int result;
Douglas Gregorabc563f2010-07-19 21:46:24 +0000707
Daniel Dunbarada487d2009-12-01 02:03:10 +0000708 Idx = clang_createIndex(/* excludeDeclsFromPCH */
Douglas Gregor358559d2010-10-02 22:49:11 +0000709 (!strcmp(filter, "local") ||
710 !strcmp(filter, "local-display"))? 1 : 0,
Douglas Gregor4814fb52011-02-03 23:41:12 +0000711 /* displayDiagnosics=*/0);
Daniel Dunbarada487d2009-12-01 02:03:10 +0000712
Ted Kremenek020a0952010-02-11 07:41:25 +0000713 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
714 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000715 return -1;
Ted Kremenek020a0952010-02-11 07:41:25 +0000716 }
Douglas Gregor4db64a42010-01-23 00:14:00 +0000717
Douglas Gregordca8ee82011-05-06 16:33:08 +0000718 TU = clang_parseTranslationUnit(Idx, 0,
719 argv + num_unsaved_files,
720 argc - num_unsaved_files,
721 unsaved_files, num_unsaved_files,
722 getDefaultParsingOptions());
Daniel Dunbarada487d2009-12-01 02:03:10 +0000723 if (!TU) {
724 fprintf(stderr, "Unable to load translation unit!\n");
Douglas Gregorabc563f2010-07-19 21:46:24 +0000725 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +0000726 clang_disposeIndex(Idx);
Daniel Dunbarada487d2009-12-01 02:03:10 +0000727 return 1;
728 }
729
Ted Kremenekce2ae882010-01-26 17:59:48 +0000730 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000731 free_remapped_files(unsaved_files, num_unsaved_files);
Ted Kremenek020a0952010-02-11 07:41:25 +0000732 clang_disposeIndex(Idx);
Douglas Gregor4db64a42010-01-23 00:14:00 +0000733 return result;
Daniel Dunbarada487d2009-12-01 02:03:10 +0000734}
735
Douglas Gregorabc563f2010-07-19 21:46:24 +0000736int perform_test_reparse_source(int argc, const char **argv, int trials,
737 const char *filter, CXCursorVisitor Visitor,
738 PostVisitTU PV) {
Douglas Gregorabc563f2010-07-19 21:46:24 +0000739 CXIndex Idx;
740 CXTranslationUnit TU;
741 struct CXUnsavedFile *unsaved_files = 0;
742 int num_unsaved_files = 0;
743 int result;
744 int trial;
745
746 Idx = clang_createIndex(/* excludeDeclsFromPCH */
747 !strcmp(filter, "local") ? 1 : 0,
Douglas Gregor1aa27302011-01-27 18:02:58 +0000748 /* displayDiagnosics=*/0);
Douglas Gregorabc563f2010-07-19 21:46:24 +0000749
Douglas Gregorabc563f2010-07-19 21:46:24 +0000750 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
751 clang_disposeIndex(Idx);
752 return -1;
753 }
754
Daniel Dunbarc8a61802010-08-18 23:09:16 +0000755 /* Load the initial translation unit -- we do this without honoring remapped
756 * files, so that we have a way to test results after changing the source. */
Douglas Gregor44c181a2010-07-23 00:33:23 +0000757 TU = clang_parseTranslationUnit(Idx, 0,
758 argv + num_unsaved_files,
759 argc - num_unsaved_files,
Daniel Dunbarc8a61802010-08-18 23:09:16 +0000760 0, 0, getDefaultParsingOptions());
Douglas Gregorabc563f2010-07-19 21:46:24 +0000761 if (!TU) {
762 fprintf(stderr, "Unable to load translation unit!\n");
763 free_remapped_files(unsaved_files, num_unsaved_files);
764 clang_disposeIndex(Idx);
765 return 1;
766 }
767
768 for (trial = 0; trial < trials; ++trial) {
Douglas Gregore1e13bf2010-08-11 15:58:42 +0000769 if (clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
770 clang_defaultReparseOptions(TU))) {
Daniel Dunbarc8a61802010-08-18 23:09:16 +0000771 fprintf(stderr, "Unable to reparse translation unit!\n");
Douglas Gregorabc563f2010-07-19 21:46:24 +0000772 clang_disposeTranslationUnit(TU);
773 free_remapped_files(unsaved_files, num_unsaved_files);
774 clang_disposeIndex(Idx);
775 return -1;
776 }
777 }
778
779 result = perform_test_load(Idx, TU, filter, NULL, Visitor, PV);
780 free_remapped_files(unsaved_files, num_unsaved_files);
781 clang_disposeIndex(Idx);
782 return result;
783}
784
Ted Kremenek0d435192009-11-17 18:13:31 +0000785/******************************************************************************/
Ted Kremenek1c6da172009-11-17 19:37:36 +0000786/* Logic for testing clang_getCursor(). */
787/******************************************************************************/
788
Douglas Gregordd3e5542011-05-04 00:14:37 +0000789static void print_cursor_file_scan(CXTranslationUnit TU, CXCursor cursor,
Ted Kremenek1c6da172009-11-17 19:37:36 +0000790 unsigned start_line, unsigned start_col,
Ted Kremenek1d5fdf32009-11-18 02:02:52 +0000791 unsigned end_line, unsigned end_col,
792 const char *prefix) {
Ted Kremenek9096a202010-01-07 01:17:12 +0000793 printf("// %s: ", FileCheckPrefix);
Ted Kremenek1d5fdf32009-11-18 02:02:52 +0000794 if (prefix)
795 printf("-%s", prefix);
Daniel Dunbar51b058c2010-02-14 08:32:24 +0000796 PrintExtent(stdout, start_line, start_col, end_line, end_col);
797 printf(" ");
Douglas Gregordd3e5542011-05-04 00:14:37 +0000798 PrintCursor(TU, cursor);
Ted Kremenek1c6da172009-11-17 19:37:36 +0000799 printf("\n");
800}
801
Ted Kremenek1d5fdf32009-11-18 02:02:52 +0000802static int perform_file_scan(const char *ast_file, const char *source_file,
803 const char *prefix) {
Ted Kremenek1c6da172009-11-17 19:37:36 +0000804 CXIndex Idx;
805 CXTranslationUnit TU;
806 FILE *fp;
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000807 CXCursor prevCursor = clang_getNullCursor();
Douglas Gregorb9790342010-01-22 21:44:22 +0000808 CXFile file;
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000809 unsigned line = 1, col = 1;
Daniel Dunbar8f0bf812010-02-14 08:32:51 +0000810 unsigned start_line = 1, start_col = 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000811
Douglas Gregor0a812cf2010-02-18 23:07:20 +0000812 if (!(Idx = clang_createIndex(/* excludeDeclsFromPCH */ 1,
813 /* displayDiagnosics=*/1))) {
Ted Kremenek1c6da172009-11-17 19:37:36 +0000814 fprintf(stderr, "Could not create Index\n");
815 return 1;
816 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000817
Ted Kremenek1c6da172009-11-17 19:37:36 +0000818 if (!CreateTranslationUnit(Idx, ast_file, &TU))
819 return 1;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000820
Ted Kremenek1c6da172009-11-17 19:37:36 +0000821 if ((fp = fopen(source_file, "r")) == NULL) {
822 fprintf(stderr, "Could not open '%s'\n", source_file);
823 return 1;
824 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000825
Douglas Gregorb9790342010-01-22 21:44:22 +0000826 file = clang_getFile(TU, source_file);
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000827 for (;;) {
828 CXCursor cursor;
829 int c = fgetc(fp);
Benjamin Kramera9933b92009-11-17 20:51:40 +0000830
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000831 if (c == '\n') {
832 ++line;
833 col = 1;
834 } else
835 ++col;
836
837 /* Check the cursor at this position, and dump the previous one if we have
838 * found something new.
839 */
840 cursor = clang_getCursor(TU, clang_getLocation(TU, file, line, col));
841 if ((c == EOF || !clang_equalCursors(cursor, prevCursor)) &&
842 prevCursor.kind != CXCursor_InvalidFile) {
Douglas Gregordd3e5542011-05-04 00:14:37 +0000843 print_cursor_file_scan(TU, prevCursor, start_line, start_col,
Daniel Dunbard52864b2010-02-14 10:02:57 +0000844 line, col, prefix);
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000845 start_line = line;
846 start_col = col;
Benjamin Kramera9933b92009-11-17 20:51:40 +0000847 }
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000848 if (c == EOF)
849 break;
Benjamin Kramera9933b92009-11-17 20:51:40 +0000850
Daniel Dunbar2389eff2010-02-14 08:32:32 +0000851 prevCursor = cursor;
Ted Kremenek1c6da172009-11-17 19:37:36 +0000852 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000853
Ted Kremenek1c6da172009-11-17 19:37:36 +0000854 fclose(fp);
Douglas Gregor4f5e21e2011-01-31 22:04:05 +0000855 clang_disposeTranslationUnit(TU);
856 clang_disposeIndex(Idx);
Ted Kremenek1c6da172009-11-17 19:37:36 +0000857 return 0;
858}
859
860/******************************************************************************/
Douglas Gregor32be4a52010-10-11 21:37:58 +0000861/* Logic for testing clang code completion. */
Ted Kremenek0d435192009-11-17 18:13:31 +0000862/******************************************************************************/
863
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000864/* Parse file:line:column from the input string. Returns 0 on success, non-zero
865 on failure. If successful, the pointer *filename will contain newly-allocated
866 memory (that will be owned by the caller) to store the file name. */
Ted Kremeneke68fff62010-02-17 00:41:32 +0000867int parse_file_line_column(const char *input, char **filename, unsigned *line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000868 unsigned *column, unsigned *second_line,
869 unsigned *second_column) {
Douglas Gregor88d23952009-11-09 18:19:57 +0000870 /* Find the second colon. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000871 const char *last_colon = strrchr(input, ':');
872 unsigned values[4], i;
873 unsigned num_values = (second_line && second_column)? 4 : 2;
874
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000875 char *endptr = 0;
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000876 if (!last_colon || last_colon == input) {
877 if (num_values == 4)
878 fprintf(stderr, "could not parse filename:line:column:line:column in "
879 "'%s'\n", input);
880 else
881 fprintf(stderr, "could not parse filename:line:column in '%s'\n", input);
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000882 return 1;
883 }
884
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000885 for (i = 0; i != num_values; ++i) {
886 const char *prev_colon;
887
888 /* Parse the next line or column. */
889 values[num_values - i - 1] = strtol(last_colon + 1, &endptr, 10);
890 if (*endptr != 0 && *endptr != ':') {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000891 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000892 (i % 2 ? "column" : "line"), input);
893 return 1;
894 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000895
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000896 if (i + 1 == num_values)
897 break;
898
899 /* Find the previous colon. */
900 prev_colon = last_colon - 1;
901 while (prev_colon != input && *prev_colon != ':')
902 --prev_colon;
903 if (prev_colon == input) {
Ted Kremeneke68fff62010-02-17 00:41:32 +0000904 fprintf(stderr, "could not parse %s in '%s'\n",
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000905 (i % 2 == 0? "column" : "line"), input);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000906 return 1;
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000907 }
908
909 last_colon = prev_colon;
Douglas Gregor88d23952009-11-09 18:19:57 +0000910 }
911
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000912 *line = values[0];
913 *column = values[1];
Ted Kremeneke68fff62010-02-17 00:41:32 +0000914
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000915 if (second_line && second_column) {
916 *second_line = values[2];
917 *second_column = values[3];
918 }
919
Douglas Gregor88d23952009-11-09 18:19:57 +0000920 /* Copy the file name. */
Douglas Gregorfc8ea232010-01-26 17:06:03 +0000921 *filename = (char*)malloc(last_colon - input + 1);
922 memcpy(*filename, input, last_colon - input);
923 (*filename)[last_colon - input] = 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000924 return 0;
925}
926
927const char *
928clang_getCompletionChunkKindSpelling(enum CXCompletionChunkKind Kind) {
929 switch (Kind) {
930 case CXCompletionChunk_Optional: return "Optional";
931 case CXCompletionChunk_TypedText: return "TypedText";
932 case CXCompletionChunk_Text: return "Text";
933 case CXCompletionChunk_Placeholder: return "Placeholder";
934 case CXCompletionChunk_Informative: return "Informative";
935 case CXCompletionChunk_CurrentParameter: return "CurrentParameter";
936 case CXCompletionChunk_LeftParen: return "LeftParen";
937 case CXCompletionChunk_RightParen: return "RightParen";
938 case CXCompletionChunk_LeftBracket: return "LeftBracket";
939 case CXCompletionChunk_RightBracket: return "RightBracket";
940 case CXCompletionChunk_LeftBrace: return "LeftBrace";
941 case CXCompletionChunk_RightBrace: return "RightBrace";
942 case CXCompletionChunk_LeftAngle: return "LeftAngle";
943 case CXCompletionChunk_RightAngle: return "RightAngle";
944 case CXCompletionChunk_Comma: return "Comma";
Douglas Gregorff5ce6e2009-12-18 18:53:37 +0000945 case CXCompletionChunk_ResultType: return "ResultType";
Douglas Gregor01dfea02010-01-10 23:08:15 +0000946 case CXCompletionChunk_Colon: return "Colon";
947 case CXCompletionChunk_SemiColon: return "SemiColon";
948 case CXCompletionChunk_Equal: return "Equal";
949 case CXCompletionChunk_HorizontalSpace: return "HorizontalSpace";
950 case CXCompletionChunk_VerticalSpace: return "VerticalSpace";
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000951 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000952
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000953 return "Unknown";
954}
955
Douglas Gregor3ac73852009-11-09 16:04:45 +0000956void print_completion_string(CXCompletionString completion_string, FILE *file) {
Daniel Dunbarf8297f12009-11-07 18:34:24 +0000957 int I, N;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000958
Douglas Gregor3ac73852009-11-09 16:04:45 +0000959 N = clang_getNumCompletionChunks(completion_string);
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000960 for (I = 0; I != N; ++I) {
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000961 CXString text;
962 const char *cstr;
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000963 enum CXCompletionChunkKind Kind
Douglas Gregor3ac73852009-11-09 16:04:45 +0000964 = clang_getCompletionChunkKind(completion_string, I);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000965
Douglas Gregor3ac73852009-11-09 16:04:45 +0000966 if (Kind == CXCompletionChunk_Optional) {
967 fprintf(file, "{Optional ");
968 print_completion_string(
Ted Kremeneke68fff62010-02-17 00:41:32 +0000969 clang_getCompletionChunkCompletionString(completion_string, I),
Douglas Gregor3ac73852009-11-09 16:04:45 +0000970 file);
971 fprintf(file, "}");
972 continue;
Douglas Gregor5a9c0bc2010-10-08 20:39:29 +0000973 }
974
975 if (Kind == CXCompletionChunk_VerticalSpace) {
976 fprintf(file, "{VerticalSpace }");
977 continue;
Douglas Gregor3ac73852009-11-09 16:04:45 +0000978 }
Ted Kremeneke68fff62010-02-17 00:41:32 +0000979
Douglas Gregord5a20892009-11-09 17:05:28 +0000980 text = clang_getCompletionChunkText(completion_string, I);
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000981 cstr = clang_getCString(text);
Ted Kremeneke68fff62010-02-17 00:41:32 +0000982 fprintf(file, "{%s %s}",
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000983 clang_getCompletionChunkKindSpelling(Kind),
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000984 cstr ? cstr : "");
985 clang_disposeString(text);
Douglas Gregor0c8296d2009-11-07 00:00:49 +0000986 }
Ted Kremenek2ef6f8f2010-02-17 01:42:24 +0000987
Douglas Gregor3ac73852009-11-09 16:04:45 +0000988}
989
990void print_completion_result(CXCompletionResult *completion_result,
991 CXClientData client_data) {
992 FILE *file = (FILE *)client_data;
Ted Kremeneke68fff62010-02-17 00:41:32 +0000993 CXString ks = clang_getCursorKindSpelling(completion_result->CursorKind);
994
995 fprintf(file, "%s:", clang_getCString(ks));
996 clang_disposeString(ks);
997
Douglas Gregor3ac73852009-11-09 16:04:45 +0000998 print_completion_string(completion_result->CompletionString, file);
Douglas Gregor58ddb602010-08-23 23:00:57 +0000999 fprintf(file, " (%u)",
Douglas Gregor12e13132010-05-26 22:00:08 +00001000 clang_getCompletionPriority(completion_result->CompletionString));
Douglas Gregor58ddb602010-08-23 23:00:57 +00001001 switch (clang_getCompletionAvailability(completion_result->CompletionString)){
1002 case CXAvailability_Available:
1003 break;
1004
1005 case CXAvailability_Deprecated:
1006 fprintf(file, " (deprecated)");
1007 break;
1008
1009 case CXAvailability_NotAvailable:
1010 fprintf(file, " (unavailable)");
1011 break;
1012 }
1013 fprintf(file, "\n");
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001014}
1015
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001016int my_stricmp(const char *s1, const char *s2) {
1017 while (*s1 && *s2) {
NAKAMURA Takumi6d555212011-03-09 03:02:28 +00001018 int c1 = tolower((unsigned char)*s1), c2 = tolower((unsigned char)*s2);
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001019 if (c1 < c2)
1020 return -1;
1021 else if (c1 > c2)
1022 return 1;
1023
1024 ++s1;
1025 ++s2;
1026 }
1027
1028 if (*s1)
1029 return 1;
1030 else if (*s2)
1031 return -1;
1032 return 0;
1033}
1034
Douglas Gregor1982c182010-07-12 18:38:41 +00001035int perform_code_completion(int argc, const char **argv, int timing_only) {
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001036 const char *input = argv[1];
1037 char *filename = 0;
1038 unsigned line;
1039 unsigned column;
Daniel Dunbarf8297f12009-11-07 18:34:24 +00001040 CXIndex CIdx;
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001041 int errorCode;
Douglas Gregor735df882009-12-02 09:21:34 +00001042 struct CXUnsavedFile *unsaved_files = 0;
1043 int num_unsaved_files = 0;
Douglas Gregorec6762c2009-12-18 16:20:58 +00001044 CXCodeCompleteResults *results = 0;
Dawn Perchik25d9b002010-09-30 22:26:05 +00001045 CXTranslationUnit TU = 0;
Douglas Gregor32be4a52010-10-11 21:37:58 +00001046 unsigned I, Repeats = 1;
1047 unsigned completionOptions = clang_defaultCodeCompleteOptions();
1048
1049 if (getenv("CINDEXTEST_CODE_COMPLETE_PATTERNS"))
1050 completionOptions |= CXCodeComplete_IncludeCodePatterns;
Douglas Gregordf95a132010-08-09 20:45:32 +00001051
Douglas Gregor1982c182010-07-12 18:38:41 +00001052 if (timing_only)
1053 input += strlen("-code-completion-timing=");
1054 else
1055 input += strlen("-code-completion-at=");
1056
Ted Kremeneke68fff62010-02-17 00:41:32 +00001057 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001058 0, 0)))
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001059 return errorCode;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001060
Douglas Gregor735df882009-12-02 09:21:34 +00001061 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files))
1062 return -1;
1063
Douglas Gregor32be4a52010-10-11 21:37:58 +00001064 CIdx = clang_createIndex(0, 0);
1065
1066 if (getenv("CINDEXTEST_EDITING"))
1067 Repeats = 5;
1068
1069 TU = clang_parseTranslationUnit(CIdx, 0,
1070 argv + num_unsaved_files + 2,
1071 argc - num_unsaved_files - 2,
1072 0, 0, getDefaultParsingOptions());
1073 if (!TU) {
1074 fprintf(stderr, "Unable to load translation unit!\n");
1075 return 1;
1076 }
Douglas Gregor08bb4c62010-11-15 23:00:34 +00001077
1078 if (clang_reparseTranslationUnit(TU, 0, 0, clang_defaultReparseOptions(TU))) {
1079 fprintf(stderr, "Unable to reparse translation init!\n");
1080 return 1;
1081 }
Douglas Gregor32be4a52010-10-11 21:37:58 +00001082
1083 for (I = 0; I != Repeats; ++I) {
1084 results = clang_codeCompleteAt(TU, filename, line, column,
1085 unsaved_files, num_unsaved_files,
1086 completionOptions);
1087 if (!results) {
1088 fprintf(stderr, "Unable to perform code completion!\n");
Daniel Dunbar2de41c92010-08-19 23:44:06 +00001089 return 1;
1090 }
Douglas Gregor32be4a52010-10-11 21:37:58 +00001091 if (I != Repeats-1)
1092 clang_disposeCodeCompleteResults(results);
1093 }
Douglas Gregor936ea3b2010-01-28 00:56:43 +00001094
Douglas Gregorec6762c2009-12-18 16:20:58 +00001095 if (results) {
1096 unsigned i, n = results->NumResults;
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001097 if (!timing_only) {
1098 /* Sort the code-completion results based on the typed text. */
1099 clang_sortCodeCompletionResults(results->Results, results->NumResults);
1100
Douglas Gregor1982c182010-07-12 18:38:41 +00001101 for (i = 0; i != n; ++i)
1102 print_completion_result(results->Results + i, stdout);
Douglas Gregor1e5e6682010-08-26 13:48:20 +00001103 }
Douglas Gregora88084b2010-02-18 18:08:43 +00001104 n = clang_codeCompleteGetNumDiagnostics(results);
1105 for (i = 0; i != n; ++i) {
1106 CXDiagnostic diag = clang_codeCompleteGetDiagnostic(results, i);
1107 PrintDiagnostic(diag);
1108 clang_disposeDiagnostic(diag);
1109 }
Douglas Gregorec6762c2009-12-18 16:20:58 +00001110 clang_disposeCodeCompleteResults(results);
1111 }
Douglas Gregordf95a132010-08-09 20:45:32 +00001112 clang_disposeTranslationUnit(TU);
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001113 clang_disposeIndex(CIdx);
1114 free(filename);
Ted Kremeneke68fff62010-02-17 00:41:32 +00001115
Douglas Gregor735df882009-12-02 09:21:34 +00001116 free_remapped_files(unsaved_files, num_unsaved_files);
1117
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001118 return 0;
Douglas Gregor0c8296d2009-11-07 00:00:49 +00001119}
1120
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001121typedef struct {
1122 char *filename;
1123 unsigned line;
1124 unsigned column;
1125} CursorSourceLocation;
1126
1127int inspect_cursor_at(int argc, const char **argv) {
1128 CXIndex CIdx;
1129 int errorCode;
1130 struct CXUnsavedFile *unsaved_files = 0;
1131 int num_unsaved_files = 0;
1132 CXTranslationUnit TU;
1133 CXCursor Cursor;
1134 CursorSourceLocation *Locations = 0;
1135 unsigned NumLocations = 0, Loc;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001136 unsigned Repeats = 1;
Douglas Gregorbdc4b362010-11-30 06:04:54 +00001137 unsigned I;
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001138
Ted Kremeneke68fff62010-02-17 00:41:32 +00001139 /* Count the number of locations. */
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001140 while (strstr(argv[NumLocations+1], "-cursor-at=") == argv[NumLocations+1])
1141 ++NumLocations;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001142
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001143 /* Parse the locations. */
1144 assert(NumLocations > 0 && "Unable to count locations?");
1145 Locations = (CursorSourceLocation *)malloc(
1146 NumLocations * sizeof(CursorSourceLocation));
1147 for (Loc = 0; Loc < NumLocations; ++Loc) {
1148 const char *input = argv[Loc + 1] + strlen("-cursor-at=");
Ted Kremeneke68fff62010-02-17 00:41:32 +00001149 if ((errorCode = parse_file_line_column(input, &Locations[Loc].filename,
1150 &Locations[Loc].line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001151 &Locations[Loc].column, 0, 0)))
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001152 return errorCode;
1153 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001154
1155 if (parse_remapped_files(argc, argv, NumLocations + 1, &unsaved_files,
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001156 &num_unsaved_files))
1157 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001158
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001159 if (getenv("CINDEXTEST_EDITING"))
1160 Repeats = 5;
1161
1162 /* Parse the translation unit. When we're testing clang_getCursor() after
1163 reparsing, don't remap unsaved files until the second parse. */
1164 CIdx = clang_createIndex(1, 1);
1165 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
1166 argv + num_unsaved_files + 1 + NumLocations,
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001167 argc - num_unsaved_files - 2 - NumLocations,
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001168 unsaved_files,
1169 Repeats > 1? 0 : num_unsaved_files,
1170 getDefaultParsingOptions());
1171
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001172 if (!TU) {
1173 fprintf(stderr, "unable to parse input\n");
1174 return -1;
1175 }
Ted Kremeneke68fff62010-02-17 00:41:32 +00001176
Douglas Gregorbdc4b362010-11-30 06:04:54 +00001177 for (I = 0; I != Repeats; ++I) {
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001178 if (Repeats > 1 &&
1179 clang_reparseTranslationUnit(TU, num_unsaved_files, unsaved_files,
1180 clang_defaultReparseOptions(TU))) {
1181 clang_disposeTranslationUnit(TU);
1182 return 1;
1183 }
1184
1185 for (Loc = 0; Loc < NumLocations; ++Loc) {
1186 CXFile file = clang_getFile(TU, Locations[Loc].filename);
1187 if (!file)
1188 continue;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001189
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001190 Cursor = clang_getCursor(TU,
1191 clang_getLocation(TU, file, Locations[Loc].line,
1192 Locations[Loc].column));
1193 if (I + 1 == Repeats) {
Douglas Gregordd3e5542011-05-04 00:14:37 +00001194 PrintCursor(TU, Cursor);
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001195 printf("\n");
1196 free(Locations[Loc].filename);
1197 }
1198 }
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001199 }
Douglas Gregor8e08dec2010-11-30 05:52:55 +00001200
Douglas Gregora88084b2010-02-18 18:08:43 +00001201 PrintDiagnostics(TU);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001202 clang_disposeTranslationUnit(TU);
1203 clang_disposeIndex(CIdx);
1204 free(Locations);
1205 free_remapped_files(unsaved_files, num_unsaved_files);
1206 return 0;
1207}
1208
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001209int perform_token_annotation(int argc, const char **argv) {
1210 const char *input = argv[1];
1211 char *filename = 0;
1212 unsigned line, second_line;
1213 unsigned column, second_column;
1214 CXIndex CIdx;
1215 CXTranslationUnit TU = 0;
1216 int errorCode;
1217 struct CXUnsavedFile *unsaved_files = 0;
1218 int num_unsaved_files = 0;
1219 CXToken *tokens;
1220 unsigned num_tokens;
1221 CXSourceRange range;
1222 CXSourceLocation startLoc, endLoc;
1223 CXFile file = 0;
1224 CXCursor *cursors = 0;
1225 unsigned i;
1226
1227 input += strlen("-test-annotate-tokens=");
1228 if ((errorCode = parse_file_line_column(input, &filename, &line, &column,
1229 &second_line, &second_column)))
1230 return errorCode;
1231
1232 if (parse_remapped_files(argc, argv, 2, &unsaved_files, &num_unsaved_files))
1233 return -1;
1234
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001235 CIdx = clang_createIndex(0, 1);
Douglas Gregordca8ee82011-05-06 16:33:08 +00001236 TU = clang_parseTranslationUnit(CIdx, argv[argc - 1],
1237 argv + num_unsaved_files + 2,
1238 argc - num_unsaved_files - 3,
1239 unsaved_files,
1240 num_unsaved_files,
1241 getDefaultParsingOptions());
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001242 if (!TU) {
1243 fprintf(stderr, "unable to parse input\n");
1244 clang_disposeIndex(CIdx);
1245 free(filename);
1246 free_remapped_files(unsaved_files, num_unsaved_files);
1247 return -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001248 }
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001249 errorCode = 0;
1250
1251 file = clang_getFile(TU, filename);
1252 if (!file) {
1253 fprintf(stderr, "file %s is not in this translation unit\n", filename);
1254 errorCode = -1;
1255 goto teardown;
1256 }
1257
1258 startLoc = clang_getLocation(TU, file, line, column);
1259 if (clang_equalLocations(clang_getNullLocation(), startLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001260 fprintf(stderr, "invalid source location %s:%d:%d\n", filename, line,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001261 column);
1262 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001263 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001264 }
1265
1266 endLoc = clang_getLocation(TU, file, second_line, second_column);
1267 if (clang_equalLocations(clang_getNullLocation(), endLoc)) {
Ted Kremeneke68fff62010-02-17 00:41:32 +00001268 fprintf(stderr, "invalid source location %s:%d:%d\n", filename,
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001269 second_line, second_column);
1270 errorCode = -1;
Ted Kremeneke68fff62010-02-17 00:41:32 +00001271 goto teardown;
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001272 }
1273
1274 range = clang_getRange(startLoc, endLoc);
1275 clang_tokenize(TU, range, &tokens, &num_tokens);
1276 cursors = (CXCursor *)malloc(num_tokens * sizeof(CXCursor));
1277 clang_annotateTokens(TU, tokens, num_tokens, cursors);
1278 for (i = 0; i != num_tokens; ++i) {
1279 const char *kind = "<unknown>";
1280 CXString spelling = clang_getTokenSpelling(TU, tokens[i]);
1281 CXSourceRange extent = clang_getTokenExtent(TU, tokens[i]);
1282 unsigned start_line, start_column, end_line, end_column;
1283
1284 switch (clang_getTokenKind(tokens[i])) {
1285 case CXToken_Punctuation: kind = "Punctuation"; break;
1286 case CXToken_Keyword: kind = "Keyword"; break;
1287 case CXToken_Identifier: kind = "Identifier"; break;
1288 case CXToken_Literal: kind = "Literal"; break;
1289 case CXToken_Comment: kind = "Comment"; break;
1290 }
Douglas Gregora9b06d42010-11-09 06:24:54 +00001291 clang_getSpellingLocation(clang_getRangeStart(extent),
1292 0, &start_line, &start_column, 0);
1293 clang_getSpellingLocation(clang_getRangeEnd(extent),
1294 0, &end_line, &end_column, 0);
Daniel Dunbar51b058c2010-02-14 08:32:24 +00001295 printf("%s: \"%s\" ", kind, clang_getCString(spelling));
1296 PrintExtent(stdout, start_line, start_column, end_line, end_column);
Douglas Gregor0045e9f2010-01-26 18:31:56 +00001297 if (!clang_isInvalid(cursors[i].kind)) {
1298 printf(" ");
Douglas Gregordd3e5542011-05-04 00:14:37 +00001299 PrintCursor(TU, cursors[i]);
Douglas Gregor0045e9f2010-01-26 18:31:56 +00001300 }
1301 printf("\n");
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001302 }
1303 free(cursors);
Ted Kremenek93f5e6a2010-10-20 21:22:15 +00001304 clang_disposeTokens(TU, tokens, num_tokens);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001305
1306 teardown:
Douglas Gregora88084b2010-02-18 18:08:43 +00001307 PrintDiagnostics(TU);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001308 clang_disposeTranslationUnit(TU);
1309 clang_disposeIndex(CIdx);
1310 free(filename);
1311 free_remapped_files(unsaved_files, num_unsaved_files);
1312 return errorCode;
1313}
1314
Ted Kremenek0d435192009-11-17 18:13:31 +00001315/******************************************************************************/
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001316/* USR printing. */
1317/******************************************************************************/
1318
1319static int insufficient_usr(const char *kind, const char *usage) {
1320 fprintf(stderr, "USR for '%s' requires: %s\n", kind, usage);
1321 return 1;
1322}
1323
1324static unsigned isUSR(const char *s) {
1325 return s[0] == 'c' && s[1] == ':';
1326}
1327
1328static int not_usr(const char *s, const char *arg) {
1329 fprintf(stderr, "'%s' argument ('%s') is not a USR\n", s, arg);
1330 return 1;
1331}
1332
1333static void print_usr(CXString usr) {
1334 const char *s = clang_getCString(usr);
1335 printf("%s\n", s);
1336 clang_disposeString(usr);
1337}
1338
1339static void display_usrs() {
1340 fprintf(stderr, "-print-usrs options:\n"
1341 " ObjCCategory <class name> <category name>\n"
1342 " ObjCClass <class name>\n"
1343 " ObjCIvar <ivar name> <class USR>\n"
1344 " ObjCMethod <selector> [0=class method|1=instance method] "
1345 "<class USR>\n"
1346 " ObjCProperty <property name> <class USR>\n"
1347 " ObjCProtocol <protocol name>\n");
1348}
1349
1350int print_usrs(const char **I, const char **E) {
1351 while (I != E) {
1352 const char *kind = *I;
1353 unsigned len = strlen(kind);
1354 switch (len) {
1355 case 8:
1356 if (memcmp(kind, "ObjCIvar", 8) == 0) {
1357 if (I + 2 >= E)
1358 return insufficient_usr(kind, "<ivar name> <class USR>");
1359 if (!isUSR(I[2]))
1360 return not_usr("<class USR>", I[2]);
1361 else {
1362 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00001363 x.data = (void*) I[2];
Ted Kremeneked122732010-11-16 01:56:27 +00001364 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001365 print_usr(clang_constructUSR_ObjCIvar(I[1], x));
1366 }
1367
1368 I += 3;
1369 continue;
1370 }
1371 break;
1372 case 9:
1373 if (memcmp(kind, "ObjCClass", 9) == 0) {
1374 if (I + 1 >= E)
1375 return insufficient_usr(kind, "<class name>");
1376 print_usr(clang_constructUSR_ObjCClass(I[1]));
1377 I += 2;
1378 continue;
1379 }
1380 break;
1381 case 10:
1382 if (memcmp(kind, "ObjCMethod", 10) == 0) {
1383 if (I + 3 >= E)
1384 return insufficient_usr(kind, "<method selector> "
1385 "[0=class method|1=instance method] <class USR>");
1386 if (!isUSR(I[3]))
1387 return not_usr("<class USR>", I[3]);
1388 else {
1389 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00001390 x.data = (void*) I[3];
Ted Kremeneked122732010-11-16 01:56:27 +00001391 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001392 print_usr(clang_constructUSR_ObjCMethod(I[1], atoi(I[2]), x));
1393 }
1394 I += 4;
1395 continue;
1396 }
1397 break;
1398 case 12:
1399 if (memcmp(kind, "ObjCCategory", 12) == 0) {
1400 if (I + 2 >= E)
1401 return insufficient_usr(kind, "<class name> <category name>");
1402 print_usr(clang_constructUSR_ObjCCategory(I[1], I[2]));
1403 I += 3;
1404 continue;
1405 }
1406 if (memcmp(kind, "ObjCProtocol", 12) == 0) {
1407 if (I + 1 >= E)
1408 return insufficient_usr(kind, "<protocol name>");
1409 print_usr(clang_constructUSR_ObjCProtocol(I[1]));
1410 I += 2;
1411 continue;
1412 }
1413 if (memcmp(kind, "ObjCProperty", 12) == 0) {
1414 if (I + 2 >= E)
1415 return insufficient_usr(kind, "<property name> <class USR>");
1416 if (!isUSR(I[2]))
1417 return not_usr("<class USR>", I[2]);
1418 else {
1419 CXString x;
Ted Kremeneka60ed472010-11-16 08:15:36 +00001420 x.data = (void*) I[2];
Ted Kremeneked122732010-11-16 01:56:27 +00001421 x.private_flags = 0;
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001422 print_usr(clang_constructUSR_ObjCProperty(I[1], x));
1423 }
1424 I += 3;
1425 continue;
1426 }
1427 break;
1428 default:
1429 break;
1430 }
1431 break;
1432 }
1433
1434 if (I != E) {
1435 fprintf(stderr, "Invalid USR kind: %s\n", *I);
1436 display_usrs();
1437 return 1;
1438 }
1439 return 0;
1440}
1441
1442int print_usrs_file(const char *file_name) {
1443 char line[2048];
1444 const char *args[128];
1445 unsigned numChars = 0;
1446
1447 FILE *fp = fopen(file_name, "r");
1448 if (!fp) {
1449 fprintf(stderr, "error: cannot open '%s'\n", file_name);
1450 return 1;
1451 }
1452
1453 /* This code is not really all that safe, but it works fine for testing. */
1454 while (!feof(fp)) {
1455 char c = fgetc(fp);
1456 if (c == '\n') {
1457 unsigned i = 0;
1458 const char *s = 0;
1459
1460 if (numChars == 0)
1461 continue;
1462
1463 line[numChars] = '\0';
1464 numChars = 0;
1465
1466 if (line[0] == '/' && line[1] == '/')
1467 continue;
1468
1469 s = strtok(line, " ");
1470 while (s) {
1471 args[i] = s;
1472 ++i;
1473 s = strtok(0, " ");
1474 }
1475 if (print_usrs(&args[0], &args[i]))
1476 return 1;
1477 }
1478 else
1479 line[numChars++] = c;
1480 }
1481
1482 fclose(fp);
1483 return 0;
1484}
1485
1486/******************************************************************************/
Ted Kremenek0d435192009-11-17 18:13:31 +00001487/* Command line processing. */
1488/******************************************************************************/
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001489int write_pch_file(const char *filename, int argc, const char *argv[]) {
1490 CXIndex Idx;
1491 CXTranslationUnit TU;
1492 struct CXUnsavedFile *unsaved_files = 0;
1493 int num_unsaved_files = 0;
1494
1495 Idx = clang_createIndex(/* excludeDeclsFromPCH */1, /* displayDiagnosics=*/1);
1496
1497 if (parse_remapped_files(argc, argv, 0, &unsaved_files, &num_unsaved_files)) {
1498 clang_disposeIndex(Idx);
1499 return -1;
1500 }
1501
1502 TU = clang_parseTranslationUnit(Idx, 0,
1503 argv + num_unsaved_files,
1504 argc - num_unsaved_files,
1505 unsaved_files,
1506 num_unsaved_files,
1507 CXTranslationUnit_Incomplete);
1508 if (!TU) {
1509 fprintf(stderr, "Unable to load translation unit!\n");
1510 free_remapped_files(unsaved_files, num_unsaved_files);
1511 clang_disposeIndex(Idx);
1512 return 1;
1513 }
1514
Douglas Gregor19998442010-08-13 15:35:05 +00001515 if (clang_saveTranslationUnit(TU, filename, clang_defaultSaveOptions(TU)))
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001516 fprintf(stderr, "Unable to write PCH file %s\n", filename);
1517 clang_disposeTranslationUnit(TU);
1518 free_remapped_files(unsaved_files, num_unsaved_files);
1519 clang_disposeIndex(Idx);
1520 return 0;
1521}
1522
1523/******************************************************************************/
1524/* Command line processing. */
1525/******************************************************************************/
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001526
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001527static CXCursorVisitor GetVisitor(const char *s) {
Ted Kremenek7d405622010-01-12 23:34:26 +00001528 if (s[0] == '\0')
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001529 return FilteredPrintingVisitor;
Ted Kremenek7d405622010-01-12 23:34:26 +00001530 if (strcmp(s, "-usrs") == 0)
1531 return USRVisitor;
Ted Kremenek59fc1e52011-04-18 22:47:10 +00001532 if (strncmp(s, "-memory-usage", 13) == 0)
1533 return GetVisitor(s + 13);
Ted Kremenek7d405622010-01-12 23:34:26 +00001534 return NULL;
1535}
1536
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001537static void print_usage(void) {
1538 fprintf(stderr,
Ted Kremenek0d435192009-11-17 18:13:31 +00001539 "usage: c-index-test -code-completion-at=<site> <compiler arguments>\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00001540 " c-index-test -code-completion-timing=<site> <compiler arguments>\n"
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001541 " c-index-test -cursor-at=<site> <compiler arguments>\n"
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001542 " c-index-test -test-file-scan <AST file> <source file> "
1543 "[FileCheck prefix]\n"
Ted Kremenekfe6fd3d2010-01-05 23:18:49 +00001544 " c-index-test -test-load-tu <AST file> <symbol filter> "
1545 "[FileCheck prefix]\n"
Ted Kremenek7d405622010-01-12 23:34:26 +00001546 " c-index-test -test-load-tu-usrs <AST file> <symbol filter> "
1547 "[FileCheck prefix]\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00001548 " c-index-test -test-load-source <symbol filter> {<args>}*\n");
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001549 fprintf(stderr,
Ted Kremenek59fc1e52011-04-18 22:47:10 +00001550 " c-index-test -test-load-source-memory-usage "
1551 "<symbol filter> {<args>}*\n"
Douglas Gregorabc563f2010-07-19 21:46:24 +00001552 " c-index-test -test-load-source-reparse <trials> <symbol filter> "
1553 " {<args>}*\n"
Douglas Gregor1982c182010-07-12 18:38:41 +00001554 " c-index-test -test-load-source-usrs <symbol filter> {<args>}*\n"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00001555 " c-index-test -test-load-source-usrs-memory-usage "
1556 "<symbol filter> {<args>}*\n"
Ted Kremenek16b55a72010-01-26 19:31:51 +00001557 " c-index-test -test-annotate-tokens=<range> {<args>}*\n"
1558 " c-index-test -test-inclusion-stack-source {<args>}*\n"
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00001559 " c-index-test -test-inclusion-stack-tu <AST file>\n");
Chandler Carruth53513d22010-07-22 06:29:13 +00001560 fprintf(stderr,
Ted Kremenek4e6a3f72011-04-18 23:42:53 +00001561 " c-index-test -test-print-linkage-source {<args>}*\n"
Ted Kremenek59fc1e52011-04-18 22:47:10 +00001562 " c-index-test -test-print-typekind {<args>}*\n"
1563 " c-index-test -print-usr [<CursorKind> {<args>}]*\n"
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001564 " c-index-test -print-usr-file <file>\n"
1565 " c-index-test -write-pch <file> <compiler arguments>\n\n");
Douglas Gregorcaf4bd32010-07-20 14:34:35 +00001566 fprintf(stderr,
Ted Kremenek7d405622010-01-12 23:34:26 +00001567 " <symbol filter> values:\n%s",
Ted Kremenek0d435192009-11-17 18:13:31 +00001568 " all - load all symbols, including those from PCH\n"
1569 " local - load all symbols except those in PCH\n"
1570 " category - only load ObjC categories (non-PCH)\n"
1571 " interface - only load ObjC interfaces (non-PCH)\n"
1572 " protocol - only load ObjC protocols (non-PCH)\n"
1573 " function - only load functions (non-PCH)\n"
Daniel Dunbar625e4ef2009-12-01 02:35:37 +00001574 " typedef - only load typdefs (non-PCH)\n"
1575 " scan-function - scan function bodies (non-PCH)\n\n");
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001576}
1577
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001578/***/
1579
1580int cindextest_main(int argc, const char **argv) {
Douglas Gregor0a812cf2010-02-18 23:07:20 +00001581 clang_enableStackTraces();
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001582 if (argc > 2 && strstr(argv[1], "-code-completion-at=") == argv[1])
Douglas Gregor1982c182010-07-12 18:38:41 +00001583 return perform_code_completion(argc, argv, 0);
1584 if (argc > 2 && strstr(argv[1], "-code-completion-timing=") == argv[1])
1585 return perform_code_completion(argc, argv, 1);
Douglas Gregorf2c87bd2010-01-15 19:40:17 +00001586 if (argc > 2 && strstr(argv[1], "-cursor-at=") == argv[1])
1587 return inspect_cursor_at(argc, argv);
Ted Kremenek7d405622010-01-12 23:34:26 +00001588 else if (argc >= 4 && strncmp(argv[1], "-test-load-tu", 13) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001589 CXCursorVisitor I = GetVisitor(argv[1] + 13);
Ted Kremenek7d405622010-01-12 23:34:26 +00001590 if (I)
Ted Kremenekce2ae882010-01-26 17:59:48 +00001591 return perform_test_load_tu(argv[2], argv[3], argc >= 5 ? argv[4] : 0, I,
1592 NULL);
Ted Kremenek7d405622010-01-12 23:34:26 +00001593 }
Douglas Gregorabc563f2010-07-19 21:46:24 +00001594 else if (argc >= 5 && strncmp(argv[1], "-test-load-source-reparse", 25) == 0){
1595 CXCursorVisitor I = GetVisitor(argv[1] + 25);
1596 if (I) {
1597 int trials = atoi(argv[2]);
1598 return perform_test_reparse_source(argc - 4, argv + 4, trials, argv[3], I,
1599 NULL);
1600 }
1601 }
Ted Kremenek7d405622010-01-12 23:34:26 +00001602 else if (argc >= 4 && strncmp(argv[1], "-test-load-source", 17) == 0) {
Douglas Gregore5b72ba2010-01-20 21:32:04 +00001603 CXCursorVisitor I = GetVisitor(argv[1] + 17);
Ted Kremenek59fc1e52011-04-18 22:47:10 +00001604
1605 PostVisitTU postVisit = 0;
1606 if (strstr(argv[1], "-memory-usage"))
1607 postVisit = PrintMemoryUsage;
1608
Ted Kremenek7d405622010-01-12 23:34:26 +00001609 if (I)
Ted Kremenek59fc1e52011-04-18 22:47:10 +00001610 return perform_test_load_source(argc - 3, argv + 3, argv[2], I,
1611 postVisit);
Ted Kremenek7d405622010-01-12 23:34:26 +00001612 }
1613 else if (argc >= 4 && strcmp(argv[1], "-test-file-scan") == 0)
Ted Kremenek1d5fdf32009-11-18 02:02:52 +00001614 return perform_file_scan(argv[2], argv[3],
1615 argc >= 5 ? argv[4] : 0);
Douglas Gregorfc8ea232010-01-26 17:06:03 +00001616 else if (argc > 2 && strstr(argv[1], "-test-annotate-tokens=") == argv[1])
1617 return perform_token_annotation(argc, argv);
Ted Kremenek16b55a72010-01-26 19:31:51 +00001618 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-source") == 0)
1619 return perform_test_load_source(argc - 2, argv + 2, "all", NULL,
1620 PrintInclusionStack);
1621 else if (argc > 2 && strcmp(argv[1], "-test-inclusion-stack-tu") == 0)
1622 return perform_test_load_tu(argv[2], "all", NULL, NULL,
1623 PrintInclusionStack);
Ted Kremenek3bed5272010-03-03 06:37:58 +00001624 else if (argc > 2 && strcmp(argv[1], "-test-print-linkage-source") == 0)
1625 return perform_test_load_source(argc - 2, argv + 2, "all", PrintLinkage,
1626 NULL);
Ted Kremenek8e0ac172010-05-14 21:29:26 +00001627 else if (argc > 2 && strcmp(argv[1], "-test-print-typekind") == 0)
1628 return perform_test_load_source(argc - 2, argv + 2, "all",
1629 PrintTypeKind, 0);
Ted Kremenekf7b714d2010-03-25 02:00:39 +00001630 else if (argc > 1 && strcmp(argv[1], "-print-usr") == 0) {
1631 if (argc > 2)
1632 return print_usrs(argv + 2, argv + argc);
1633 else {
1634 display_usrs();
1635 return 1;
1636 }
1637 }
1638 else if (argc > 2 && strcmp(argv[1], "-print-usr-file") == 0)
1639 return print_usrs_file(argv[2]);
Douglas Gregor7ae2faa2010-08-13 05:36:37 +00001640 else if (argc > 2 && strcmp(argv[1], "-write-pch") == 0)
1641 return write_pch_file(argv[2], argc - 3, argv + 3);
1642
Ted Kremenekf5d9c932009-11-17 18:09:14 +00001643 print_usage();
1644 return 1;
Steve Naroff50398192009-08-28 15:28:48 +00001645}
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001646
1647/***/
1648
1649/* We intentionally run in a separate thread to ensure we at least minimal
1650 * testing of a multithreaded environment (for example, having a reduced stack
1651 * size). */
1652
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001653typedef struct thread_info {
1654 int argc;
1655 const char **argv;
1656 int result;
1657} thread_info;
Benjamin Kramer84294912010-11-04 19:11:31 +00001658void thread_runner(void *client_data_v) {
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001659 thread_info *client_data = client_data_v;
1660 client_data->result = cindextest_main(client_data->argc, client_data->argv);
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001661}
1662
1663int main(int argc, const char **argv) {
1664 thread_info client_data;
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001665
Douglas Gregor61605982010-10-27 16:00:01 +00001666 if (getenv("CINDEXTEST_NOTHREADS"))
1667 return cindextest_main(argc, argv);
1668
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001669 client_data.argc = argc;
1670 client_data.argv = argv;
Daniel Dunbara32a6e12010-11-04 01:26:31 +00001671 clang_executeOnThread(thread_runner, &client_data, 0);
Daniel Dunbar6edc8002010-09-30 20:39:47 +00001672 return client_data.result;
1673}