]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang-c/Index.h
Update clang to trunk r290819 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang-c / Index.h
1 /*===-- clang-c/Index.h - Indexing Public C Interface -------------*- C -*-===*\
2 |*                                                                            *|
3 |*                     The LLVM Compiler Infrastructure                       *|
4 |*                                                                            *|
5 |* This file is distributed under the University of Illinois Open Source      *|
6 |* License. See LICENSE.TXT for details.                                      *|
7 |*                                                                            *|
8 |*===----------------------------------------------------------------------===*|
9 |*                                                                            *|
10 |* This header provides a public inferface to a Clang library for extracting  *|
11 |* high-level symbol information from source files without exposing the full  *|
12 |* Clang C++ API.                                                             *|
13 |*                                                                            *|
14 \*===----------------------------------------------------------------------===*/
15
16 #ifndef LLVM_CLANG_C_INDEX_H
17 #define LLVM_CLANG_C_INDEX_H
18
19 #include <time.h>
20
21 #include "clang-c/Platform.h"
22 #include "clang-c/CXErrorCode.h"
23 #include "clang-c/CXString.h"
24 #include "clang-c/BuildSystem.h"
25
26 /**
27  * \brief The version constants for the libclang API.
28  * CINDEX_VERSION_MINOR should increase when there are API additions.
29  * CINDEX_VERSION_MAJOR is intended for "major" source/ABI breaking changes.
30  *
31  * The policy about the libclang API was always to keep it source and ABI
32  * compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable.
33  */
34 #define CINDEX_VERSION_MAJOR 0
35 #define CINDEX_VERSION_MINOR 37
36
37 #define CINDEX_VERSION_ENCODE(major, minor) ( \
38       ((major) * 10000)                       \
39     + ((minor) *     1))
40
41 #define CINDEX_VERSION CINDEX_VERSION_ENCODE( \
42     CINDEX_VERSION_MAJOR,                     \
43     CINDEX_VERSION_MINOR )
44
45 #define CINDEX_VERSION_STRINGIZE_(major, minor)   \
46     #major"."#minor
47 #define CINDEX_VERSION_STRINGIZE(major, minor)    \
48     CINDEX_VERSION_STRINGIZE_(major, minor)
49
50 #define CINDEX_VERSION_STRING CINDEX_VERSION_STRINGIZE( \
51     CINDEX_VERSION_MAJOR,                               \
52     CINDEX_VERSION_MINOR)
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 /** \defgroup CINDEX libclang: C Interface to Clang
59  *
60  * The C Interface to Clang provides a relatively small API that exposes
61  * facilities for parsing source code into an abstract syntax tree (AST),
62  * loading already-parsed ASTs, traversing the AST, associating
63  * physical source locations with elements within the AST, and other
64  * facilities that support Clang-based development tools.
65  *
66  * This C interface to Clang will never provide all of the information
67  * representation stored in Clang's C++ AST, nor should it: the intent is to
68  * maintain an API that is relatively stable from one release to the next,
69  * providing only the basic functionality needed to support development tools.
70  *
71  * To avoid namespace pollution, data types are prefixed with "CX" and
72  * functions are prefixed with "clang_".
73  *
74  * @{
75  */
76
77 /**
78  * \brief An "index" that consists of a set of translation units that would
79  * typically be linked together into an executable or library.
80  */
81 typedef void *CXIndex;
82
83 /**
84  * \brief A single translation unit, which resides in an index.
85  */
86 typedef struct CXTranslationUnitImpl *CXTranslationUnit;
87
88 /**
89  * \brief Opaque pointer representing client data that will be passed through
90  * to various callbacks and visitors.
91  */
92 typedef void *CXClientData;
93
94 /**
95  * \brief Provides the contents of a file that has not yet been saved to disk.
96  *
97  * Each CXUnsavedFile instance provides the name of a file on the
98  * system along with the current contents of that file that have not
99  * yet been saved to disk.
100  */
101 struct CXUnsavedFile {
102   /**
103    * \brief The file whose contents have not yet been saved.
104    *
105    * This file must already exist in the file system.
106    */
107   const char *Filename;
108
109   /**
110    * \brief A buffer containing the unsaved contents of this file.
111    */
112   const char *Contents;
113
114   /**
115    * \brief The length of the unsaved contents of this buffer.
116    */
117   unsigned long Length;
118 };
119
120 /**
121  * \brief Describes the availability of a particular entity, which indicates
122  * whether the use of this entity will result in a warning or error due to
123  * it being deprecated or unavailable.
124  */
125 enum CXAvailabilityKind {
126   /**
127    * \brief The entity is available.
128    */
129   CXAvailability_Available,
130   /**
131    * \brief The entity is available, but has been deprecated (and its use is
132    * not recommended).
133    */
134   CXAvailability_Deprecated,
135   /**
136    * \brief The entity is not available; any use of it will be an error.
137    */
138   CXAvailability_NotAvailable,
139   /**
140    * \brief The entity is available, but not accessible; any use of it will be
141    * an error.
142    */
143   CXAvailability_NotAccessible
144 };
145
146 /**
147  * \brief Describes a version number of the form major.minor.subminor.
148  */
149 typedef struct CXVersion {
150   /**
151    * \brief The major version number, e.g., the '10' in '10.7.3'. A negative
152    * value indicates that there is no version number at all.
153    */
154   int Major;
155   /**
156    * \brief The minor version number, e.g., the '7' in '10.7.3'. This value
157    * will be negative if no minor version number was provided, e.g., for 
158    * version '10'.
159    */
160   int Minor;
161   /**
162    * \brief The subminor version number, e.g., the '3' in '10.7.3'. This value
163    * will be negative if no minor or subminor version number was provided,
164    * e.g., in version '10' or '10.7'.
165    */
166   int Subminor;
167 } CXVersion;
168   
169 /**
170  * \brief Provides a shared context for creating translation units.
171  *
172  * It provides two options:
173  *
174  * - excludeDeclarationsFromPCH: When non-zero, allows enumeration of "local"
175  * declarations (when loading any new translation units). A "local" declaration
176  * is one that belongs in the translation unit itself and not in a precompiled
177  * header that was used by the translation unit. If zero, all declarations
178  * will be enumerated.
179  *
180  * Here is an example:
181  *
182  * \code
183  *   // excludeDeclsFromPCH = 1, displayDiagnostics=1
184  *   Idx = clang_createIndex(1, 1);
185  *
186  *   // IndexTest.pch was produced with the following command:
187  *   // "clang -x c IndexTest.h -emit-ast -o IndexTest.pch"
188  *   TU = clang_createTranslationUnit(Idx, "IndexTest.pch");
189  *
190  *   // This will load all the symbols from 'IndexTest.pch'
191  *   clang_visitChildren(clang_getTranslationUnitCursor(TU),
192  *                       TranslationUnitVisitor, 0);
193  *   clang_disposeTranslationUnit(TU);
194  *
195  *   // This will load all the symbols from 'IndexTest.c', excluding symbols
196  *   // from 'IndexTest.pch'.
197  *   char *args[] = { "-Xclang", "-include-pch=IndexTest.pch" };
198  *   TU = clang_createTranslationUnitFromSourceFile(Idx, "IndexTest.c", 2, args,
199  *                                                  0, 0);
200  *   clang_visitChildren(clang_getTranslationUnitCursor(TU),
201  *                       TranslationUnitVisitor, 0);
202  *   clang_disposeTranslationUnit(TU);
203  * \endcode
204  *
205  * This process of creating the 'pch', loading it separately, and using it (via
206  * -include-pch) allows 'excludeDeclsFromPCH' to remove redundant callbacks
207  * (which gives the indexer the same performance benefit as the compiler).
208  */
209 CINDEX_LINKAGE CXIndex clang_createIndex(int excludeDeclarationsFromPCH,
210                                          int displayDiagnostics);
211
212 /**
213  * \brief Destroy the given index.
214  *
215  * The index must not be destroyed until all of the translation units created
216  * within that index have been destroyed.
217  */
218 CINDEX_LINKAGE void clang_disposeIndex(CXIndex index);
219
220 typedef enum {
221   /**
222    * \brief Used to indicate that no special CXIndex options are needed.
223    */
224   CXGlobalOpt_None = 0x0,
225
226   /**
227    * \brief Used to indicate that threads that libclang creates for indexing
228    * purposes should use background priority.
229    *
230    * Affects #clang_indexSourceFile, #clang_indexTranslationUnit,
231    * #clang_parseTranslationUnit, #clang_saveTranslationUnit.
232    */
233   CXGlobalOpt_ThreadBackgroundPriorityForIndexing = 0x1,
234
235   /**
236    * \brief Used to indicate that threads that libclang creates for editing
237    * purposes should use background priority.
238    *
239    * Affects #clang_reparseTranslationUnit, #clang_codeCompleteAt,
240    * #clang_annotateTokens
241    */
242   CXGlobalOpt_ThreadBackgroundPriorityForEditing = 0x2,
243
244   /**
245    * \brief Used to indicate that all threads that libclang creates should use
246    * background priority.
247    */
248   CXGlobalOpt_ThreadBackgroundPriorityForAll =
249       CXGlobalOpt_ThreadBackgroundPriorityForIndexing |
250       CXGlobalOpt_ThreadBackgroundPriorityForEditing
251
252 } CXGlobalOptFlags;
253
254 /**
255  * \brief Sets general options associated with a CXIndex.
256  *
257  * For example:
258  * \code
259  * CXIndex idx = ...;
260  * clang_CXIndex_setGlobalOptions(idx,
261  *     clang_CXIndex_getGlobalOptions(idx) |
262  *     CXGlobalOpt_ThreadBackgroundPriorityForIndexing);
263  * \endcode
264  *
265  * \param options A bitmask of options, a bitwise OR of CXGlobalOpt_XXX flags.
266  */
267 CINDEX_LINKAGE void clang_CXIndex_setGlobalOptions(CXIndex, unsigned options);
268
269 /**
270  * \brief Gets the general options associated with a CXIndex.
271  *
272  * \returns A bitmask of options, a bitwise OR of CXGlobalOpt_XXX flags that
273  * are associated with the given CXIndex object.
274  */
275 CINDEX_LINKAGE unsigned clang_CXIndex_getGlobalOptions(CXIndex);
276
277 /**
278  * \defgroup CINDEX_FILES File manipulation routines
279  *
280  * @{
281  */
282
283 /**
284  * \brief A particular source file that is part of a translation unit.
285  */
286 typedef void *CXFile;
287
288 /**
289  * \brief Retrieve the complete file and path name of the given file.
290  */
291 CINDEX_LINKAGE CXString clang_getFileName(CXFile SFile);
292
293 /**
294  * \brief Retrieve the last modification time of the given file.
295  */
296 CINDEX_LINKAGE time_t clang_getFileTime(CXFile SFile);
297
298 /**
299  * \brief Uniquely identifies a CXFile, that refers to the same underlying file,
300  * across an indexing session.
301  */
302 typedef struct {
303   unsigned long long data[3];
304 } CXFileUniqueID;
305
306 /**
307  * \brief Retrieve the unique ID for the given \c file.
308  *
309  * \param file the file to get the ID for.
310  * \param outID stores the returned CXFileUniqueID.
311  * \returns If there was a failure getting the unique ID, returns non-zero,
312  * otherwise returns 0.
313 */
314 CINDEX_LINKAGE int clang_getFileUniqueID(CXFile file, CXFileUniqueID *outID);
315
316 /**
317  * \brief Determine whether the given header is guarded against
318  * multiple inclusions, either with the conventional
319  * \#ifndef/\#define/\#endif macro guards or with \#pragma once.
320  */
321 CINDEX_LINKAGE unsigned 
322 clang_isFileMultipleIncludeGuarded(CXTranslationUnit tu, CXFile file);
323
324 /**
325  * \brief Retrieve a file handle within the given translation unit.
326  *
327  * \param tu the translation unit
328  *
329  * \param file_name the name of the file.
330  *
331  * \returns the file handle for the named file in the translation unit \p tu,
332  * or a NULL file handle if the file was not a part of this translation unit.
333  */
334 CINDEX_LINKAGE CXFile clang_getFile(CXTranslationUnit tu,
335                                     const char *file_name);
336
337 /**
338  * \brief Returns non-zero if the \c file1 and \c file2 point to the same file,
339  * or they are both NULL.
340  */
341 CINDEX_LINKAGE int clang_File_isEqual(CXFile file1, CXFile file2);
342
343 /**
344  * @}
345  */
346
347 /**
348  * \defgroup CINDEX_LOCATIONS Physical source locations
349  *
350  * Clang represents physical source locations in its abstract syntax tree in
351  * great detail, with file, line, and column information for the majority of
352  * the tokens parsed in the source code. These data types and functions are
353  * used to represent source location information, either for a particular
354  * point in the program or for a range of points in the program, and extract
355  * specific location information from those data types.
356  *
357  * @{
358  */
359
360 /**
361  * \brief Identifies a specific source location within a translation
362  * unit.
363  *
364  * Use clang_getExpansionLocation() or clang_getSpellingLocation()
365  * to map a source location to a particular file, line, and column.
366  */
367 typedef struct {
368   const void *ptr_data[2];
369   unsigned int_data;
370 } CXSourceLocation;
371
372 /**
373  * \brief Identifies a half-open character range in the source code.
374  *
375  * Use clang_getRangeStart() and clang_getRangeEnd() to retrieve the
376  * starting and end locations from a source range, respectively.
377  */
378 typedef struct {
379   const void *ptr_data[2];
380   unsigned begin_int_data;
381   unsigned end_int_data;
382 } CXSourceRange;
383
384 /**
385  * \brief Retrieve a NULL (invalid) source location.
386  */
387 CINDEX_LINKAGE CXSourceLocation clang_getNullLocation(void);
388
389 /**
390  * \brief Determine whether two source locations, which must refer into
391  * the same translation unit, refer to exactly the same point in the source
392  * code.
393  *
394  * \returns non-zero if the source locations refer to the same location, zero
395  * if they refer to different locations.
396  */
397 CINDEX_LINKAGE unsigned clang_equalLocations(CXSourceLocation loc1,
398                                              CXSourceLocation loc2);
399
400 /**
401  * \brief Retrieves the source location associated with a given file/line/column
402  * in a particular translation unit.
403  */
404 CINDEX_LINKAGE CXSourceLocation clang_getLocation(CXTranslationUnit tu,
405                                                   CXFile file,
406                                                   unsigned line,
407                                                   unsigned column);
408 /**
409  * \brief Retrieves the source location associated with a given character offset
410  * in a particular translation unit.
411  */
412 CINDEX_LINKAGE CXSourceLocation clang_getLocationForOffset(CXTranslationUnit tu,
413                                                            CXFile file,
414                                                            unsigned offset);
415
416 /**
417  * \brief Returns non-zero if the given source location is in a system header.
418  */
419 CINDEX_LINKAGE int clang_Location_isInSystemHeader(CXSourceLocation location);
420
421 /**
422  * \brief Returns non-zero if the given source location is in the main file of
423  * the corresponding translation unit.
424  */
425 CINDEX_LINKAGE int clang_Location_isFromMainFile(CXSourceLocation location);
426
427 /**
428  * \brief Retrieve a NULL (invalid) source range.
429  */
430 CINDEX_LINKAGE CXSourceRange clang_getNullRange(void);
431
432 /**
433  * \brief Retrieve a source range given the beginning and ending source
434  * locations.
435  */
436 CINDEX_LINKAGE CXSourceRange clang_getRange(CXSourceLocation begin,
437                                             CXSourceLocation end);
438
439 /**
440  * \brief Determine whether two ranges are equivalent.
441  *
442  * \returns non-zero if the ranges are the same, zero if they differ.
443  */
444 CINDEX_LINKAGE unsigned clang_equalRanges(CXSourceRange range1,
445                                           CXSourceRange range2);
446
447 /**
448  * \brief Returns non-zero if \p range is null.
449  */
450 CINDEX_LINKAGE int clang_Range_isNull(CXSourceRange range);
451
452 /**
453  * \brief Retrieve the file, line, column, and offset represented by
454  * the given source location.
455  *
456  * If the location refers into a macro expansion, retrieves the
457  * location of the macro expansion.
458  *
459  * \param location the location within a source file that will be decomposed
460  * into its parts.
461  *
462  * \param file [out] if non-NULL, will be set to the file to which the given
463  * source location points.
464  *
465  * \param line [out] if non-NULL, will be set to the line to which the given
466  * source location points.
467  *
468  * \param column [out] if non-NULL, will be set to the column to which the given
469  * source location points.
470  *
471  * \param offset [out] if non-NULL, will be set to the offset into the
472  * buffer to which the given source location points.
473  */
474 CINDEX_LINKAGE void clang_getExpansionLocation(CXSourceLocation location,
475                                                CXFile *file,
476                                                unsigned *line,
477                                                unsigned *column,
478                                                unsigned *offset);
479
480 /**
481  * \brief Retrieve the file, line, column, and offset represented by
482  * the given source location, as specified in a # line directive.
483  *
484  * Example: given the following source code in a file somefile.c
485  *
486  * \code
487  * #123 "dummy.c" 1
488  *
489  * static int func(void)
490  * {
491  *     return 0;
492  * }
493  * \endcode
494  *
495  * the location information returned by this function would be
496  *
497  * File: dummy.c Line: 124 Column: 12
498  *
499  * whereas clang_getExpansionLocation would have returned
500  *
501  * File: somefile.c Line: 3 Column: 12
502  *
503  * \param location the location within a source file that will be decomposed
504  * into its parts.
505  *
506  * \param filename [out] if non-NULL, will be set to the filename of the
507  * source location. Note that filenames returned will be for "virtual" files,
508  * which don't necessarily exist on the machine running clang - e.g. when
509  * parsing preprocessed output obtained from a different environment. If
510  * a non-NULL value is passed in, remember to dispose of the returned value
511  * using \c clang_disposeString() once you've finished with it. For an invalid
512  * source location, an empty string is returned.
513  *
514  * \param line [out] if non-NULL, will be set to the line number of the
515  * source location. For an invalid source location, zero is returned.
516  *
517  * \param column [out] if non-NULL, will be set to the column number of the
518  * source location. For an invalid source location, zero is returned.
519  */
520 CINDEX_LINKAGE void clang_getPresumedLocation(CXSourceLocation location,
521                                               CXString *filename,
522                                               unsigned *line,
523                                               unsigned *column);
524
525 /**
526  * \brief Legacy API to retrieve the file, line, column, and offset represented
527  * by the given source location.
528  *
529  * This interface has been replaced by the newer interface
530  * #clang_getExpansionLocation(). See that interface's documentation for
531  * details.
532  */
533 CINDEX_LINKAGE void clang_getInstantiationLocation(CXSourceLocation location,
534                                                    CXFile *file,
535                                                    unsigned *line,
536                                                    unsigned *column,
537                                                    unsigned *offset);
538
539 /**
540  * \brief Retrieve the file, line, column, and offset represented by
541  * the given source location.
542  *
543  * If the location refers into a macro instantiation, return where the
544  * location was originally spelled in the source file.
545  *
546  * \param location the location within a source file that will be decomposed
547  * into its parts.
548  *
549  * \param file [out] if non-NULL, will be set to the file to which the given
550  * source location points.
551  *
552  * \param line [out] if non-NULL, will be set to the line to which the given
553  * source location points.
554  *
555  * \param column [out] if non-NULL, will be set to the column to which the given
556  * source location points.
557  *
558  * \param offset [out] if non-NULL, will be set to the offset into the
559  * buffer to which the given source location points.
560  */
561 CINDEX_LINKAGE void clang_getSpellingLocation(CXSourceLocation location,
562                                               CXFile *file,
563                                               unsigned *line,
564                                               unsigned *column,
565                                               unsigned *offset);
566
567 /**
568  * \brief Retrieve the file, line, column, and offset represented by
569  * the given source location.
570  *
571  * If the location refers into a macro expansion, return where the macro was
572  * expanded or where the macro argument was written, if the location points at
573  * a macro argument.
574  *
575  * \param location the location within a source file that will be decomposed
576  * into its parts.
577  *
578  * \param file [out] if non-NULL, will be set to the file to which the given
579  * source location points.
580  *
581  * \param line [out] if non-NULL, will be set to the line to which the given
582  * source location points.
583  *
584  * \param column [out] if non-NULL, will be set to the column to which the given
585  * source location points.
586  *
587  * \param offset [out] if non-NULL, will be set to the offset into the
588  * buffer to which the given source location points.
589  */
590 CINDEX_LINKAGE void clang_getFileLocation(CXSourceLocation location,
591                                           CXFile *file,
592                                           unsigned *line,
593                                           unsigned *column,
594                                           unsigned *offset);
595
596 /**
597  * \brief Retrieve a source location representing the first character within a
598  * source range.
599  */
600 CINDEX_LINKAGE CXSourceLocation clang_getRangeStart(CXSourceRange range);
601
602 /**
603  * \brief Retrieve a source location representing the last character within a
604  * source range.
605  */
606 CINDEX_LINKAGE CXSourceLocation clang_getRangeEnd(CXSourceRange range);
607
608 /**
609  * \brief Identifies an array of ranges.
610  */
611 typedef struct {
612   /** \brief The number of ranges in the \c ranges array. */
613   unsigned count;
614   /**
615    * \brief An array of \c CXSourceRanges.
616    */
617   CXSourceRange *ranges;
618 } CXSourceRangeList;
619
620 /**
621  * \brief Retrieve all ranges that were skipped by the preprocessor.
622  *
623  * The preprocessor will skip lines when they are surrounded by an
624  * if/ifdef/ifndef directive whose condition does not evaluate to true.
625  */
626 CINDEX_LINKAGE CXSourceRangeList *clang_getSkippedRanges(CXTranslationUnit tu,
627                                                          CXFile file);
628
629 /**
630  * \brief Retrieve all ranges from all files that were skipped by the
631  * preprocessor.
632  *
633  * The preprocessor will skip lines when they are surrounded by an
634  * if/ifdef/ifndef directive whose condition does not evaluate to true.
635  */
636 CINDEX_LINKAGE CXSourceRangeList *clang_getAllSkippedRanges(CXTranslationUnit tu);
637
638 /**
639  * \brief Destroy the given \c CXSourceRangeList.
640  */
641 CINDEX_LINKAGE void clang_disposeSourceRangeList(CXSourceRangeList *ranges);
642
643 /**
644  * @}
645  */
646
647 /**
648  * \defgroup CINDEX_DIAG Diagnostic reporting
649  *
650  * @{
651  */
652
653 /**
654  * \brief Describes the severity of a particular diagnostic.
655  */
656 enum CXDiagnosticSeverity {
657   /**
658    * \brief A diagnostic that has been suppressed, e.g., by a command-line
659    * option.
660    */
661   CXDiagnostic_Ignored = 0,
662
663   /**
664    * \brief This diagnostic is a note that should be attached to the
665    * previous (non-note) diagnostic.
666    */
667   CXDiagnostic_Note    = 1,
668
669   /**
670    * \brief This diagnostic indicates suspicious code that may not be
671    * wrong.
672    */
673   CXDiagnostic_Warning = 2,
674
675   /**
676    * \brief This diagnostic indicates that the code is ill-formed.
677    */
678   CXDiagnostic_Error   = 3,
679
680   /**
681    * \brief This diagnostic indicates that the code is ill-formed such
682    * that future parser recovery is unlikely to produce useful
683    * results.
684    */
685   CXDiagnostic_Fatal   = 4
686 };
687
688 /**
689  * \brief A single diagnostic, containing the diagnostic's severity,
690  * location, text, source ranges, and fix-it hints.
691  */
692 typedef void *CXDiagnostic;
693
694 /**
695  * \brief A group of CXDiagnostics.
696  */
697 typedef void *CXDiagnosticSet;
698   
699 /**
700  * \brief Determine the number of diagnostics in a CXDiagnosticSet.
701  */
702 CINDEX_LINKAGE unsigned clang_getNumDiagnosticsInSet(CXDiagnosticSet Diags);
703
704 /**
705  * \brief Retrieve a diagnostic associated with the given CXDiagnosticSet.
706  *
707  * \param Diags the CXDiagnosticSet to query.
708  * \param Index the zero-based diagnostic number to retrieve.
709  *
710  * \returns the requested diagnostic. This diagnostic must be freed
711  * via a call to \c clang_disposeDiagnostic().
712  */
713 CINDEX_LINKAGE CXDiagnostic clang_getDiagnosticInSet(CXDiagnosticSet Diags,
714                                                      unsigned Index);  
715
716 /**
717  * \brief Describes the kind of error that occurred (if any) in a call to
718  * \c clang_loadDiagnostics.
719  */
720 enum CXLoadDiag_Error {
721   /**
722    * \brief Indicates that no error occurred.
723    */
724   CXLoadDiag_None = 0,
725   
726   /**
727    * \brief Indicates that an unknown error occurred while attempting to
728    * deserialize diagnostics.
729    */
730   CXLoadDiag_Unknown = 1,
731   
732   /**
733    * \brief Indicates that the file containing the serialized diagnostics
734    * could not be opened.
735    */
736   CXLoadDiag_CannotLoad = 2,
737   
738   /**
739    * \brief Indicates that the serialized diagnostics file is invalid or
740    * corrupt.
741    */
742   CXLoadDiag_InvalidFile = 3
743 };
744   
745 /**
746  * \brief Deserialize a set of diagnostics from a Clang diagnostics bitcode
747  * file.
748  *
749  * \param file The name of the file to deserialize.
750  * \param error A pointer to a enum value recording if there was a problem
751  *        deserializing the diagnostics.
752  * \param errorString A pointer to a CXString for recording the error string
753  *        if the file was not successfully loaded.
754  *
755  * \returns A loaded CXDiagnosticSet if successful, and NULL otherwise.  These
756  * diagnostics should be released using clang_disposeDiagnosticSet().
757  */
758 CINDEX_LINKAGE CXDiagnosticSet clang_loadDiagnostics(const char *file,
759                                                   enum CXLoadDiag_Error *error,
760                                                   CXString *errorString);
761
762 /**
763  * \brief Release a CXDiagnosticSet and all of its contained diagnostics.
764  */
765 CINDEX_LINKAGE void clang_disposeDiagnosticSet(CXDiagnosticSet Diags);
766
767 /**
768  * \brief Retrieve the child diagnostics of a CXDiagnostic. 
769  *
770  * This CXDiagnosticSet does not need to be released by
771  * clang_disposeDiagnosticSet.
772  */
773 CINDEX_LINKAGE CXDiagnosticSet clang_getChildDiagnostics(CXDiagnostic D);
774
775 /**
776  * \brief Determine the number of diagnostics produced for the given
777  * translation unit.
778  */
779 CINDEX_LINKAGE unsigned clang_getNumDiagnostics(CXTranslationUnit Unit);
780
781 /**
782  * \brief Retrieve a diagnostic associated with the given translation unit.
783  *
784  * \param Unit the translation unit to query.
785  * \param Index the zero-based diagnostic number to retrieve.
786  *
787  * \returns the requested diagnostic. This diagnostic must be freed
788  * via a call to \c clang_disposeDiagnostic().
789  */
790 CINDEX_LINKAGE CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit,
791                                                 unsigned Index);
792
793 /**
794  * \brief Retrieve the complete set of diagnostics associated with a
795  *        translation unit.
796  *
797  * \param Unit the translation unit to query.
798  */
799 CINDEX_LINKAGE CXDiagnosticSet
800   clang_getDiagnosticSetFromTU(CXTranslationUnit Unit);  
801
802 /**
803  * \brief Destroy a diagnostic.
804  */
805 CINDEX_LINKAGE void clang_disposeDiagnostic(CXDiagnostic Diagnostic);
806
807 /**
808  * \brief Options to control the display of diagnostics.
809  *
810  * The values in this enum are meant to be combined to customize the
811  * behavior of \c clang_formatDiagnostic().
812  */
813 enum CXDiagnosticDisplayOptions {
814   /**
815    * \brief Display the source-location information where the
816    * diagnostic was located.
817    *
818    * When set, diagnostics will be prefixed by the file, line, and
819    * (optionally) column to which the diagnostic refers. For example,
820    *
821    * \code
822    * test.c:28: warning: extra tokens at end of #endif directive
823    * \endcode
824    *
825    * This option corresponds to the clang flag \c -fshow-source-location.
826    */
827   CXDiagnostic_DisplaySourceLocation = 0x01,
828
829   /**
830    * \brief If displaying the source-location information of the
831    * diagnostic, also include the column number.
832    *
833    * This option corresponds to the clang flag \c -fshow-column.
834    */
835   CXDiagnostic_DisplayColumn = 0x02,
836
837   /**
838    * \brief If displaying the source-location information of the
839    * diagnostic, also include information about source ranges in a
840    * machine-parsable format.
841    *
842    * This option corresponds to the clang flag
843    * \c -fdiagnostics-print-source-range-info.
844    */
845   CXDiagnostic_DisplaySourceRanges = 0x04,
846   
847   /**
848    * \brief Display the option name associated with this diagnostic, if any.
849    *
850    * The option name displayed (e.g., -Wconversion) will be placed in brackets
851    * after the diagnostic text. This option corresponds to the clang flag
852    * \c -fdiagnostics-show-option.
853    */
854   CXDiagnostic_DisplayOption = 0x08,
855   
856   /**
857    * \brief Display the category number associated with this diagnostic, if any.
858    *
859    * The category number is displayed within brackets after the diagnostic text.
860    * This option corresponds to the clang flag 
861    * \c -fdiagnostics-show-category=id.
862    */
863   CXDiagnostic_DisplayCategoryId = 0x10,
864
865   /**
866    * \brief Display the category name associated with this diagnostic, if any.
867    *
868    * The category name is displayed within brackets after the diagnostic text.
869    * This option corresponds to the clang flag 
870    * \c -fdiagnostics-show-category=name.
871    */
872   CXDiagnostic_DisplayCategoryName = 0x20
873 };
874
875 /**
876  * \brief Format the given diagnostic in a manner that is suitable for display.
877  *
878  * This routine will format the given diagnostic to a string, rendering
879  * the diagnostic according to the various options given. The
880  * \c clang_defaultDiagnosticDisplayOptions() function returns the set of
881  * options that most closely mimics the behavior of the clang compiler.
882  *
883  * \param Diagnostic The diagnostic to print.
884  *
885  * \param Options A set of options that control the diagnostic display,
886  * created by combining \c CXDiagnosticDisplayOptions values.
887  *
888  * \returns A new string containing for formatted diagnostic.
889  */
890 CINDEX_LINKAGE CXString clang_formatDiagnostic(CXDiagnostic Diagnostic,
891                                                unsigned Options);
892
893 /**
894  * \brief Retrieve the set of display options most similar to the
895  * default behavior of the clang compiler.
896  *
897  * \returns A set of display options suitable for use with \c
898  * clang_formatDiagnostic().
899  */
900 CINDEX_LINKAGE unsigned clang_defaultDiagnosticDisplayOptions(void);
901
902 /**
903  * \brief Determine the severity of the given diagnostic.
904  */
905 CINDEX_LINKAGE enum CXDiagnosticSeverity
906 clang_getDiagnosticSeverity(CXDiagnostic);
907
908 /**
909  * \brief Retrieve the source location of the given diagnostic.
910  *
911  * This location is where Clang would print the caret ('^') when
912  * displaying the diagnostic on the command line.
913  */
914 CINDEX_LINKAGE CXSourceLocation clang_getDiagnosticLocation(CXDiagnostic);
915
916 /**
917  * \brief Retrieve the text of the given diagnostic.
918  */
919 CINDEX_LINKAGE CXString clang_getDiagnosticSpelling(CXDiagnostic);
920
921 /**
922  * \brief Retrieve the name of the command-line option that enabled this
923  * diagnostic.
924  *
925  * \param Diag The diagnostic to be queried.
926  *
927  * \param Disable If non-NULL, will be set to the option that disables this
928  * diagnostic (if any).
929  *
930  * \returns A string that contains the command-line option used to enable this
931  * warning, such as "-Wconversion" or "-pedantic". 
932  */
933 CINDEX_LINKAGE CXString clang_getDiagnosticOption(CXDiagnostic Diag,
934                                                   CXString *Disable);
935
936 /**
937  * \brief Retrieve the category number for this diagnostic.
938  *
939  * Diagnostics can be categorized into groups along with other, related
940  * diagnostics (e.g., diagnostics under the same warning flag). This routine 
941  * retrieves the category number for the given diagnostic.
942  *
943  * \returns The number of the category that contains this diagnostic, or zero
944  * if this diagnostic is uncategorized.
945  */
946 CINDEX_LINKAGE unsigned clang_getDiagnosticCategory(CXDiagnostic);
947
948 /**
949  * \brief Retrieve the name of a particular diagnostic category.  This
950  *  is now deprecated.  Use clang_getDiagnosticCategoryText()
951  *  instead.
952  *
953  * \param Category A diagnostic category number, as returned by 
954  * \c clang_getDiagnosticCategory().
955  *
956  * \returns The name of the given diagnostic category.
957  */
958 CINDEX_DEPRECATED CINDEX_LINKAGE
959 CXString clang_getDiagnosticCategoryName(unsigned Category);
960
961 /**
962  * \brief Retrieve the diagnostic category text for a given diagnostic.
963  *
964  * \returns The text of the given diagnostic category.
965  */
966 CINDEX_LINKAGE CXString clang_getDiagnosticCategoryText(CXDiagnostic);
967   
968 /**
969  * \brief Determine the number of source ranges associated with the given
970  * diagnostic.
971  */
972 CINDEX_LINKAGE unsigned clang_getDiagnosticNumRanges(CXDiagnostic);
973
974 /**
975  * \brief Retrieve a source range associated with the diagnostic.
976  *
977  * A diagnostic's source ranges highlight important elements in the source
978  * code. On the command line, Clang displays source ranges by
979  * underlining them with '~' characters.
980  *
981  * \param Diagnostic the diagnostic whose range is being extracted.
982  *
983  * \param Range the zero-based index specifying which range to
984  *
985  * \returns the requested source range.
986  */
987 CINDEX_LINKAGE CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diagnostic,
988                                                       unsigned Range);
989
990 /**
991  * \brief Determine the number of fix-it hints associated with the
992  * given diagnostic.
993  */
994 CINDEX_LINKAGE unsigned clang_getDiagnosticNumFixIts(CXDiagnostic Diagnostic);
995
996 /**
997  * \brief Retrieve the replacement information for a given fix-it.
998  *
999  * Fix-its are described in terms of a source range whose contents
1000  * should be replaced by a string. This approach generalizes over
1001  * three kinds of operations: removal of source code (the range covers
1002  * the code to be removed and the replacement string is empty),
1003  * replacement of source code (the range covers the code to be
1004  * replaced and the replacement string provides the new code), and
1005  * insertion (both the start and end of the range point at the
1006  * insertion location, and the replacement string provides the text to
1007  * insert).
1008  *
1009  * \param Diagnostic The diagnostic whose fix-its are being queried.
1010  *
1011  * \param FixIt The zero-based index of the fix-it.
1012  *
1013  * \param ReplacementRange The source range whose contents will be
1014  * replaced with the returned replacement string. Note that source
1015  * ranges are half-open ranges [a, b), so the source code should be
1016  * replaced from a and up to (but not including) b.
1017  *
1018  * \returns A string containing text that should be replace the source
1019  * code indicated by the \c ReplacementRange.
1020  */
1021 CINDEX_LINKAGE CXString clang_getDiagnosticFixIt(CXDiagnostic Diagnostic,
1022                                                  unsigned FixIt,
1023                                                CXSourceRange *ReplacementRange);
1024
1025 /**
1026  * @}
1027  */
1028
1029 /**
1030  * \defgroup CINDEX_TRANSLATION_UNIT Translation unit manipulation
1031  *
1032  * The routines in this group provide the ability to create and destroy
1033  * translation units from files, either by parsing the contents of the files or
1034  * by reading in a serialized representation of a translation unit.
1035  *
1036  * @{
1037  */
1038
1039 /**
1040  * \brief Get the original translation unit source file name.
1041  */
1042 CINDEX_LINKAGE CXString
1043 clang_getTranslationUnitSpelling(CXTranslationUnit CTUnit);
1044
1045 /**
1046  * \brief Return the CXTranslationUnit for a given source file and the provided
1047  * command line arguments one would pass to the compiler.
1048  *
1049  * Note: The 'source_filename' argument is optional.  If the caller provides a
1050  * NULL pointer, the name of the source file is expected to reside in the
1051  * specified command line arguments.
1052  *
1053  * Note: When encountered in 'clang_command_line_args', the following options
1054  * are ignored:
1055  *
1056  *   '-c'
1057  *   '-emit-ast'
1058  *   '-fsyntax-only'
1059  *   '-o \<output file>'  (both '-o' and '\<output file>' are ignored)
1060  *
1061  * \param CIdx The index object with which the translation unit will be
1062  * associated.
1063  *
1064  * \param source_filename The name of the source file to load, or NULL if the
1065  * source file is included in \p clang_command_line_args.
1066  *
1067  * \param num_clang_command_line_args The number of command-line arguments in
1068  * \p clang_command_line_args.
1069  *
1070  * \param clang_command_line_args The command-line arguments that would be
1071  * passed to the \c clang executable if it were being invoked out-of-process.
1072  * These command-line options will be parsed and will affect how the translation
1073  * unit is parsed. Note that the following options are ignored: '-c',
1074  * '-emit-ast', '-fsyntax-only' (which is the default), and '-o \<output file>'.
1075  *
1076  * \param num_unsaved_files the number of unsaved file entries in \p
1077  * unsaved_files.
1078  *
1079  * \param unsaved_files the files that have not yet been saved to disk
1080  * but may be required for code completion, including the contents of
1081  * those files.  The contents and name of these files (as specified by
1082  * CXUnsavedFile) are copied when necessary, so the client only needs to
1083  * guarantee their validity until the call to this function returns.
1084  */
1085 CINDEX_LINKAGE CXTranslationUnit clang_createTranslationUnitFromSourceFile(
1086                                          CXIndex CIdx,
1087                                          const char *source_filename,
1088                                          int num_clang_command_line_args,
1089                                    const char * const *clang_command_line_args,
1090                                          unsigned num_unsaved_files,
1091                                          struct CXUnsavedFile *unsaved_files);
1092
1093 /**
1094  * \brief Same as \c clang_createTranslationUnit2, but returns
1095  * the \c CXTranslationUnit instead of an error code.  In case of an error this
1096  * routine returns a \c NULL \c CXTranslationUnit, without further detailed
1097  * error codes.
1098  */
1099 CINDEX_LINKAGE CXTranslationUnit clang_createTranslationUnit(
1100     CXIndex CIdx,
1101     const char *ast_filename);
1102
1103 /**
1104  * \brief Create a translation unit from an AST file (\c -emit-ast).
1105  *
1106  * \param[out] out_TU A non-NULL pointer to store the created
1107  * \c CXTranslationUnit.
1108  *
1109  * \returns Zero on success, otherwise returns an error code.
1110  */
1111 CINDEX_LINKAGE enum CXErrorCode clang_createTranslationUnit2(
1112     CXIndex CIdx,
1113     const char *ast_filename,
1114     CXTranslationUnit *out_TU);
1115
1116 /**
1117  * \brief Flags that control the creation of translation units.
1118  *
1119  * The enumerators in this enumeration type are meant to be bitwise
1120  * ORed together to specify which options should be used when
1121  * constructing the translation unit.
1122  */
1123 enum CXTranslationUnit_Flags {
1124   /**
1125    * \brief Used to indicate that no special translation-unit options are
1126    * needed.
1127    */
1128   CXTranslationUnit_None = 0x0,
1129
1130   /**
1131    * \brief Used to indicate that the parser should construct a "detailed"
1132    * preprocessing record, including all macro definitions and instantiations.
1133    *
1134    * Constructing a detailed preprocessing record requires more memory
1135    * and time to parse, since the information contained in the record
1136    * is usually not retained. However, it can be useful for
1137    * applications that require more detailed information about the
1138    * behavior of the preprocessor.
1139    */
1140   CXTranslationUnit_DetailedPreprocessingRecord = 0x01,
1141
1142   /**
1143    * \brief Used to indicate that the translation unit is incomplete.
1144    *
1145    * When a translation unit is considered "incomplete", semantic
1146    * analysis that is typically performed at the end of the
1147    * translation unit will be suppressed. For example, this suppresses
1148    * the completion of tentative declarations in C and of
1149    * instantiation of implicitly-instantiation function templates in
1150    * C++. This option is typically used when parsing a header with the
1151    * intent of producing a precompiled header.
1152    */
1153   CXTranslationUnit_Incomplete = 0x02,
1154   
1155   /**
1156    * \brief Used to indicate that the translation unit should be built with an 
1157    * implicit precompiled header for the preamble.
1158    *
1159    * An implicit precompiled header is used as an optimization when a
1160    * particular translation unit is likely to be reparsed many times
1161    * when the sources aren't changing that often. In this case, an
1162    * implicit precompiled header will be built containing all of the
1163    * initial includes at the top of the main file (what we refer to as
1164    * the "preamble" of the file). In subsequent parses, if the
1165    * preamble or the files in it have not changed, \c
1166    * clang_reparseTranslationUnit() will re-use the implicit
1167    * precompiled header to improve parsing performance.
1168    */
1169   CXTranslationUnit_PrecompiledPreamble = 0x04,
1170   
1171   /**
1172    * \brief Used to indicate that the translation unit should cache some
1173    * code-completion results with each reparse of the source file.
1174    *
1175    * Caching of code-completion results is a performance optimization that
1176    * introduces some overhead to reparsing but improves the performance of
1177    * code-completion operations.
1178    */
1179   CXTranslationUnit_CacheCompletionResults = 0x08,
1180
1181   /**
1182    * \brief Used to indicate that the translation unit will be serialized with
1183    * \c clang_saveTranslationUnit.
1184    *
1185    * This option is typically used when parsing a header with the intent of
1186    * producing a precompiled header.
1187    */
1188   CXTranslationUnit_ForSerialization = 0x10,
1189
1190   /**
1191    * \brief DEPRECATED: Enabled chained precompiled preambles in C++.
1192    *
1193    * Note: this is a *temporary* option that is available only while
1194    * we are testing C++ precompiled preamble support. It is deprecated.
1195    */
1196   CXTranslationUnit_CXXChainedPCH = 0x20,
1197
1198   /**
1199    * \brief Used to indicate that function/method bodies should be skipped while
1200    * parsing.
1201    *
1202    * This option can be used to search for declarations/definitions while
1203    * ignoring the usages.
1204    */
1205   CXTranslationUnit_SkipFunctionBodies = 0x40,
1206
1207   /**
1208    * \brief Used to indicate that brief documentation comments should be
1209    * included into the set of code completions returned from this translation
1210    * unit.
1211    */
1212   CXTranslationUnit_IncludeBriefCommentsInCodeCompletion = 0x80,
1213
1214   /**
1215    * \brief Used to indicate that the precompiled preamble should be created on
1216    * the first parse. Otherwise it will be created on the first reparse. This
1217    * trades runtime on the first parse (serializing the preamble takes time) for
1218    * reduced runtime on the second parse (can now reuse the preamble).
1219    */
1220   CXTranslationUnit_CreatePreambleOnFirstParse = 0x100,
1221
1222   /**
1223    * \brief Do not stop processing when fatal errors are encountered.
1224    *
1225    * When fatal errors are encountered while parsing a translation unit,
1226    * semantic analysis is typically stopped early when compiling code. A common
1227    * source for fatal errors are unresolvable include files. For the
1228    * purposes of an IDE, this is undesirable behavior and as much information
1229    * as possible should be reported. Use this flag to enable this behavior.
1230    */
1231   CXTranslationUnit_KeepGoing = 0x200
1232 };
1233
1234 /**
1235  * \brief Returns the set of flags that is suitable for parsing a translation
1236  * unit that is being edited.
1237  *
1238  * The set of flags returned provide options for \c clang_parseTranslationUnit()
1239  * to indicate that the translation unit is likely to be reparsed many times,
1240  * either explicitly (via \c clang_reparseTranslationUnit()) or implicitly
1241  * (e.g., by code completion (\c clang_codeCompletionAt())). The returned flag
1242  * set contains an unspecified set of optimizations (e.g., the precompiled 
1243  * preamble) geared toward improving the performance of these routines. The
1244  * set of optimizations enabled may change from one version to the next.
1245  */
1246 CINDEX_LINKAGE unsigned clang_defaultEditingTranslationUnitOptions(void);
1247
1248 /**
1249  * \brief Same as \c clang_parseTranslationUnit2, but returns
1250  * the \c CXTranslationUnit instead of an error code.  In case of an error this
1251  * routine returns a \c NULL \c CXTranslationUnit, without further detailed
1252  * error codes.
1253  */
1254 CINDEX_LINKAGE CXTranslationUnit
1255 clang_parseTranslationUnit(CXIndex CIdx,
1256                            const char *source_filename,
1257                            const char *const *command_line_args,
1258                            int num_command_line_args,
1259                            struct CXUnsavedFile *unsaved_files,
1260                            unsigned num_unsaved_files,
1261                            unsigned options);
1262
1263 /**
1264  * \brief Parse the given source file and the translation unit corresponding
1265  * to that file.
1266  *
1267  * This routine is the main entry point for the Clang C API, providing the
1268  * ability to parse a source file into a translation unit that can then be
1269  * queried by other functions in the API. This routine accepts a set of
1270  * command-line arguments so that the compilation can be configured in the same
1271  * way that the compiler is configured on the command line.
1272  *
1273  * \param CIdx The index object with which the translation unit will be 
1274  * associated.
1275  *
1276  * \param source_filename The name of the source file to load, or NULL if the
1277  * source file is included in \c command_line_args.
1278  *
1279  * \param command_line_args The command-line arguments that would be
1280  * passed to the \c clang executable if it were being invoked out-of-process.
1281  * These command-line options will be parsed and will affect how the translation
1282  * unit is parsed. Note that the following options are ignored: '-c', 
1283  * '-emit-ast', '-fsyntax-only' (which is the default), and '-o \<output file>'.
1284  *
1285  * \param num_command_line_args The number of command-line arguments in
1286  * \c command_line_args.
1287  *
1288  * \param unsaved_files the files that have not yet been saved to disk
1289  * but may be required for parsing, including the contents of
1290  * those files.  The contents and name of these files (as specified by
1291  * CXUnsavedFile) are copied when necessary, so the client only needs to
1292  * guarantee their validity until the call to this function returns.
1293  *
1294  * \param num_unsaved_files the number of unsaved file entries in \p
1295  * unsaved_files.
1296  *
1297  * \param options A bitmask of options that affects how the translation unit
1298  * is managed but not its compilation. This should be a bitwise OR of the
1299  * CXTranslationUnit_XXX flags.
1300  *
1301  * \param[out] out_TU A non-NULL pointer to store the created
1302  * \c CXTranslationUnit, describing the parsed code and containing any
1303  * diagnostics produced by the compiler.
1304  *
1305  * \returns Zero on success, otherwise returns an error code.
1306  */
1307 CINDEX_LINKAGE enum CXErrorCode
1308 clang_parseTranslationUnit2(CXIndex CIdx,
1309                             const char *source_filename,
1310                             const char *const *command_line_args,
1311                             int num_command_line_args,
1312                             struct CXUnsavedFile *unsaved_files,
1313                             unsigned num_unsaved_files,
1314                             unsigned options,
1315                             CXTranslationUnit *out_TU);
1316
1317 /**
1318  * \brief Same as clang_parseTranslationUnit2 but requires a full command line
1319  * for \c command_line_args including argv[0]. This is useful if the standard
1320  * library paths are relative to the binary.
1321  */
1322 CINDEX_LINKAGE enum CXErrorCode clang_parseTranslationUnit2FullArgv(
1323     CXIndex CIdx, const char *source_filename,
1324     const char *const *command_line_args, int num_command_line_args,
1325     struct CXUnsavedFile *unsaved_files, unsigned num_unsaved_files,
1326     unsigned options, CXTranslationUnit *out_TU);
1327
1328 /**
1329  * \brief Flags that control how translation units are saved.
1330  *
1331  * The enumerators in this enumeration type are meant to be bitwise
1332  * ORed together to specify which options should be used when
1333  * saving the translation unit.
1334  */
1335 enum CXSaveTranslationUnit_Flags {
1336   /**
1337    * \brief Used to indicate that no special saving options are needed.
1338    */
1339   CXSaveTranslationUnit_None = 0x0
1340 };
1341
1342 /**
1343  * \brief Returns the set of flags that is suitable for saving a translation
1344  * unit.
1345  *
1346  * The set of flags returned provide options for
1347  * \c clang_saveTranslationUnit() by default. The returned flag
1348  * set contains an unspecified set of options that save translation units with
1349  * the most commonly-requested data.
1350  */
1351 CINDEX_LINKAGE unsigned clang_defaultSaveOptions(CXTranslationUnit TU);
1352
1353 /**
1354  * \brief Describes the kind of error that occurred (if any) in a call to
1355  * \c clang_saveTranslationUnit().
1356  */
1357 enum CXSaveError {
1358   /**
1359    * \brief Indicates that no error occurred while saving a translation unit.
1360    */
1361   CXSaveError_None = 0,
1362   
1363   /**
1364    * \brief Indicates that an unknown error occurred while attempting to save
1365    * the file.
1366    *
1367    * This error typically indicates that file I/O failed when attempting to 
1368    * write the file.
1369    */
1370   CXSaveError_Unknown = 1,
1371   
1372   /**
1373    * \brief Indicates that errors during translation prevented this attempt
1374    * to save the translation unit.
1375    * 
1376    * Errors that prevent the translation unit from being saved can be
1377    * extracted using \c clang_getNumDiagnostics() and \c clang_getDiagnostic().
1378    */
1379   CXSaveError_TranslationErrors = 2,
1380   
1381   /**
1382    * \brief Indicates that the translation unit to be saved was somehow
1383    * invalid (e.g., NULL).
1384    */
1385   CXSaveError_InvalidTU = 3
1386 };
1387   
1388 /**
1389  * \brief Saves a translation unit into a serialized representation of
1390  * that translation unit on disk.
1391  *
1392  * Any translation unit that was parsed without error can be saved
1393  * into a file. The translation unit can then be deserialized into a
1394  * new \c CXTranslationUnit with \c clang_createTranslationUnit() or,
1395  * if it is an incomplete translation unit that corresponds to a
1396  * header, used as a precompiled header when parsing other translation
1397  * units.
1398  *
1399  * \param TU The translation unit to save.
1400  *
1401  * \param FileName The file to which the translation unit will be saved.
1402  *
1403  * \param options A bitmask of options that affects how the translation unit
1404  * is saved. This should be a bitwise OR of the
1405  * CXSaveTranslationUnit_XXX flags.
1406  *
1407  * \returns A value that will match one of the enumerators of the CXSaveError
1408  * enumeration. Zero (CXSaveError_None) indicates that the translation unit was 
1409  * saved successfully, while a non-zero value indicates that a problem occurred.
1410  */
1411 CINDEX_LINKAGE int clang_saveTranslationUnit(CXTranslationUnit TU,
1412                                              const char *FileName,
1413                                              unsigned options);
1414
1415 /**
1416  * \brief Destroy the specified CXTranslationUnit object.
1417  */
1418 CINDEX_LINKAGE void clang_disposeTranslationUnit(CXTranslationUnit);
1419
1420 /**
1421  * \brief Flags that control the reparsing of translation units.
1422  *
1423  * The enumerators in this enumeration type are meant to be bitwise
1424  * ORed together to specify which options should be used when
1425  * reparsing the translation unit.
1426  */
1427 enum CXReparse_Flags {
1428   /**
1429    * \brief Used to indicate that no special reparsing options are needed.
1430    */
1431   CXReparse_None = 0x0
1432 };
1433  
1434 /**
1435  * \brief Returns the set of flags that is suitable for reparsing a translation
1436  * unit.
1437  *
1438  * The set of flags returned provide options for
1439  * \c clang_reparseTranslationUnit() by default. The returned flag
1440  * set contains an unspecified set of optimizations geared toward common uses
1441  * of reparsing. The set of optimizations enabled may change from one version 
1442  * to the next.
1443  */
1444 CINDEX_LINKAGE unsigned clang_defaultReparseOptions(CXTranslationUnit TU);
1445
1446 /**
1447  * \brief Reparse the source files that produced this translation unit.
1448  *
1449  * This routine can be used to re-parse the source files that originally
1450  * created the given translation unit, for example because those source files
1451  * have changed (either on disk or as passed via \p unsaved_files). The
1452  * source code will be reparsed with the same command-line options as it
1453  * was originally parsed. 
1454  *
1455  * Reparsing a translation unit invalidates all cursors and source locations
1456  * that refer into that translation unit. This makes reparsing a translation
1457  * unit semantically equivalent to destroying the translation unit and then
1458  * creating a new translation unit with the same command-line arguments.
1459  * However, it may be more efficient to reparse a translation 
1460  * unit using this routine.
1461  *
1462  * \param TU The translation unit whose contents will be re-parsed. The
1463  * translation unit must originally have been built with 
1464  * \c clang_createTranslationUnitFromSourceFile().
1465  *
1466  * \param num_unsaved_files The number of unsaved file entries in \p
1467  * unsaved_files.
1468  *
1469  * \param unsaved_files The files that have not yet been saved to disk
1470  * but may be required for parsing, including the contents of
1471  * those files.  The contents and name of these files (as specified by
1472  * CXUnsavedFile) are copied when necessary, so the client only needs to
1473  * guarantee their validity until the call to this function returns.
1474  * 
1475  * \param options A bitset of options composed of the flags in CXReparse_Flags.
1476  * The function \c clang_defaultReparseOptions() produces a default set of
1477  * options recommended for most uses, based on the translation unit.
1478  *
1479  * \returns 0 if the sources could be reparsed.  A non-zero error code will be
1480  * returned if reparsing was impossible, such that the translation unit is
1481  * invalid. In such cases, the only valid call for \c TU is
1482  * \c clang_disposeTranslationUnit(TU).  The error codes returned by this
1483  * routine are described by the \c CXErrorCode enum.
1484  */
1485 CINDEX_LINKAGE int clang_reparseTranslationUnit(CXTranslationUnit TU,
1486                                                 unsigned num_unsaved_files,
1487                                           struct CXUnsavedFile *unsaved_files,
1488                                                 unsigned options);
1489
1490 /**
1491   * \brief Categorizes how memory is being used by a translation unit.
1492   */
1493 enum CXTUResourceUsageKind {
1494   CXTUResourceUsage_AST = 1,
1495   CXTUResourceUsage_Identifiers = 2,
1496   CXTUResourceUsage_Selectors = 3,
1497   CXTUResourceUsage_GlobalCompletionResults = 4,
1498   CXTUResourceUsage_SourceManagerContentCache = 5,
1499   CXTUResourceUsage_AST_SideTables = 6,
1500   CXTUResourceUsage_SourceManager_Membuffer_Malloc = 7,
1501   CXTUResourceUsage_SourceManager_Membuffer_MMap = 8,
1502   CXTUResourceUsage_ExternalASTSource_Membuffer_Malloc = 9, 
1503   CXTUResourceUsage_ExternalASTSource_Membuffer_MMap = 10, 
1504   CXTUResourceUsage_Preprocessor = 11,
1505   CXTUResourceUsage_PreprocessingRecord = 12,
1506   CXTUResourceUsage_SourceManager_DataStructures = 13,
1507   CXTUResourceUsage_Preprocessor_HeaderSearch = 14,
1508   CXTUResourceUsage_MEMORY_IN_BYTES_BEGIN = CXTUResourceUsage_AST,
1509   CXTUResourceUsage_MEMORY_IN_BYTES_END =
1510     CXTUResourceUsage_Preprocessor_HeaderSearch,
1511
1512   CXTUResourceUsage_First = CXTUResourceUsage_AST,
1513   CXTUResourceUsage_Last = CXTUResourceUsage_Preprocessor_HeaderSearch
1514 };
1515
1516 /**
1517   * \brief Returns the human-readable null-terminated C string that represents
1518   *  the name of the memory category.  This string should never be freed.
1519   */
1520 CINDEX_LINKAGE
1521 const char *clang_getTUResourceUsageName(enum CXTUResourceUsageKind kind);
1522
1523 typedef struct CXTUResourceUsageEntry {
1524   /* \brief The memory usage category. */
1525   enum CXTUResourceUsageKind kind;  
1526   /* \brief Amount of resources used. 
1527       The units will depend on the resource kind. */
1528   unsigned long amount;
1529 } CXTUResourceUsageEntry;
1530
1531 /**
1532   * \brief The memory usage of a CXTranslationUnit, broken into categories.
1533   */
1534 typedef struct CXTUResourceUsage {
1535   /* \brief Private data member, used for queries. */
1536   void *data;
1537
1538   /* \brief The number of entries in the 'entries' array. */
1539   unsigned numEntries;
1540
1541   /* \brief An array of key-value pairs, representing the breakdown of memory
1542             usage. */
1543   CXTUResourceUsageEntry *entries;
1544
1545 } CXTUResourceUsage;
1546
1547 /**
1548   * \brief Return the memory usage of a translation unit.  This object
1549   *  should be released with clang_disposeCXTUResourceUsage().
1550   */
1551 CINDEX_LINKAGE CXTUResourceUsage clang_getCXTUResourceUsage(CXTranslationUnit TU);
1552
1553 CINDEX_LINKAGE void clang_disposeCXTUResourceUsage(CXTUResourceUsage usage);
1554
1555 /**
1556  * @}
1557  */
1558
1559 /**
1560  * \brief Describes the kind of entity that a cursor refers to.
1561  */
1562 enum CXCursorKind {
1563   /* Declarations */
1564   /**
1565    * \brief A declaration whose specific kind is not exposed via this
1566    * interface.
1567    *
1568    * Unexposed declarations have the same operations as any other kind
1569    * of declaration; one can extract their location information,
1570    * spelling, find their definitions, etc. However, the specific kind
1571    * of the declaration is not reported.
1572    */
1573   CXCursor_UnexposedDecl                 = 1,
1574   /** \brief A C or C++ struct. */
1575   CXCursor_StructDecl                    = 2,
1576   /** \brief A C or C++ union. */
1577   CXCursor_UnionDecl                     = 3,
1578   /** \brief A C++ class. */
1579   CXCursor_ClassDecl                     = 4,
1580   /** \brief An enumeration. */
1581   CXCursor_EnumDecl                      = 5,
1582   /**
1583    * \brief A field (in C) or non-static data member (in C++) in a
1584    * struct, union, or C++ class.
1585    */
1586   CXCursor_FieldDecl                     = 6,
1587   /** \brief An enumerator constant. */
1588   CXCursor_EnumConstantDecl              = 7,
1589   /** \brief A function. */
1590   CXCursor_FunctionDecl                  = 8,
1591   /** \brief A variable. */
1592   CXCursor_VarDecl                       = 9,
1593   /** \brief A function or method parameter. */
1594   CXCursor_ParmDecl                      = 10,
1595   /** \brief An Objective-C \@interface. */
1596   CXCursor_ObjCInterfaceDecl             = 11,
1597   /** \brief An Objective-C \@interface for a category. */
1598   CXCursor_ObjCCategoryDecl              = 12,
1599   /** \brief An Objective-C \@protocol declaration. */
1600   CXCursor_ObjCProtocolDecl              = 13,
1601   /** \brief An Objective-C \@property declaration. */
1602   CXCursor_ObjCPropertyDecl              = 14,
1603   /** \brief An Objective-C instance variable. */
1604   CXCursor_ObjCIvarDecl                  = 15,
1605   /** \brief An Objective-C instance method. */
1606   CXCursor_ObjCInstanceMethodDecl        = 16,
1607   /** \brief An Objective-C class method. */
1608   CXCursor_ObjCClassMethodDecl           = 17,
1609   /** \brief An Objective-C \@implementation. */
1610   CXCursor_ObjCImplementationDecl        = 18,
1611   /** \brief An Objective-C \@implementation for a category. */
1612   CXCursor_ObjCCategoryImplDecl          = 19,
1613   /** \brief A typedef. */
1614   CXCursor_TypedefDecl                   = 20,
1615   /** \brief A C++ class method. */
1616   CXCursor_CXXMethod                     = 21,
1617   /** \brief A C++ namespace. */
1618   CXCursor_Namespace                     = 22,
1619   /** \brief A linkage specification, e.g. 'extern "C"'. */
1620   CXCursor_LinkageSpec                   = 23,
1621   /** \brief A C++ constructor. */
1622   CXCursor_Constructor                   = 24,
1623   /** \brief A C++ destructor. */
1624   CXCursor_Destructor                    = 25,
1625   /** \brief A C++ conversion function. */
1626   CXCursor_ConversionFunction            = 26,
1627   /** \brief A C++ template type parameter. */
1628   CXCursor_TemplateTypeParameter         = 27,
1629   /** \brief A C++ non-type template parameter. */
1630   CXCursor_NonTypeTemplateParameter      = 28,
1631   /** \brief A C++ template template parameter. */
1632   CXCursor_TemplateTemplateParameter     = 29,
1633   /** \brief A C++ function template. */
1634   CXCursor_FunctionTemplate              = 30,
1635   /** \brief A C++ class template. */
1636   CXCursor_ClassTemplate                 = 31,
1637   /** \brief A C++ class template partial specialization. */
1638   CXCursor_ClassTemplatePartialSpecialization = 32,
1639   /** \brief A C++ namespace alias declaration. */
1640   CXCursor_NamespaceAlias                = 33,
1641   /** \brief A C++ using directive. */
1642   CXCursor_UsingDirective                = 34,
1643   /** \brief A C++ using declaration. */
1644   CXCursor_UsingDeclaration              = 35,
1645   /** \brief A C++ alias declaration */
1646   CXCursor_TypeAliasDecl                 = 36,
1647   /** \brief An Objective-C \@synthesize definition. */
1648   CXCursor_ObjCSynthesizeDecl            = 37,
1649   /** \brief An Objective-C \@dynamic definition. */
1650   CXCursor_ObjCDynamicDecl               = 38,
1651   /** \brief An access specifier. */
1652   CXCursor_CXXAccessSpecifier            = 39,
1653
1654   CXCursor_FirstDecl                     = CXCursor_UnexposedDecl,
1655   CXCursor_LastDecl                      = CXCursor_CXXAccessSpecifier,
1656
1657   /* References */
1658   CXCursor_FirstRef                      = 40, /* Decl references */
1659   CXCursor_ObjCSuperClassRef             = 40,
1660   CXCursor_ObjCProtocolRef               = 41,
1661   CXCursor_ObjCClassRef                  = 42,
1662   /**
1663    * \brief A reference to a type declaration.
1664    *
1665    * A type reference occurs anywhere where a type is named but not
1666    * declared. For example, given:
1667    *
1668    * \code
1669    * typedef unsigned size_type;
1670    * size_type size;
1671    * \endcode
1672    *
1673    * The typedef is a declaration of size_type (CXCursor_TypedefDecl),
1674    * while the type of the variable "size" is referenced. The cursor
1675    * referenced by the type of size is the typedef for size_type.
1676    */
1677   CXCursor_TypeRef                       = 43,
1678   CXCursor_CXXBaseSpecifier              = 44,
1679   /** 
1680    * \brief A reference to a class template, function template, template
1681    * template parameter, or class template partial specialization.
1682    */
1683   CXCursor_TemplateRef                   = 45,
1684   /**
1685    * \brief A reference to a namespace or namespace alias.
1686    */
1687   CXCursor_NamespaceRef                  = 46,
1688   /**
1689    * \brief A reference to a member of a struct, union, or class that occurs in 
1690    * some non-expression context, e.g., a designated initializer.
1691    */
1692   CXCursor_MemberRef                     = 47,
1693   /**
1694    * \brief A reference to a labeled statement.
1695    *
1696    * This cursor kind is used to describe the jump to "start_over" in the 
1697    * goto statement in the following example:
1698    *
1699    * \code
1700    *   start_over:
1701    *     ++counter;
1702    *
1703    *     goto start_over;
1704    * \endcode
1705    *
1706    * A label reference cursor refers to a label statement.
1707    */
1708   CXCursor_LabelRef                      = 48,
1709   
1710   /**
1711    * \brief A reference to a set of overloaded functions or function templates
1712    * that has not yet been resolved to a specific function or function template.
1713    *
1714    * An overloaded declaration reference cursor occurs in C++ templates where
1715    * a dependent name refers to a function. For example:
1716    *
1717    * \code
1718    * template<typename T> void swap(T&, T&);
1719    *
1720    * struct X { ... };
1721    * void swap(X&, X&);
1722    *
1723    * template<typename T>
1724    * void reverse(T* first, T* last) {
1725    *   while (first < last - 1) {
1726    *     swap(*first, *--last);
1727    *     ++first;
1728    *   }
1729    * }
1730    *
1731    * struct Y { };
1732    * void swap(Y&, Y&);
1733    * \endcode
1734    *
1735    * Here, the identifier "swap" is associated with an overloaded declaration
1736    * reference. In the template definition, "swap" refers to either of the two
1737    * "swap" functions declared above, so both results will be available. At
1738    * instantiation time, "swap" may also refer to other functions found via
1739    * argument-dependent lookup (e.g., the "swap" function at the end of the
1740    * example).
1741    *
1742    * The functions \c clang_getNumOverloadedDecls() and 
1743    * \c clang_getOverloadedDecl() can be used to retrieve the definitions
1744    * referenced by this cursor.
1745    */
1746   CXCursor_OverloadedDeclRef             = 49,
1747   
1748   /**
1749    * \brief A reference to a variable that occurs in some non-expression 
1750    * context, e.g., a C++ lambda capture list.
1751    */
1752   CXCursor_VariableRef                   = 50,
1753   
1754   CXCursor_LastRef                       = CXCursor_VariableRef,
1755
1756   /* Error conditions */
1757   CXCursor_FirstInvalid                  = 70,
1758   CXCursor_InvalidFile                   = 70,
1759   CXCursor_NoDeclFound                   = 71,
1760   CXCursor_NotImplemented                = 72,
1761   CXCursor_InvalidCode                   = 73,
1762   CXCursor_LastInvalid                   = CXCursor_InvalidCode,
1763
1764   /* Expressions */
1765   CXCursor_FirstExpr                     = 100,
1766
1767   /**
1768    * \brief An expression whose specific kind is not exposed via this
1769    * interface.
1770    *
1771    * Unexposed expressions have the same operations as any other kind
1772    * of expression; one can extract their location information,
1773    * spelling, children, etc. However, the specific kind of the
1774    * expression is not reported.
1775    */
1776   CXCursor_UnexposedExpr                 = 100,
1777
1778   /**
1779    * \brief An expression that refers to some value declaration, such
1780    * as a function, variable, or enumerator.
1781    */
1782   CXCursor_DeclRefExpr                   = 101,
1783
1784   /**
1785    * \brief An expression that refers to a member of a struct, union,
1786    * class, Objective-C class, etc.
1787    */
1788   CXCursor_MemberRefExpr                 = 102,
1789
1790   /** \brief An expression that calls a function. */
1791   CXCursor_CallExpr                      = 103,
1792
1793   /** \brief An expression that sends a message to an Objective-C
1794    object or class. */
1795   CXCursor_ObjCMessageExpr               = 104,
1796
1797   /** \brief An expression that represents a block literal. */
1798   CXCursor_BlockExpr                     = 105,
1799
1800   /** \brief An integer literal.
1801    */
1802   CXCursor_IntegerLiteral                = 106,
1803
1804   /** \brief A floating point number literal.
1805    */
1806   CXCursor_FloatingLiteral               = 107,
1807
1808   /** \brief An imaginary number literal.
1809    */
1810   CXCursor_ImaginaryLiteral              = 108,
1811
1812   /** \brief A string literal.
1813    */
1814   CXCursor_StringLiteral                 = 109,
1815
1816   /** \brief A character literal.
1817    */
1818   CXCursor_CharacterLiteral              = 110,
1819
1820   /** \brief A parenthesized expression, e.g. "(1)".
1821    *
1822    * This AST node is only formed if full location information is requested.
1823    */
1824   CXCursor_ParenExpr                     = 111,
1825
1826   /** \brief This represents the unary-expression's (except sizeof and
1827    * alignof).
1828    */
1829   CXCursor_UnaryOperator                 = 112,
1830
1831   /** \brief [C99 6.5.2.1] Array Subscripting.
1832    */
1833   CXCursor_ArraySubscriptExpr            = 113,
1834
1835   /** \brief A builtin binary operation expression such as "x + y" or
1836    * "x <= y".
1837    */
1838   CXCursor_BinaryOperator                = 114,
1839
1840   /** \brief Compound assignment such as "+=".
1841    */
1842   CXCursor_CompoundAssignOperator        = 115,
1843
1844   /** \brief The ?: ternary operator.
1845    */
1846   CXCursor_ConditionalOperator           = 116,
1847
1848   /** \brief An explicit cast in C (C99 6.5.4) or a C-style cast in C++
1849    * (C++ [expr.cast]), which uses the syntax (Type)expr.
1850    *
1851    * For example: (int)f.
1852    */
1853   CXCursor_CStyleCastExpr                = 117,
1854
1855   /** \brief [C99 6.5.2.5]
1856    */
1857   CXCursor_CompoundLiteralExpr           = 118,
1858
1859   /** \brief Describes an C or C++ initializer list.
1860    */
1861   CXCursor_InitListExpr                  = 119,
1862
1863   /** \brief The GNU address of label extension, representing &&label.
1864    */
1865   CXCursor_AddrLabelExpr                 = 120,
1866
1867   /** \brief This is the GNU Statement Expression extension: ({int X=4; X;})
1868    */
1869   CXCursor_StmtExpr                      = 121,
1870
1871   /** \brief Represents a C11 generic selection.
1872    */
1873   CXCursor_GenericSelectionExpr          = 122,
1874
1875   /** \brief Implements the GNU __null extension, which is a name for a null
1876    * pointer constant that has integral type (e.g., int or long) and is the same
1877    * size and alignment as a pointer.
1878    *
1879    * The __null extension is typically only used by system headers, which define
1880    * NULL as __null in C++ rather than using 0 (which is an integer that may not
1881    * match the size of a pointer).
1882    */
1883   CXCursor_GNUNullExpr                   = 123,
1884
1885   /** \brief C++'s static_cast<> expression.
1886    */
1887   CXCursor_CXXStaticCastExpr             = 124,
1888
1889   /** \brief C++'s dynamic_cast<> expression.
1890    */
1891   CXCursor_CXXDynamicCastExpr            = 125,
1892
1893   /** \brief C++'s reinterpret_cast<> expression.
1894    */
1895   CXCursor_CXXReinterpretCastExpr        = 126,
1896
1897   /** \brief C++'s const_cast<> expression.
1898    */
1899   CXCursor_CXXConstCastExpr              = 127,
1900
1901   /** \brief Represents an explicit C++ type conversion that uses "functional"
1902    * notion (C++ [expr.type.conv]).
1903    *
1904    * Example:
1905    * \code
1906    *   x = int(0.5);
1907    * \endcode
1908    */
1909   CXCursor_CXXFunctionalCastExpr         = 128,
1910
1911   /** \brief A C++ typeid expression (C++ [expr.typeid]).
1912    */
1913   CXCursor_CXXTypeidExpr                 = 129,
1914
1915   /** \brief [C++ 2.13.5] C++ Boolean Literal.
1916    */
1917   CXCursor_CXXBoolLiteralExpr            = 130,
1918
1919   /** \brief [C++0x 2.14.7] C++ Pointer Literal.
1920    */
1921   CXCursor_CXXNullPtrLiteralExpr         = 131,
1922
1923   /** \brief Represents the "this" expression in C++
1924    */
1925   CXCursor_CXXThisExpr                   = 132,
1926
1927   /** \brief [C++ 15] C++ Throw Expression.
1928    *
1929    * This handles 'throw' and 'throw' assignment-expression. When
1930    * assignment-expression isn't present, Op will be null.
1931    */
1932   CXCursor_CXXThrowExpr                  = 133,
1933
1934   /** \brief A new expression for memory allocation and constructor calls, e.g:
1935    * "new CXXNewExpr(foo)".
1936    */
1937   CXCursor_CXXNewExpr                    = 134,
1938
1939   /** \brief A delete expression for memory deallocation and destructor calls,
1940    * e.g. "delete[] pArray".
1941    */
1942   CXCursor_CXXDeleteExpr                 = 135,
1943
1944   /** \brief A unary expression. (noexcept, sizeof, or other traits)
1945    */
1946   CXCursor_UnaryExpr                     = 136,
1947
1948   /** \brief An Objective-C string literal i.e. @"foo".
1949    */
1950   CXCursor_ObjCStringLiteral             = 137,
1951
1952   /** \brief An Objective-C \@encode expression.
1953    */
1954   CXCursor_ObjCEncodeExpr                = 138,
1955
1956   /** \brief An Objective-C \@selector expression.
1957    */
1958   CXCursor_ObjCSelectorExpr              = 139,
1959
1960   /** \brief An Objective-C \@protocol expression.
1961    */
1962   CXCursor_ObjCProtocolExpr              = 140,
1963
1964   /** \brief An Objective-C "bridged" cast expression, which casts between
1965    * Objective-C pointers and C pointers, transferring ownership in the process.
1966    *
1967    * \code
1968    *   NSString *str = (__bridge_transfer NSString *)CFCreateString();
1969    * \endcode
1970    */
1971   CXCursor_ObjCBridgedCastExpr           = 141,
1972
1973   /** \brief Represents a C++0x pack expansion that produces a sequence of
1974    * expressions.
1975    *
1976    * A pack expansion expression contains a pattern (which itself is an
1977    * expression) followed by an ellipsis. For example:
1978    *
1979    * \code
1980    * template<typename F, typename ...Types>
1981    * void forward(F f, Types &&...args) {
1982    *  f(static_cast<Types&&>(args)...);
1983    * }
1984    * \endcode
1985    */
1986   CXCursor_PackExpansionExpr             = 142,
1987
1988   /** \brief Represents an expression that computes the length of a parameter
1989    * pack.
1990    *
1991    * \code
1992    * template<typename ...Types>
1993    * struct count {
1994    *   static const unsigned value = sizeof...(Types);
1995    * };
1996    * \endcode
1997    */
1998   CXCursor_SizeOfPackExpr                = 143,
1999
2000   /* \brief Represents a C++ lambda expression that produces a local function
2001    * object.
2002    *
2003    * \code
2004    * void abssort(float *x, unsigned N) {
2005    *   std::sort(x, x + N,
2006    *             [](float a, float b) {
2007    *               return std::abs(a) < std::abs(b);
2008    *             });
2009    * }
2010    * \endcode
2011    */
2012   CXCursor_LambdaExpr                    = 144,
2013   
2014   /** \brief Objective-c Boolean Literal.
2015    */
2016   CXCursor_ObjCBoolLiteralExpr           = 145,
2017
2018   /** \brief Represents the "self" expression in an Objective-C method.
2019    */
2020   CXCursor_ObjCSelfExpr                  = 146,
2021
2022   /** \brief OpenMP 4.0 [2.4, Array Section].
2023    */
2024   CXCursor_OMPArraySectionExpr           = 147,
2025
2026   /** \brief Represents an @available(...) check.
2027    */
2028   CXCursor_ObjCAvailabilityCheckExpr     = 148,
2029
2030   CXCursor_LastExpr                      = CXCursor_ObjCAvailabilityCheckExpr,
2031
2032   /* Statements */
2033   CXCursor_FirstStmt                     = 200,
2034   /**
2035    * \brief A statement whose specific kind is not exposed via this
2036    * interface.
2037    *
2038    * Unexposed statements have the same operations as any other kind of
2039    * statement; one can extract their location information, spelling,
2040    * children, etc. However, the specific kind of the statement is not
2041    * reported.
2042    */
2043   CXCursor_UnexposedStmt                 = 200,
2044   
2045   /** \brief A labelled statement in a function. 
2046    *
2047    * This cursor kind is used to describe the "start_over:" label statement in 
2048    * the following example:
2049    *
2050    * \code
2051    *   start_over:
2052    *     ++counter;
2053    * \endcode
2054    *
2055    */
2056   CXCursor_LabelStmt                     = 201,
2057
2058   /** \brief A group of statements like { stmt stmt }.
2059    *
2060    * This cursor kind is used to describe compound statements, e.g. function
2061    * bodies.
2062    */
2063   CXCursor_CompoundStmt                  = 202,
2064
2065   /** \brief A case statement.
2066    */
2067   CXCursor_CaseStmt                      = 203,
2068
2069   /** \brief A default statement.
2070    */
2071   CXCursor_DefaultStmt                   = 204,
2072
2073   /** \brief An if statement
2074    */
2075   CXCursor_IfStmt                        = 205,
2076
2077   /** \brief A switch statement.
2078    */
2079   CXCursor_SwitchStmt                    = 206,
2080
2081   /** \brief A while statement.
2082    */
2083   CXCursor_WhileStmt                     = 207,
2084
2085   /** \brief A do statement.
2086    */
2087   CXCursor_DoStmt                        = 208,
2088
2089   /** \brief A for statement.
2090    */
2091   CXCursor_ForStmt                       = 209,
2092
2093   /** \brief A goto statement.
2094    */
2095   CXCursor_GotoStmt                      = 210,
2096
2097   /** \brief An indirect goto statement.
2098    */
2099   CXCursor_IndirectGotoStmt              = 211,
2100
2101   /** \brief A continue statement.
2102    */
2103   CXCursor_ContinueStmt                  = 212,
2104
2105   /** \brief A break statement.
2106    */
2107   CXCursor_BreakStmt                     = 213,
2108
2109   /** \brief A return statement.
2110    */
2111   CXCursor_ReturnStmt                    = 214,
2112
2113   /** \brief A GCC inline assembly statement extension.
2114    */
2115   CXCursor_GCCAsmStmt                    = 215,
2116   CXCursor_AsmStmt                       = CXCursor_GCCAsmStmt,
2117
2118   /** \brief Objective-C's overall \@try-\@catch-\@finally statement.
2119    */
2120   CXCursor_ObjCAtTryStmt                 = 216,
2121
2122   /** \brief Objective-C's \@catch statement.
2123    */
2124   CXCursor_ObjCAtCatchStmt               = 217,
2125
2126   /** \brief Objective-C's \@finally statement.
2127    */
2128   CXCursor_ObjCAtFinallyStmt             = 218,
2129
2130   /** \brief Objective-C's \@throw statement.
2131    */
2132   CXCursor_ObjCAtThrowStmt               = 219,
2133
2134   /** \brief Objective-C's \@synchronized statement.
2135    */
2136   CXCursor_ObjCAtSynchronizedStmt        = 220,
2137
2138   /** \brief Objective-C's autorelease pool statement.
2139    */
2140   CXCursor_ObjCAutoreleasePoolStmt       = 221,
2141
2142   /** \brief Objective-C's collection statement.
2143    */
2144   CXCursor_ObjCForCollectionStmt         = 222,
2145
2146   /** \brief C++'s catch statement.
2147    */
2148   CXCursor_CXXCatchStmt                  = 223,
2149
2150   /** \brief C++'s try statement.
2151    */
2152   CXCursor_CXXTryStmt                    = 224,
2153
2154   /** \brief C++'s for (* : *) statement.
2155    */
2156   CXCursor_CXXForRangeStmt               = 225,
2157
2158   /** \brief Windows Structured Exception Handling's try statement.
2159    */
2160   CXCursor_SEHTryStmt                    = 226,
2161
2162   /** \brief Windows Structured Exception Handling's except statement.
2163    */
2164   CXCursor_SEHExceptStmt                 = 227,
2165
2166   /** \brief Windows Structured Exception Handling's finally statement.
2167    */
2168   CXCursor_SEHFinallyStmt                = 228,
2169
2170   /** \brief A MS inline assembly statement extension.
2171    */
2172   CXCursor_MSAsmStmt                     = 229,
2173
2174   /** \brief The null statement ";": C99 6.8.3p3.
2175    *
2176    * This cursor kind is used to describe the null statement.
2177    */
2178   CXCursor_NullStmt                      = 230,
2179
2180   /** \brief Adaptor class for mixing declarations with statements and
2181    * expressions.
2182    */
2183   CXCursor_DeclStmt                      = 231,
2184
2185   /** \brief OpenMP parallel directive.
2186    */
2187   CXCursor_OMPParallelDirective          = 232,
2188
2189   /** \brief OpenMP SIMD directive.
2190    */
2191   CXCursor_OMPSimdDirective              = 233,
2192
2193   /** \brief OpenMP for directive.
2194    */
2195   CXCursor_OMPForDirective               = 234,
2196
2197   /** \brief OpenMP sections directive.
2198    */
2199   CXCursor_OMPSectionsDirective          = 235,
2200
2201   /** \brief OpenMP section directive.
2202    */
2203   CXCursor_OMPSectionDirective           = 236,
2204
2205   /** \brief OpenMP single directive.
2206    */
2207   CXCursor_OMPSingleDirective            = 237,
2208
2209   /** \brief OpenMP parallel for directive.
2210    */
2211   CXCursor_OMPParallelForDirective       = 238,
2212
2213   /** \brief OpenMP parallel sections directive.
2214    */
2215   CXCursor_OMPParallelSectionsDirective  = 239,
2216
2217   /** \brief OpenMP task directive.
2218    */
2219   CXCursor_OMPTaskDirective              = 240,
2220
2221   /** \brief OpenMP master directive.
2222    */
2223   CXCursor_OMPMasterDirective            = 241,
2224
2225   /** \brief OpenMP critical directive.
2226    */
2227   CXCursor_OMPCriticalDirective          = 242,
2228
2229   /** \brief OpenMP taskyield directive.
2230    */
2231   CXCursor_OMPTaskyieldDirective         = 243,
2232
2233   /** \brief OpenMP barrier directive.
2234    */
2235   CXCursor_OMPBarrierDirective           = 244,
2236
2237   /** \brief OpenMP taskwait directive.
2238    */
2239   CXCursor_OMPTaskwaitDirective          = 245,
2240
2241   /** \brief OpenMP flush directive.
2242    */
2243   CXCursor_OMPFlushDirective             = 246,
2244
2245   /** \brief Windows Structured Exception Handling's leave statement.
2246    */
2247   CXCursor_SEHLeaveStmt                  = 247,
2248
2249   /** \brief OpenMP ordered directive.
2250    */
2251   CXCursor_OMPOrderedDirective           = 248,
2252
2253   /** \brief OpenMP atomic directive.
2254    */
2255   CXCursor_OMPAtomicDirective            = 249,
2256
2257   /** \brief OpenMP for SIMD directive.
2258    */
2259   CXCursor_OMPForSimdDirective           = 250,
2260
2261   /** \brief OpenMP parallel for SIMD directive.
2262    */
2263   CXCursor_OMPParallelForSimdDirective   = 251,
2264
2265   /** \brief OpenMP target directive.
2266    */
2267   CXCursor_OMPTargetDirective            = 252,
2268
2269   /** \brief OpenMP teams directive.
2270    */
2271   CXCursor_OMPTeamsDirective             = 253,
2272
2273   /** \brief OpenMP taskgroup directive.
2274    */
2275   CXCursor_OMPTaskgroupDirective         = 254,
2276
2277   /** \brief OpenMP cancellation point directive.
2278    */
2279   CXCursor_OMPCancellationPointDirective = 255,
2280
2281   /** \brief OpenMP cancel directive.
2282    */
2283   CXCursor_OMPCancelDirective            = 256,
2284
2285   /** \brief OpenMP target data directive.
2286    */
2287   CXCursor_OMPTargetDataDirective        = 257,
2288
2289   /** \brief OpenMP taskloop directive.
2290    */
2291   CXCursor_OMPTaskLoopDirective          = 258,
2292
2293   /** \brief OpenMP taskloop simd directive.
2294    */
2295   CXCursor_OMPTaskLoopSimdDirective      = 259,
2296
2297   /** \brief OpenMP distribute directive.
2298    */
2299   CXCursor_OMPDistributeDirective        = 260,
2300
2301   /** \brief OpenMP target enter data directive.
2302    */
2303   CXCursor_OMPTargetEnterDataDirective   = 261,
2304
2305   /** \brief OpenMP target exit data directive.
2306    */
2307   CXCursor_OMPTargetExitDataDirective    = 262,
2308
2309   /** \brief OpenMP target parallel directive.
2310    */
2311   CXCursor_OMPTargetParallelDirective    = 263,
2312
2313   /** \brief OpenMP target parallel for directive.
2314    */
2315   CXCursor_OMPTargetParallelForDirective = 264,
2316
2317   /** \brief OpenMP target update directive.
2318    */
2319   CXCursor_OMPTargetUpdateDirective      = 265,
2320
2321   /** \brief OpenMP distribute parallel for directive.
2322    */
2323   CXCursor_OMPDistributeParallelForDirective = 266,
2324
2325   /** \brief OpenMP distribute parallel for simd directive.
2326    */
2327   CXCursor_OMPDistributeParallelForSimdDirective = 267,
2328
2329   /** \brief OpenMP distribute simd directive.
2330    */
2331   CXCursor_OMPDistributeSimdDirective = 268,
2332
2333   /** \brief OpenMP target parallel for simd directive.
2334    */
2335   CXCursor_OMPTargetParallelForSimdDirective = 269,
2336
2337   /** \brief OpenMP target simd directive.
2338    */
2339   CXCursor_OMPTargetSimdDirective = 270,
2340
2341   /** \brief OpenMP teams distribute directive.
2342    */
2343   CXCursor_OMPTeamsDistributeDirective = 271,
2344
2345   /** \brief OpenMP teams distribute simd directive.
2346    */
2347   CXCursor_OMPTeamsDistributeSimdDirective = 272,
2348
2349   /** \brief OpenMP teams distribute parallel for simd directive.
2350    */
2351   CXCursor_OMPTeamsDistributeParallelForSimdDirective = 273,
2352
2353   /** \brief OpenMP teams distribute parallel for directive.
2354    */
2355   CXCursor_OMPTeamsDistributeParallelForDirective = 274,
2356
2357   /** \brief OpenMP target teams directive.
2358    */
2359   CXCursor_OMPTargetTeamsDirective = 275,
2360
2361   /** \brief OpenMP target teams distribute directive.
2362    */
2363   CXCursor_OMPTargetTeamsDistributeDirective = 276,
2364
2365   /** \brief OpenMP target teams distribute parallel for directive.
2366    */
2367   CXCursor_OMPTargetTeamsDistributeParallelForDirective = 277,
2368
2369   CXCursor_LastStmt = CXCursor_OMPTargetTeamsDistributeParallelForDirective,
2370
2371   /**
2372    * \brief Cursor that represents the translation unit itself.
2373    *
2374    * The translation unit cursor exists primarily to act as the root
2375    * cursor for traversing the contents of a translation unit.
2376    */
2377   CXCursor_TranslationUnit               = 300,
2378
2379   /* Attributes */
2380   CXCursor_FirstAttr                     = 400,
2381   /**
2382    * \brief An attribute whose specific kind is not exposed via this
2383    * interface.
2384    */
2385   CXCursor_UnexposedAttr                 = 400,
2386
2387   CXCursor_IBActionAttr                  = 401,
2388   CXCursor_IBOutletAttr                  = 402,
2389   CXCursor_IBOutletCollectionAttr        = 403,
2390   CXCursor_CXXFinalAttr                  = 404,
2391   CXCursor_CXXOverrideAttr               = 405,
2392   CXCursor_AnnotateAttr                  = 406,
2393   CXCursor_AsmLabelAttr                  = 407,
2394   CXCursor_PackedAttr                    = 408,
2395   CXCursor_PureAttr                      = 409,
2396   CXCursor_ConstAttr                     = 410,
2397   CXCursor_NoDuplicateAttr               = 411,
2398   CXCursor_CUDAConstantAttr              = 412,
2399   CXCursor_CUDADeviceAttr                = 413,
2400   CXCursor_CUDAGlobalAttr                = 414,
2401   CXCursor_CUDAHostAttr                  = 415,
2402   CXCursor_CUDASharedAttr                = 416,
2403   CXCursor_VisibilityAttr                = 417,
2404   CXCursor_DLLExport                     = 418,
2405   CXCursor_DLLImport                     = 419,
2406   CXCursor_LastAttr                      = CXCursor_DLLImport,
2407
2408   /* Preprocessing */
2409   CXCursor_PreprocessingDirective        = 500,
2410   CXCursor_MacroDefinition               = 501,
2411   CXCursor_MacroExpansion                = 502,
2412   CXCursor_MacroInstantiation            = CXCursor_MacroExpansion,
2413   CXCursor_InclusionDirective            = 503,
2414   CXCursor_FirstPreprocessing            = CXCursor_PreprocessingDirective,
2415   CXCursor_LastPreprocessing             = CXCursor_InclusionDirective,
2416
2417   /* Extra Declarations */
2418   /**
2419    * \brief A module import declaration.
2420    */
2421   CXCursor_ModuleImportDecl              = 600,
2422   CXCursor_TypeAliasTemplateDecl         = 601,
2423   /**
2424    * \brief A static_assert or _Static_assert node
2425    */
2426   CXCursor_StaticAssert                  = 602,
2427   /**
2428    * \brief a friend declaration.
2429    */
2430   CXCursor_FriendDecl                    = 603,
2431   CXCursor_FirstExtraDecl                = CXCursor_ModuleImportDecl,
2432   CXCursor_LastExtraDecl                 = CXCursor_FriendDecl,
2433
2434   /**
2435    * \brief A code completion overload candidate.
2436    */
2437   CXCursor_OverloadCandidate             = 700
2438 };
2439
2440 /**
2441  * \brief A cursor representing some element in the abstract syntax tree for
2442  * a translation unit.
2443  *
2444  * The cursor abstraction unifies the different kinds of entities in a
2445  * program--declaration, statements, expressions, references to declarations,
2446  * etc.--under a single "cursor" abstraction with a common set of operations.
2447  * Common operation for a cursor include: getting the physical location in
2448  * a source file where the cursor points, getting the name associated with a
2449  * cursor, and retrieving cursors for any child nodes of a particular cursor.
2450  *
2451  * Cursors can be produced in two specific ways.
2452  * clang_getTranslationUnitCursor() produces a cursor for a translation unit,
2453  * from which one can use clang_visitChildren() to explore the rest of the
2454  * translation unit. clang_getCursor() maps from a physical source location
2455  * to the entity that resides at that location, allowing one to map from the
2456  * source code into the AST.
2457  */
2458 typedef struct {
2459   enum CXCursorKind kind;
2460   int xdata;
2461   const void *data[3];
2462 } CXCursor;
2463
2464 /**
2465  * \defgroup CINDEX_CURSOR_MANIP Cursor manipulations
2466  *
2467  * @{
2468  */
2469
2470 /**
2471  * \brief Retrieve the NULL cursor, which represents no entity.
2472  */
2473 CINDEX_LINKAGE CXCursor clang_getNullCursor(void);
2474
2475 /**
2476  * \brief Retrieve the cursor that represents the given translation unit.
2477  *
2478  * The translation unit cursor can be used to start traversing the
2479  * various declarations within the given translation unit.
2480  */
2481 CINDEX_LINKAGE CXCursor clang_getTranslationUnitCursor(CXTranslationUnit);
2482
2483 /**
2484  * \brief Determine whether two cursors are equivalent.
2485  */
2486 CINDEX_LINKAGE unsigned clang_equalCursors(CXCursor, CXCursor);
2487
2488 /**
2489  * \brief Returns non-zero if \p cursor is null.
2490  */
2491 CINDEX_LINKAGE int clang_Cursor_isNull(CXCursor cursor);
2492
2493 /**
2494  * \brief Compute a hash value for the given cursor.
2495  */
2496 CINDEX_LINKAGE unsigned clang_hashCursor(CXCursor);
2497   
2498 /**
2499  * \brief Retrieve the kind of the given cursor.
2500  */
2501 CINDEX_LINKAGE enum CXCursorKind clang_getCursorKind(CXCursor);
2502
2503 /**
2504  * \brief Determine whether the given cursor kind represents a declaration.
2505  */
2506 CINDEX_LINKAGE unsigned clang_isDeclaration(enum CXCursorKind);
2507
2508 /**
2509  * \brief Determine whether the given cursor kind represents a simple
2510  * reference.
2511  *
2512  * Note that other kinds of cursors (such as expressions) can also refer to
2513  * other cursors. Use clang_getCursorReferenced() to determine whether a
2514  * particular cursor refers to another entity.
2515  */
2516 CINDEX_LINKAGE unsigned clang_isReference(enum CXCursorKind);
2517
2518 /**
2519  * \brief Determine whether the given cursor kind represents an expression.
2520  */
2521 CINDEX_LINKAGE unsigned clang_isExpression(enum CXCursorKind);
2522
2523 /**
2524  * \brief Determine whether the given cursor kind represents a statement.
2525  */
2526 CINDEX_LINKAGE unsigned clang_isStatement(enum CXCursorKind);
2527
2528 /**
2529  * \brief Determine whether the given cursor kind represents an attribute.
2530  */
2531 CINDEX_LINKAGE unsigned clang_isAttribute(enum CXCursorKind);
2532
2533 /**
2534  * \brief Determine whether the given cursor has any attributes.
2535  */
2536 CINDEX_LINKAGE unsigned clang_Cursor_hasAttrs(CXCursor C);
2537
2538 /**
2539  * \brief Determine whether the given cursor kind represents an invalid
2540  * cursor.
2541  */
2542 CINDEX_LINKAGE unsigned clang_isInvalid(enum CXCursorKind);
2543
2544 /**
2545  * \brief Determine whether the given cursor kind represents a translation
2546  * unit.
2547  */
2548 CINDEX_LINKAGE unsigned clang_isTranslationUnit(enum CXCursorKind);
2549
2550 /***
2551  * \brief Determine whether the given cursor represents a preprocessing
2552  * element, such as a preprocessor directive or macro instantiation.
2553  */
2554 CINDEX_LINKAGE unsigned clang_isPreprocessing(enum CXCursorKind);
2555   
2556 /***
2557  * \brief Determine whether the given cursor represents a currently
2558  *  unexposed piece of the AST (e.g., CXCursor_UnexposedStmt).
2559  */
2560 CINDEX_LINKAGE unsigned clang_isUnexposed(enum CXCursorKind);
2561
2562 /**
2563  * \brief Describe the linkage of the entity referred to by a cursor.
2564  */
2565 enum CXLinkageKind {
2566   /** \brief This value indicates that no linkage information is available
2567    * for a provided CXCursor. */
2568   CXLinkage_Invalid,
2569   /**
2570    * \brief This is the linkage for variables, parameters, and so on that
2571    *  have automatic storage.  This covers normal (non-extern) local variables.
2572    */
2573   CXLinkage_NoLinkage,
2574   /** \brief This is the linkage for static variables and static functions. */
2575   CXLinkage_Internal,
2576   /** \brief This is the linkage for entities with external linkage that live
2577    * in C++ anonymous namespaces.*/
2578   CXLinkage_UniqueExternal,
2579   /** \brief This is the linkage for entities with true, external linkage. */
2580   CXLinkage_External
2581 };
2582
2583 /**
2584  * \brief Determine the linkage of the entity referred to by a given cursor.
2585  */
2586 CINDEX_LINKAGE enum CXLinkageKind clang_getCursorLinkage(CXCursor cursor);
2587
2588 enum CXVisibilityKind {
2589   /** \brief This value indicates that no visibility information is available
2590    * for a provided CXCursor. */
2591   CXVisibility_Invalid,
2592
2593   /** \brief Symbol not seen by the linker. */
2594   CXVisibility_Hidden,
2595   /** \brief Symbol seen by the linker but resolves to a symbol inside this object. */
2596   CXVisibility_Protected,
2597   /** \brief Symbol seen by the linker and acts like a normal symbol. */
2598   CXVisibility_Default
2599 };
2600
2601 /**
2602  * \brief Describe the visibility of the entity referred to by a cursor.
2603  *
2604  * This returns the default visibility if not explicitly specified by
2605  * a visibility attribute. The default visibility may be changed by
2606  * commandline arguments.
2607  *
2608  * \param cursor The cursor to query.
2609  *
2610  * \returns The visibility of the cursor.
2611  */
2612 CINDEX_LINKAGE enum CXVisibilityKind clang_getCursorVisibility(CXCursor cursor);
2613
2614 /**
2615  * \brief Determine the availability of the entity that this cursor refers to,
2616  * taking the current target platform into account.
2617  *
2618  * \param cursor The cursor to query.
2619  *
2620  * \returns The availability of the cursor.
2621  */
2622 CINDEX_LINKAGE enum CXAvailabilityKind 
2623 clang_getCursorAvailability(CXCursor cursor);
2624
2625 /**
2626  * Describes the availability of a given entity on a particular platform, e.g.,
2627  * a particular class might only be available on Mac OS 10.7 or newer.
2628  */
2629 typedef struct CXPlatformAvailability {
2630   /**
2631    * \brief A string that describes the platform for which this structure
2632    * provides availability information.
2633    *
2634    * Possible values are "ios" or "macos".
2635    */
2636   CXString Platform;
2637   /**
2638    * \brief The version number in which this entity was introduced.
2639    */
2640   CXVersion Introduced;
2641   /**
2642    * \brief The version number in which this entity was deprecated (but is
2643    * still available).
2644    */
2645   CXVersion Deprecated;
2646   /**
2647    * \brief The version number in which this entity was obsoleted, and therefore
2648    * is no longer available.
2649    */
2650   CXVersion Obsoleted;
2651   /**
2652    * \brief Whether the entity is unconditionally unavailable on this platform.
2653    */
2654   int Unavailable;
2655   /**
2656    * \brief An optional message to provide to a user of this API, e.g., to
2657    * suggest replacement APIs.
2658    */
2659   CXString Message;
2660 } CXPlatformAvailability;
2661
2662 /**
2663  * \brief Determine the availability of the entity that this cursor refers to
2664  * on any platforms for which availability information is known.
2665  *
2666  * \param cursor The cursor to query.
2667  *
2668  * \param always_deprecated If non-NULL, will be set to indicate whether the 
2669  * entity is deprecated on all platforms.
2670  *
2671  * \param deprecated_message If non-NULL, will be set to the message text 
2672  * provided along with the unconditional deprecation of this entity. The client
2673  * is responsible for deallocating this string.
2674  *
2675  * \param always_unavailable If non-NULL, will be set to indicate whether the
2676  * entity is unavailable on all platforms.
2677  *
2678  * \param unavailable_message If non-NULL, will be set to the message text
2679  * provided along with the unconditional unavailability of this entity. The 
2680  * client is responsible for deallocating this string.
2681  *
2682  * \param availability If non-NULL, an array of CXPlatformAvailability instances
2683  * that will be populated with platform availability information, up to either
2684  * the number of platforms for which availability information is available (as
2685  * returned by this function) or \c availability_size, whichever is smaller.
2686  *
2687  * \param availability_size The number of elements available in the 
2688  * \c availability array.
2689  *
2690  * \returns The number of platforms (N) for which availability information is
2691  * available (which is unrelated to \c availability_size).
2692  *
2693  * Note that the client is responsible for calling 
2694  * \c clang_disposeCXPlatformAvailability to free each of the 
2695  * platform-availability structures returned. There are 
2696  * \c min(N, availability_size) such structures.
2697  */
2698 CINDEX_LINKAGE int
2699 clang_getCursorPlatformAvailability(CXCursor cursor,
2700                                     int *always_deprecated,
2701                                     CXString *deprecated_message,
2702                                     int *always_unavailable,
2703                                     CXString *unavailable_message,
2704                                     CXPlatformAvailability *availability,
2705                                     int availability_size);
2706
2707 /**
2708  * \brief Free the memory associated with a \c CXPlatformAvailability structure.
2709  */
2710 CINDEX_LINKAGE void
2711 clang_disposeCXPlatformAvailability(CXPlatformAvailability *availability);
2712   
2713 /**
2714  * \brief Describe the "language" of the entity referred to by a cursor.
2715  */
2716 enum CXLanguageKind {
2717   CXLanguage_Invalid = 0,
2718   CXLanguage_C,
2719   CXLanguage_ObjC,
2720   CXLanguage_CPlusPlus
2721 };
2722
2723 /**
2724  * \brief Determine the "language" of the entity referred to by a given cursor.
2725  */
2726 CINDEX_LINKAGE enum CXLanguageKind clang_getCursorLanguage(CXCursor cursor);
2727
2728 /**
2729  * \brief Returns the translation unit that a cursor originated from.
2730  */
2731 CINDEX_LINKAGE CXTranslationUnit clang_Cursor_getTranslationUnit(CXCursor);
2732
2733 /**
2734  * \brief A fast container representing a set of CXCursors.
2735  */
2736 typedef struct CXCursorSetImpl *CXCursorSet;
2737
2738 /**
2739  * \brief Creates an empty CXCursorSet.
2740  */
2741 CINDEX_LINKAGE CXCursorSet clang_createCXCursorSet(void);
2742
2743 /**
2744  * \brief Disposes a CXCursorSet and releases its associated memory.
2745  */
2746 CINDEX_LINKAGE void clang_disposeCXCursorSet(CXCursorSet cset);
2747
2748 /**
2749  * \brief Queries a CXCursorSet to see if it contains a specific CXCursor.
2750  *
2751  * \returns non-zero if the set contains the specified cursor.
2752 */
2753 CINDEX_LINKAGE unsigned clang_CXCursorSet_contains(CXCursorSet cset,
2754                                                    CXCursor cursor);
2755
2756 /**
2757  * \brief Inserts a CXCursor into a CXCursorSet.
2758  *
2759  * \returns zero if the CXCursor was already in the set, and non-zero otherwise.
2760 */
2761 CINDEX_LINKAGE unsigned clang_CXCursorSet_insert(CXCursorSet cset,
2762                                                  CXCursor cursor);
2763
2764 /**
2765  * \brief Determine the semantic parent of the given cursor.
2766  *
2767  * The semantic parent of a cursor is the cursor that semantically contains
2768  * the given \p cursor. For many declarations, the lexical and semantic parents
2769  * are equivalent (the lexical parent is returned by 
2770  * \c clang_getCursorLexicalParent()). They diverge when declarations or
2771  * definitions are provided out-of-line. For example:
2772  *
2773  * \code
2774  * class C {
2775  *  void f();
2776  * };
2777  *
2778  * void C::f() { }
2779  * \endcode
2780  *
2781  * In the out-of-line definition of \c C::f, the semantic parent is
2782  * the class \c C, of which this function is a member. The lexical parent is
2783  * the place where the declaration actually occurs in the source code; in this
2784  * case, the definition occurs in the translation unit. In general, the
2785  * lexical parent for a given entity can change without affecting the semantics
2786  * of the program, and the lexical parent of different declarations of the
2787  * same entity may be different. Changing the semantic parent of a declaration,
2788  * on the other hand, can have a major impact on semantics, and redeclarations
2789  * of a particular entity should all have the same semantic context.
2790  *
2791  * In the example above, both declarations of \c C::f have \c C as their
2792  * semantic context, while the lexical context of the first \c C::f is \c C
2793  * and the lexical context of the second \c C::f is the translation unit.
2794  *
2795  * For global declarations, the semantic parent is the translation unit.
2796  */
2797 CINDEX_LINKAGE CXCursor clang_getCursorSemanticParent(CXCursor cursor);
2798
2799 /**
2800  * \brief Determine the lexical parent of the given cursor.
2801  *
2802  * The lexical parent of a cursor is the cursor in which the given \p cursor
2803  * was actually written. For many declarations, the lexical and semantic parents
2804  * are equivalent (the semantic parent is returned by 
2805  * \c clang_getCursorSemanticParent()). They diverge when declarations or
2806  * definitions are provided out-of-line. For example:
2807  *
2808  * \code
2809  * class C {
2810  *  void f();
2811  * };
2812  *
2813  * void C::f() { }
2814  * \endcode
2815  *
2816  * In the out-of-line definition of \c C::f, the semantic parent is
2817  * the class \c C, of which this function is a member. The lexical parent is
2818  * the place where the declaration actually occurs in the source code; in this
2819  * case, the definition occurs in the translation unit. In general, the
2820  * lexical parent for a given entity can change without affecting the semantics
2821  * of the program, and the lexical parent of different declarations of the
2822  * same entity may be different. Changing the semantic parent of a declaration,
2823  * on the other hand, can have a major impact on semantics, and redeclarations
2824  * of a particular entity should all have the same semantic context.
2825  *
2826  * In the example above, both declarations of \c C::f have \c C as their
2827  * semantic context, while the lexical context of the first \c C::f is \c C
2828  * and the lexical context of the second \c C::f is the translation unit.
2829  *
2830  * For declarations written in the global scope, the lexical parent is
2831  * the translation unit.
2832  */
2833 CINDEX_LINKAGE CXCursor clang_getCursorLexicalParent(CXCursor cursor);
2834
2835 /**
2836  * \brief Determine the set of methods that are overridden by the given
2837  * method.
2838  *
2839  * In both Objective-C and C++, a method (aka virtual member function,
2840  * in C++) can override a virtual method in a base class. For
2841  * Objective-C, a method is said to override any method in the class's
2842  * base class, its protocols, or its categories' protocols, that has the same
2843  * selector and is of the same kind (class or instance).
2844  * If no such method exists, the search continues to the class's superclass,
2845  * its protocols, and its categories, and so on. A method from an Objective-C
2846  * implementation is considered to override the same methods as its
2847  * corresponding method in the interface.
2848  *
2849  * For C++, a virtual member function overrides any virtual member
2850  * function with the same signature that occurs in its base
2851  * classes. With multiple inheritance, a virtual member function can
2852  * override several virtual member functions coming from different
2853  * base classes.
2854  *
2855  * In all cases, this function determines the immediate overridden
2856  * method, rather than all of the overridden methods. For example, if
2857  * a method is originally declared in a class A, then overridden in B
2858  * (which in inherits from A) and also in C (which inherited from B),
2859  * then the only overridden method returned from this function when
2860  * invoked on C's method will be B's method. The client may then
2861  * invoke this function again, given the previously-found overridden
2862  * methods, to map out the complete method-override set.
2863  *
2864  * \param cursor A cursor representing an Objective-C or C++
2865  * method. This routine will compute the set of methods that this
2866  * method overrides.
2867  * 
2868  * \param overridden A pointer whose pointee will be replaced with a
2869  * pointer to an array of cursors, representing the set of overridden
2870  * methods. If there are no overridden methods, the pointee will be
2871  * set to NULL. The pointee must be freed via a call to 
2872  * \c clang_disposeOverriddenCursors().
2873  *
2874  * \param num_overridden A pointer to the number of overridden
2875  * functions, will be set to the number of overridden functions in the
2876  * array pointed to by \p overridden.
2877  */
2878 CINDEX_LINKAGE void clang_getOverriddenCursors(CXCursor cursor, 
2879                                                CXCursor **overridden,
2880                                                unsigned *num_overridden);
2881
2882 /**
2883  * \brief Free the set of overridden cursors returned by \c
2884  * clang_getOverriddenCursors().
2885  */
2886 CINDEX_LINKAGE void clang_disposeOverriddenCursors(CXCursor *overridden);
2887
2888 /**
2889  * \brief Retrieve the file that is included by the given inclusion directive
2890  * cursor.
2891  */
2892 CINDEX_LINKAGE CXFile clang_getIncludedFile(CXCursor cursor);
2893   
2894 /**
2895  * @}
2896  */
2897
2898 /**
2899  * \defgroup CINDEX_CURSOR_SOURCE Mapping between cursors and source code
2900  *
2901  * Cursors represent a location within the Abstract Syntax Tree (AST). These
2902  * routines help map between cursors and the physical locations where the
2903  * described entities occur in the source code. The mapping is provided in
2904  * both directions, so one can map from source code to the AST and back.
2905  *
2906  * @{
2907  */
2908
2909 /**
2910  * \brief Map a source location to the cursor that describes the entity at that
2911  * location in the source code.
2912  *
2913  * clang_getCursor() maps an arbitrary source location within a translation
2914  * unit down to the most specific cursor that describes the entity at that
2915  * location. For example, given an expression \c x + y, invoking
2916  * clang_getCursor() with a source location pointing to "x" will return the
2917  * cursor for "x"; similarly for "y". If the cursor points anywhere between
2918  * "x" or "y" (e.g., on the + or the whitespace around it), clang_getCursor()
2919  * will return a cursor referring to the "+" expression.
2920  *
2921  * \returns a cursor representing the entity at the given source location, or
2922  * a NULL cursor if no such entity can be found.
2923  */
2924 CINDEX_LINKAGE CXCursor clang_getCursor(CXTranslationUnit, CXSourceLocation);
2925
2926 /**
2927  * \brief Retrieve the physical location of the source constructor referenced
2928  * by the given cursor.
2929  *
2930  * The location of a declaration is typically the location of the name of that
2931  * declaration, where the name of that declaration would occur if it is
2932  * unnamed, or some keyword that introduces that particular declaration.
2933  * The location of a reference is where that reference occurs within the
2934  * source code.
2935  */
2936 CINDEX_LINKAGE CXSourceLocation clang_getCursorLocation(CXCursor);
2937
2938 /**
2939  * \brief Retrieve the physical extent of the source construct referenced by
2940  * the given cursor.
2941  *
2942  * The extent of a cursor starts with the file/line/column pointing at the
2943  * first character within the source construct that the cursor refers to and
2944  * ends with the last character within that source construct. For a
2945  * declaration, the extent covers the declaration itself. For a reference,
2946  * the extent covers the location of the reference (e.g., where the referenced
2947  * entity was actually used).
2948  */
2949 CINDEX_LINKAGE CXSourceRange clang_getCursorExtent(CXCursor);
2950
2951 /**
2952  * @}
2953  */
2954     
2955 /**
2956  * \defgroup CINDEX_TYPES Type information for CXCursors
2957  *
2958  * @{
2959  */
2960
2961 /**
2962  * \brief Describes the kind of type
2963  */
2964 enum CXTypeKind {
2965   /**
2966    * \brief Represents an invalid type (e.g., where no type is available).
2967    */
2968   CXType_Invalid = 0,
2969
2970   /**
2971    * \brief A type whose specific kind is not exposed via this
2972    * interface.
2973    */
2974   CXType_Unexposed = 1,
2975
2976   /* Builtin types */
2977   CXType_Void = 2,
2978   CXType_Bool = 3,
2979   CXType_Char_U = 4,
2980   CXType_UChar = 5,
2981   CXType_Char16 = 6,
2982   CXType_Char32 = 7,
2983   CXType_UShort = 8,
2984   CXType_UInt = 9,
2985   CXType_ULong = 10,
2986   CXType_ULongLong = 11,
2987   CXType_UInt128 = 12,
2988   CXType_Char_S = 13,
2989   CXType_SChar = 14,
2990   CXType_WChar = 15,
2991   CXType_Short = 16,
2992   CXType_Int = 17,
2993   CXType_Long = 18,
2994   CXType_LongLong = 19,
2995   CXType_Int128 = 20,
2996   CXType_Float = 21,
2997   CXType_Double = 22,
2998   CXType_LongDouble = 23,
2999   CXType_NullPtr = 24,
3000   CXType_Overload = 25,
3001   CXType_Dependent = 26,
3002   CXType_ObjCId = 27,
3003   CXType_ObjCClass = 28,
3004   CXType_ObjCSel = 29,
3005   CXType_Float128 = 30,
3006   CXType_FirstBuiltin = CXType_Void,
3007   CXType_LastBuiltin  = CXType_ObjCSel,
3008
3009   CXType_Complex = 100,
3010   CXType_Pointer = 101,
3011   CXType_BlockPointer = 102,
3012   CXType_LValueReference = 103,
3013   CXType_RValueReference = 104,
3014   CXType_Record = 105,
3015   CXType_Enum = 106,
3016   CXType_Typedef = 107,
3017   CXType_ObjCInterface = 108,
3018   CXType_ObjCObjectPointer = 109,
3019   CXType_FunctionNoProto = 110,
3020   CXType_FunctionProto = 111,
3021   CXType_ConstantArray = 112,
3022   CXType_Vector = 113,
3023   CXType_IncompleteArray = 114,
3024   CXType_VariableArray = 115,
3025   CXType_DependentSizedArray = 116,
3026   CXType_MemberPointer = 117,
3027   CXType_Auto = 118,
3028
3029   /**
3030    * \brief Represents a type that was referred to using an elaborated type keyword.
3031    *
3032    * E.g., struct S, or via a qualified name, e.g., N::M::type, or both.
3033    */
3034   CXType_Elaborated = 119
3035 };
3036
3037 /**
3038  * \brief Describes the calling convention of a function type
3039  */
3040 enum CXCallingConv {
3041   CXCallingConv_Default = 0,
3042   CXCallingConv_C = 1,
3043   CXCallingConv_X86StdCall = 2,
3044   CXCallingConv_X86FastCall = 3,
3045   CXCallingConv_X86ThisCall = 4,
3046   CXCallingConv_X86Pascal = 5,
3047   CXCallingConv_AAPCS = 6,
3048   CXCallingConv_AAPCS_VFP = 7,
3049   CXCallingConv_X86RegCall = 8,
3050   CXCallingConv_IntelOclBicc = 9,
3051   CXCallingConv_X86_64Win64 = 10,
3052   CXCallingConv_X86_64SysV = 11,
3053   CXCallingConv_X86VectorCall = 12,
3054   CXCallingConv_Swift = 13,
3055   CXCallingConv_PreserveMost = 14,
3056   CXCallingConv_PreserveAll = 15,
3057
3058   CXCallingConv_Invalid = 100,
3059   CXCallingConv_Unexposed = 200
3060 };
3061
3062 /**
3063  * \brief The type of an element in the abstract syntax tree.
3064  *
3065  */
3066 typedef struct {
3067   enum CXTypeKind kind;
3068   void *data[2];
3069 } CXType;
3070
3071 /**
3072  * \brief Retrieve the type of a CXCursor (if any).
3073  */
3074 CINDEX_LINKAGE CXType clang_getCursorType(CXCursor C);
3075
3076 /**
3077  * \brief Pretty-print the underlying type using the rules of the
3078  * language of the translation unit from which it came.
3079  *
3080  * If the type is invalid, an empty string is returned.
3081  */
3082 CINDEX_LINKAGE CXString clang_getTypeSpelling(CXType CT);
3083
3084 /**
3085  * \brief Retrieve the underlying type of a typedef declaration.
3086  *
3087  * If the cursor does not reference a typedef declaration, an invalid type is
3088  * returned.
3089  */
3090 CINDEX_LINKAGE CXType clang_getTypedefDeclUnderlyingType(CXCursor C);
3091
3092 /**
3093  * \brief Retrieve the integer type of an enum declaration.
3094  *
3095  * If the cursor does not reference an enum declaration, an invalid type is
3096  * returned.
3097  */
3098 CINDEX_LINKAGE CXType clang_getEnumDeclIntegerType(CXCursor C);
3099
3100 /**
3101  * \brief Retrieve the integer value of an enum constant declaration as a signed
3102  *  long long.
3103  *
3104  * If the cursor does not reference an enum constant declaration, LLONG_MIN is returned.
3105  * Since this is also potentially a valid constant value, the kind of the cursor
3106  * must be verified before calling this function.
3107  */
3108 CINDEX_LINKAGE long long clang_getEnumConstantDeclValue(CXCursor C);
3109
3110 /**
3111  * \brief Retrieve the integer value of an enum constant declaration as an unsigned
3112  *  long long.
3113  *
3114  * If the cursor does not reference an enum constant declaration, ULLONG_MAX is returned.
3115  * Since this is also potentially a valid constant value, the kind of the cursor
3116  * must be verified before calling this function.
3117  */
3118 CINDEX_LINKAGE unsigned long long clang_getEnumConstantDeclUnsignedValue(CXCursor C);
3119
3120 /**
3121  * \brief Retrieve the bit width of a bit field declaration as an integer.
3122  *
3123  * If a cursor that is not a bit field declaration is passed in, -1 is returned.
3124  */
3125 CINDEX_LINKAGE int clang_getFieldDeclBitWidth(CXCursor C);
3126
3127 /**
3128  * \brief Retrieve the number of non-variadic arguments associated with a given
3129  * cursor.
3130  *
3131  * The number of arguments can be determined for calls as well as for
3132  * declarations of functions or methods. For other cursors -1 is returned.
3133  */
3134 CINDEX_LINKAGE int clang_Cursor_getNumArguments(CXCursor C);
3135
3136 /**
3137  * \brief Retrieve the argument cursor of a function or method.
3138  *
3139  * The argument cursor can be determined for calls as well as for declarations
3140  * of functions or methods. For other cursors and for invalid indices, an
3141  * invalid cursor is returned.
3142  */
3143 CINDEX_LINKAGE CXCursor clang_Cursor_getArgument(CXCursor C, unsigned i);
3144
3145 /**
3146  * \brief Describes the kind of a template argument.
3147  *
3148  * See the definition of llvm::clang::TemplateArgument::ArgKind for full
3149  * element descriptions.
3150  */
3151 enum CXTemplateArgumentKind {
3152   CXTemplateArgumentKind_Null,
3153   CXTemplateArgumentKind_Type,
3154   CXTemplateArgumentKind_Declaration,
3155   CXTemplateArgumentKind_NullPtr,
3156   CXTemplateArgumentKind_Integral,
3157   CXTemplateArgumentKind_Template,
3158   CXTemplateArgumentKind_TemplateExpansion,
3159   CXTemplateArgumentKind_Expression,
3160   CXTemplateArgumentKind_Pack,
3161   /* Indicates an error case, preventing the kind from being deduced. */
3162   CXTemplateArgumentKind_Invalid
3163 };
3164
3165 /**
3166  *\brief Returns the number of template args of a function decl representing a
3167  * template specialization.
3168  *
3169  * If the argument cursor cannot be converted into a template function
3170  * declaration, -1 is returned.
3171  *
3172  * For example, for the following declaration and specialization:
3173  *   template <typename T, int kInt, bool kBool>
3174  *   void foo() { ... }
3175  *
3176  *   template <>
3177  *   void foo<float, -7, true>();
3178  *
3179  * The value 3 would be returned from this call.
3180  */
3181 CINDEX_LINKAGE int clang_Cursor_getNumTemplateArguments(CXCursor C);
3182
3183 /**
3184  * \brief Retrieve the kind of the I'th template argument of the CXCursor C.
3185  *
3186  * If the argument CXCursor does not represent a FunctionDecl, an invalid
3187  * template argument kind is returned.
3188  *
3189  * For example, for the following declaration and specialization:
3190  *   template <typename T, int kInt, bool kBool>
3191  *   void foo() { ... }
3192  *
3193  *   template <>
3194  *   void foo<float, -7, true>();
3195  *
3196  * For I = 0, 1, and 2, Type, Integral, and Integral will be returned,
3197  * respectively.
3198  */
3199 CINDEX_LINKAGE enum CXTemplateArgumentKind clang_Cursor_getTemplateArgumentKind(
3200     CXCursor C, unsigned I);
3201
3202 /**
3203  * \brief Retrieve a CXType representing the type of a TemplateArgument of a
3204  *  function decl representing a template specialization.
3205  *
3206  * If the argument CXCursor does not represent a FunctionDecl whose I'th
3207  * template argument has a kind of CXTemplateArgKind_Integral, an invalid type
3208  * is returned.
3209  *
3210  * For example, for the following declaration and specialization:
3211  *   template <typename T, int kInt, bool kBool>
3212  *   void foo() { ... }
3213  *
3214  *   template <>
3215  *   void foo<float, -7, true>();
3216  *
3217  * If called with I = 0, "float", will be returned.
3218  * Invalid types will be returned for I == 1 or 2.
3219  */
3220 CINDEX_LINKAGE CXType clang_Cursor_getTemplateArgumentType(CXCursor C,
3221                                                            unsigned I);
3222
3223 /**
3224  * \brief Retrieve the value of an Integral TemplateArgument (of a function
3225  *  decl representing a template specialization) as a signed long long.
3226  *
3227  * It is undefined to call this function on a CXCursor that does not represent a
3228  * FunctionDecl or whose I'th template argument is not an integral value.
3229  *
3230  * For example, for the following declaration and specialization:
3231  *   template <typename T, int kInt, bool kBool>
3232  *   void foo() { ... }
3233  *
3234  *   template <>
3235  *   void foo<float, -7, true>();
3236  *
3237  * If called with I = 1 or 2, -7 or true will be returned, respectively.
3238  * For I == 0, this function's behavior is undefined.
3239  */
3240 CINDEX_LINKAGE long long clang_Cursor_getTemplateArgumentValue(CXCursor C,
3241                                                                unsigned I);
3242
3243 /**
3244  * \brief Retrieve the value of an Integral TemplateArgument (of a function
3245  *  decl representing a template specialization) as an unsigned long long.
3246  *
3247  * It is undefined to call this function on a CXCursor that does not represent a
3248  * FunctionDecl or whose I'th template argument is not an integral value.
3249  *
3250  * For example, for the following declaration and specialization:
3251  *   template <typename T, int kInt, bool kBool>
3252  *   void foo() { ... }
3253  *
3254  *   template <>
3255  *   void foo<float, 2147483649, true>();
3256  *
3257  * If called with I = 1 or 2, 2147483649 or true will be returned, respectively.
3258  * For I == 0, this function's behavior is undefined.
3259  */
3260 CINDEX_LINKAGE unsigned long long clang_Cursor_getTemplateArgumentUnsignedValue(
3261     CXCursor C, unsigned I);
3262
3263 /**
3264  * \brief Determine whether two CXTypes represent the same type.
3265  *
3266  * \returns non-zero if the CXTypes represent the same type and
3267  *          zero otherwise.
3268  */
3269 CINDEX_LINKAGE unsigned clang_equalTypes(CXType A, CXType B);
3270
3271 /**
3272  * \brief Return the canonical type for a CXType.
3273  *
3274  * Clang's type system explicitly models typedefs and all the ways
3275  * a specific type can be represented.  The canonical type is the underlying
3276  * type with all the "sugar" removed.  For example, if 'T' is a typedef
3277  * for 'int', the canonical type for 'T' would be 'int'.
3278  */
3279 CINDEX_LINKAGE CXType clang_getCanonicalType(CXType T);
3280
3281 /**
3282  * \brief Determine whether a CXType has the "const" qualifier set,
3283  * without looking through typedefs that may have added "const" at a
3284  * different level.
3285  */
3286 CINDEX_LINKAGE unsigned clang_isConstQualifiedType(CXType T);
3287
3288 /**
3289  * \brief Determine whether a  CXCursor that is a macro, is
3290  * function like.
3291  */
3292 CINDEX_LINKAGE unsigned clang_Cursor_isMacroFunctionLike(CXCursor C);
3293
3294 /**
3295  * \brief Determine whether a  CXCursor that is a macro, is a
3296  * builtin one.
3297  */
3298 CINDEX_LINKAGE unsigned clang_Cursor_isMacroBuiltin(CXCursor C);
3299
3300 /**
3301  * \brief Determine whether a  CXCursor that is a function declaration, is an
3302  * inline declaration.
3303  */
3304 CINDEX_LINKAGE unsigned clang_Cursor_isFunctionInlined(CXCursor C);
3305
3306 /**
3307  * \brief Determine whether a CXType has the "volatile" qualifier set,
3308  * without looking through typedefs that may have added "volatile" at
3309  * a different level.
3310  */
3311 CINDEX_LINKAGE unsigned clang_isVolatileQualifiedType(CXType T);
3312
3313 /**
3314  * \brief Determine whether a CXType has the "restrict" qualifier set,
3315  * without looking through typedefs that may have added "restrict" at a
3316  * different level.
3317  */
3318 CINDEX_LINKAGE unsigned clang_isRestrictQualifiedType(CXType T);
3319
3320 /**
3321  * \brief For pointer types, returns the type of the pointee.
3322  */
3323 CINDEX_LINKAGE CXType clang_getPointeeType(CXType T);
3324
3325 /**
3326  * \brief Return the cursor for the declaration of the given type.
3327  */
3328 CINDEX_LINKAGE CXCursor clang_getTypeDeclaration(CXType T);
3329
3330 /**
3331  * Returns the Objective-C type encoding for the specified declaration.
3332  */
3333 CINDEX_LINKAGE CXString clang_getDeclObjCTypeEncoding(CXCursor C);
3334
3335 /**
3336  * Returns the Objective-C type encoding for the specified CXType.
3337  */
3338 CINDEX_LINKAGE CXString clang_Type_getObjCEncoding(CXType type); 
3339
3340 /**
3341  * \brief Retrieve the spelling of a given CXTypeKind.
3342  */
3343 CINDEX_LINKAGE CXString clang_getTypeKindSpelling(enum CXTypeKind K);
3344
3345 /**
3346  * \brief Retrieve the calling convention associated with a function type.
3347  *
3348  * If a non-function type is passed in, CXCallingConv_Invalid is returned.
3349  */
3350 CINDEX_LINKAGE enum CXCallingConv clang_getFunctionTypeCallingConv(CXType T);
3351
3352 /**
3353  * \brief Retrieve the return type associated with a function type.
3354  *
3355  * If a non-function type is passed in, an invalid type is returned.
3356  */
3357 CINDEX_LINKAGE CXType clang_getResultType(CXType T);
3358
3359 /**
3360  * \brief Retrieve the number of non-variadic parameters associated with a
3361  * function type.
3362  *
3363  * If a non-function type is passed in, -1 is returned.
3364  */
3365 CINDEX_LINKAGE int clang_getNumArgTypes(CXType T);
3366
3367 /**
3368  * \brief Retrieve the type of a parameter of a function type.
3369  *
3370  * If a non-function type is passed in or the function does not have enough
3371  * parameters, an invalid type is returned.
3372  */
3373 CINDEX_LINKAGE CXType clang_getArgType(CXType T, unsigned i);
3374
3375 /**
3376  * \brief Return 1 if the CXType is a variadic function type, and 0 otherwise.
3377  */
3378 CINDEX_LINKAGE unsigned clang_isFunctionTypeVariadic(CXType T);
3379
3380 /**
3381  * \brief Retrieve the return type associated with a given cursor.
3382  *
3383  * This only returns a valid type if the cursor refers to a function or method.
3384  */
3385 CINDEX_LINKAGE CXType clang_getCursorResultType(CXCursor C);
3386
3387 /**
3388  * \brief Return 1 if the CXType is a POD (plain old data) type, and 0
3389  *  otherwise.
3390  */
3391 CINDEX_LINKAGE unsigned clang_isPODType(CXType T);
3392
3393 /**
3394  * \brief Return the element type of an array, complex, or vector type.
3395  *
3396  * If a type is passed in that is not an array, complex, or vector type,
3397  * an invalid type is returned.
3398  */
3399 CINDEX_LINKAGE CXType clang_getElementType(CXType T);
3400
3401 /**
3402  * \brief Return the number of elements of an array or vector type.
3403  *
3404  * If a type is passed in that is not an array or vector type,
3405  * -1 is returned.
3406  */
3407 CINDEX_LINKAGE long long clang_getNumElements(CXType T);
3408
3409 /**
3410  * \brief Return the element type of an array type.
3411  *
3412  * If a non-array type is passed in, an invalid type is returned.
3413  */
3414 CINDEX_LINKAGE CXType clang_getArrayElementType(CXType T);
3415
3416 /**
3417  * \brief Return the array size of a constant array.
3418  *
3419  * If a non-array type is passed in, -1 is returned.
3420  */
3421 CINDEX_LINKAGE long long clang_getArraySize(CXType T);
3422
3423 /**
3424  * \brief Retrieve the type named by the qualified-id.
3425  *
3426  * If a non-elaborated type is passed in, an invalid type is returned.
3427  */
3428 CINDEX_LINKAGE CXType clang_Type_getNamedType(CXType T);
3429
3430 /**
3431  * \brief List the possible error codes for \c clang_Type_getSizeOf,
3432  *   \c clang_Type_getAlignOf, \c clang_Type_getOffsetOf and
3433  *   \c clang_Cursor_getOffsetOf.
3434  *
3435  * A value of this enumeration type can be returned if the target type is not
3436  * a valid argument to sizeof, alignof or offsetof.
3437  */
3438 enum CXTypeLayoutError {
3439   /**
3440    * \brief Type is of kind CXType_Invalid.
3441    */
3442   CXTypeLayoutError_Invalid = -1,
3443   /**
3444    * \brief The type is an incomplete Type.
3445    */
3446   CXTypeLayoutError_Incomplete = -2,
3447   /**
3448    * \brief The type is a dependent Type.
3449    */
3450   CXTypeLayoutError_Dependent = -3,
3451   /**
3452    * \brief The type is not a constant size type.
3453    */
3454   CXTypeLayoutError_NotConstantSize = -4,
3455   /**
3456    * \brief The Field name is not valid for this record.
3457    */
3458   CXTypeLayoutError_InvalidFieldName = -5
3459 };
3460
3461 /**
3462  * \brief Return the alignment of a type in bytes as per C++[expr.alignof]
3463  *   standard.
3464  *
3465  * If the type declaration is invalid, CXTypeLayoutError_Invalid is returned.
3466  * If the type declaration is an incomplete type, CXTypeLayoutError_Incomplete
3467  *   is returned.
3468  * If the type declaration is a dependent type, CXTypeLayoutError_Dependent is
3469  *   returned.
3470  * If the type declaration is not a constant size type,
3471  *   CXTypeLayoutError_NotConstantSize is returned.
3472  */
3473 CINDEX_LINKAGE long long clang_Type_getAlignOf(CXType T);
3474
3475 /**
3476  * \brief Return the class type of an member pointer type.
3477  *
3478  * If a non-member-pointer type is passed in, an invalid type is returned.
3479  */
3480 CINDEX_LINKAGE CXType clang_Type_getClassType(CXType T);
3481
3482 /**
3483  * \brief Return the size of a type in bytes as per C++[expr.sizeof] standard.
3484  *
3485  * If the type declaration is invalid, CXTypeLayoutError_Invalid is returned.
3486  * If the type declaration is an incomplete type, CXTypeLayoutError_Incomplete
3487  *   is returned.
3488  * If the type declaration is a dependent type, CXTypeLayoutError_Dependent is
3489  *   returned.
3490  */
3491 CINDEX_LINKAGE long long clang_Type_getSizeOf(CXType T);
3492
3493 /**
3494  * \brief Return the offset of a field named S in a record of type T in bits
3495  *   as it would be returned by __offsetof__ as per C++11[18.2p4]
3496  *
3497  * If the cursor is not a record field declaration, CXTypeLayoutError_Invalid
3498  *   is returned.
3499  * If the field's type declaration is an incomplete type,
3500  *   CXTypeLayoutError_Incomplete is returned.
3501  * If the field's type declaration is a dependent type,
3502  *   CXTypeLayoutError_Dependent is returned.
3503  * If the field's name S is not found,
3504  *   CXTypeLayoutError_InvalidFieldName is returned.
3505  */
3506 CINDEX_LINKAGE long long clang_Type_getOffsetOf(CXType T, const char *S);
3507
3508 /**
3509  * \brief Return the offset of the field represented by the Cursor.
3510  *
3511  * If the cursor is not a field declaration, -1 is returned.
3512  * If the cursor semantic parent is not a record field declaration,
3513  *   CXTypeLayoutError_Invalid is returned.
3514  * If the field's type declaration is an incomplete type,
3515  *   CXTypeLayoutError_Incomplete is returned.
3516  * If the field's type declaration is a dependent type,
3517  *   CXTypeLayoutError_Dependent is returned.
3518  * If the field's name S is not found,
3519  *   CXTypeLayoutError_InvalidFieldName is returned.
3520  */
3521 CINDEX_LINKAGE long long clang_Cursor_getOffsetOfField(CXCursor C);
3522
3523 /**
3524  * \brief Determine whether the given cursor represents an anonymous record
3525  * declaration.
3526  */
3527 CINDEX_LINKAGE unsigned clang_Cursor_isAnonymous(CXCursor C);
3528
3529 enum CXRefQualifierKind {
3530   /** \brief No ref-qualifier was provided. */
3531   CXRefQualifier_None = 0,
3532   /** \brief An lvalue ref-qualifier was provided (\c &). */
3533   CXRefQualifier_LValue,
3534   /** \brief An rvalue ref-qualifier was provided (\c &&). */
3535   CXRefQualifier_RValue
3536 };
3537
3538 /**
3539  * \brief Returns the number of template arguments for given template
3540  * specialization, or -1 if type \c T is not a template specialization.
3541  */
3542 CINDEX_LINKAGE int clang_Type_getNumTemplateArguments(CXType T);
3543
3544 /**
3545  * \brief Returns the type template argument of a template class specialization
3546  * at given index.
3547  *
3548  * This function only returns template type arguments and does not handle
3549  * template template arguments or variadic packs.
3550  */
3551 CINDEX_LINKAGE CXType clang_Type_getTemplateArgumentAsType(CXType T, unsigned i);
3552
3553 /**
3554  * \brief Retrieve the ref-qualifier kind of a function or method.
3555  *
3556  * The ref-qualifier is returned for C++ functions or methods. For other types
3557  * or non-C++ declarations, CXRefQualifier_None is returned.
3558  */
3559 CINDEX_LINKAGE enum CXRefQualifierKind clang_Type_getCXXRefQualifier(CXType T);
3560
3561 /**
3562  * \brief Returns non-zero if the cursor specifies a Record member that is a
3563  *   bitfield.
3564  */
3565 CINDEX_LINKAGE unsigned clang_Cursor_isBitField(CXCursor C);
3566
3567 /**
3568  * \brief Returns 1 if the base class specified by the cursor with kind
3569  *   CX_CXXBaseSpecifier is virtual.
3570  */
3571 CINDEX_LINKAGE unsigned clang_isVirtualBase(CXCursor);
3572     
3573 /**
3574  * \brief Represents the C++ access control level to a base class for a
3575  * cursor with kind CX_CXXBaseSpecifier.
3576  */
3577 enum CX_CXXAccessSpecifier {
3578   CX_CXXInvalidAccessSpecifier,
3579   CX_CXXPublic,
3580   CX_CXXProtected,
3581   CX_CXXPrivate
3582 };
3583
3584 /**
3585  * \brief Returns the access control level for the referenced object.
3586  *
3587  * If the cursor refers to a C++ declaration, its access control level within its
3588  * parent scope is returned. Otherwise, if the cursor refers to a base specifier or
3589  * access specifier, the specifier itself is returned.
3590  */
3591 CINDEX_LINKAGE enum CX_CXXAccessSpecifier clang_getCXXAccessSpecifier(CXCursor);
3592
3593 /**
3594  * \brief Represents the storage classes as declared in the source. CX_SC_Invalid
3595  * was added for the case that the passed cursor in not a declaration.
3596  */
3597 enum CX_StorageClass {
3598   CX_SC_Invalid,
3599   CX_SC_None,
3600   CX_SC_Extern,
3601   CX_SC_Static,
3602   CX_SC_PrivateExtern,
3603   CX_SC_OpenCLWorkGroupLocal,
3604   CX_SC_Auto,
3605   CX_SC_Register
3606 };
3607
3608 /**
3609  * \brief Returns the storage class for a function or variable declaration.
3610  *
3611  * If the passed in Cursor is not a function or variable declaration,
3612  * CX_SC_Invalid is returned else the storage class.
3613  */
3614 CINDEX_LINKAGE enum CX_StorageClass clang_Cursor_getStorageClass(CXCursor);
3615
3616 /**
3617  * \brief Determine the number of overloaded declarations referenced by a 
3618  * \c CXCursor_OverloadedDeclRef cursor.
3619  *
3620  * \param cursor The cursor whose overloaded declarations are being queried.
3621  *
3622  * \returns The number of overloaded declarations referenced by \c cursor. If it
3623  * is not a \c CXCursor_OverloadedDeclRef cursor, returns 0.
3624  */
3625 CINDEX_LINKAGE unsigned clang_getNumOverloadedDecls(CXCursor cursor);
3626
3627 /**
3628  * \brief Retrieve a cursor for one of the overloaded declarations referenced
3629  * by a \c CXCursor_OverloadedDeclRef cursor.
3630  *
3631  * \param cursor The cursor whose overloaded declarations are being queried.
3632  *
3633  * \param index The zero-based index into the set of overloaded declarations in
3634  * the cursor.
3635  *
3636  * \returns A cursor representing the declaration referenced by the given 
3637  * \c cursor at the specified \c index. If the cursor does not have an 
3638  * associated set of overloaded declarations, or if the index is out of bounds,
3639  * returns \c clang_getNullCursor();
3640  */
3641 CINDEX_LINKAGE CXCursor clang_getOverloadedDecl(CXCursor cursor, 
3642                                                 unsigned index);
3643   
3644 /**
3645  * @}
3646  */
3647   
3648 /**
3649  * \defgroup CINDEX_ATTRIBUTES Information for attributes
3650  *
3651  * @{
3652  */
3653
3654 /**
3655  * \brief For cursors representing an iboutletcollection attribute,
3656  *  this function returns the collection element type.
3657  *
3658  */
3659 CINDEX_LINKAGE CXType clang_getIBOutletCollectionType(CXCursor);
3660
3661 /**
3662  * @}
3663  */
3664
3665 /**
3666  * \defgroup CINDEX_CURSOR_TRAVERSAL Traversing the AST with cursors
3667  *
3668  * These routines provide the ability to traverse the abstract syntax tree
3669  * using cursors.
3670  *
3671  * @{
3672  */
3673
3674 /**
3675  * \brief Describes how the traversal of the children of a particular
3676  * cursor should proceed after visiting a particular child cursor.
3677  *
3678  * A value of this enumeration type should be returned by each
3679  * \c CXCursorVisitor to indicate how clang_visitChildren() proceed.
3680  */
3681 enum CXChildVisitResult {
3682   /**
3683    * \brief Terminates the cursor traversal.
3684    */
3685   CXChildVisit_Break,
3686   /**
3687    * \brief Continues the cursor traversal with the next sibling of
3688    * the cursor just visited, without visiting its children.
3689    */
3690   CXChildVisit_Continue,
3691   /**
3692    * \brief Recursively traverse the children of this cursor, using
3693    * the same visitor and client data.
3694    */
3695   CXChildVisit_Recurse
3696 };
3697
3698 /**
3699  * \brief Visitor invoked for each cursor found by a traversal.
3700  *
3701  * This visitor function will be invoked for each cursor found by
3702  * clang_visitCursorChildren(). Its first argument is the cursor being
3703  * visited, its second argument is the parent visitor for that cursor,
3704  * and its third argument is the client data provided to
3705  * clang_visitCursorChildren().
3706  *
3707  * The visitor should return one of the \c CXChildVisitResult values
3708  * to direct clang_visitCursorChildren().
3709  */
3710 typedef enum CXChildVisitResult (*CXCursorVisitor)(CXCursor cursor,
3711                                                    CXCursor parent,
3712                                                    CXClientData client_data);
3713
3714 /**
3715  * \brief Visit the children of a particular cursor.
3716  *
3717  * This function visits all the direct children of the given cursor,
3718  * invoking the given \p visitor function with the cursors of each
3719  * visited child. The traversal may be recursive, if the visitor returns
3720  * \c CXChildVisit_Recurse. The traversal may also be ended prematurely, if
3721  * the visitor returns \c CXChildVisit_Break.
3722  *
3723  * \param parent the cursor whose child may be visited. All kinds of
3724  * cursors can be visited, including invalid cursors (which, by
3725  * definition, have no children).
3726  *
3727  * \param visitor the visitor function that will be invoked for each
3728  * child of \p parent.
3729  *
3730  * \param client_data pointer data supplied by the client, which will
3731  * be passed to the visitor each time it is invoked.
3732  *
3733  * \returns a non-zero value if the traversal was terminated
3734  * prematurely by the visitor returning \c CXChildVisit_Break.
3735  */
3736 CINDEX_LINKAGE unsigned clang_visitChildren(CXCursor parent,
3737                                             CXCursorVisitor visitor,
3738                                             CXClientData client_data);
3739 #ifdef __has_feature
3740 #  if __has_feature(blocks)
3741 /**
3742  * \brief Visitor invoked for each cursor found by a traversal.
3743  *
3744  * This visitor block will be invoked for each cursor found by
3745  * clang_visitChildrenWithBlock(). Its first argument is the cursor being
3746  * visited, its second argument is the parent visitor for that cursor.
3747  *
3748  * The visitor should return one of the \c CXChildVisitResult values
3749  * to direct clang_visitChildrenWithBlock().
3750  */
3751 typedef enum CXChildVisitResult 
3752      (^CXCursorVisitorBlock)(CXCursor cursor, CXCursor parent);
3753
3754 /**
3755  * Visits the children of a cursor using the specified block.  Behaves
3756  * identically to clang_visitChildren() in all other respects.
3757  */
3758 CINDEX_LINKAGE unsigned clang_visitChildrenWithBlock(CXCursor parent,
3759                                                     CXCursorVisitorBlock block);
3760 #  endif
3761 #endif
3762
3763 /**
3764  * @}
3765  */
3766
3767 /**
3768  * \defgroup CINDEX_CURSOR_XREF Cross-referencing in the AST
3769  *
3770  * These routines provide the ability to determine references within and
3771  * across translation units, by providing the names of the entities referenced
3772  * by cursors, follow reference cursors to the declarations they reference,
3773  * and associate declarations with their definitions.
3774  *
3775  * @{
3776  */
3777
3778 /**
3779  * \brief Retrieve a Unified Symbol Resolution (USR) for the entity referenced
3780  * by the given cursor.
3781  *
3782  * A Unified Symbol Resolution (USR) is a string that identifies a particular
3783  * entity (function, class, variable, etc.) within a program. USRs can be
3784  * compared across translation units to determine, e.g., when references in
3785  * one translation refer to an entity defined in another translation unit.
3786  */
3787 CINDEX_LINKAGE CXString clang_getCursorUSR(CXCursor);
3788
3789 /**
3790  * \brief Construct a USR for a specified Objective-C class.
3791  */
3792 CINDEX_LINKAGE CXString clang_constructUSR_ObjCClass(const char *class_name);
3793
3794 /**
3795  * \brief Construct a USR for a specified Objective-C category.
3796  */
3797 CINDEX_LINKAGE CXString
3798   clang_constructUSR_ObjCCategory(const char *class_name,
3799                                  const char *category_name);
3800
3801 /**
3802  * \brief Construct a USR for a specified Objective-C protocol.
3803  */
3804 CINDEX_LINKAGE CXString
3805   clang_constructUSR_ObjCProtocol(const char *protocol_name);
3806
3807 /**
3808  * \brief Construct a USR for a specified Objective-C instance variable and
3809  *   the USR for its containing class.
3810  */
3811 CINDEX_LINKAGE CXString clang_constructUSR_ObjCIvar(const char *name,
3812                                                     CXString classUSR);
3813
3814 /**
3815  * \brief Construct a USR for a specified Objective-C method and
3816  *   the USR for its containing class.
3817  */
3818 CINDEX_LINKAGE CXString clang_constructUSR_ObjCMethod(const char *name,
3819                                                       unsigned isInstanceMethod,
3820                                                       CXString classUSR);
3821
3822 /**
3823  * \brief Construct a USR for a specified Objective-C property and the USR
3824  *  for its containing class.
3825  */
3826 CINDEX_LINKAGE CXString clang_constructUSR_ObjCProperty(const char *property,
3827                                                         CXString classUSR);
3828
3829 /**
3830  * \brief Retrieve a name for the entity referenced by this cursor.
3831  */
3832 CINDEX_LINKAGE CXString clang_getCursorSpelling(CXCursor);
3833
3834 /**
3835  * \brief Retrieve a range for a piece that forms the cursors spelling name.
3836  * Most of the times there is only one range for the complete spelling but for
3837  * Objective-C methods and Objective-C message expressions, there are multiple
3838  * pieces for each selector identifier.
3839  * 
3840  * \param pieceIndex the index of the spelling name piece. If this is greater
3841  * than the actual number of pieces, it will return a NULL (invalid) range.
3842  *  
3843  * \param options Reserved.
3844  */
3845 CINDEX_LINKAGE CXSourceRange clang_Cursor_getSpellingNameRange(CXCursor,
3846                                                           unsigned pieceIndex,
3847                                                           unsigned options);
3848
3849 /**
3850  * \brief Retrieve the display name for the entity referenced by this cursor.
3851  *
3852  * The display name contains extra information that helps identify the cursor,
3853  * such as the parameters of a function or template or the arguments of a 
3854  * class template specialization.
3855  */
3856 CINDEX_LINKAGE CXString clang_getCursorDisplayName(CXCursor);
3857   
3858 /** \brief For a cursor that is a reference, retrieve a cursor representing the
3859  * entity that it references.
3860  *
3861  * Reference cursors refer to other entities in the AST. For example, an
3862  * Objective-C superclass reference cursor refers to an Objective-C class.
3863  * This function produces the cursor for the Objective-C class from the
3864  * cursor for the superclass reference. If the input cursor is a declaration or
3865  * definition, it returns that declaration or definition unchanged.
3866  * Otherwise, returns the NULL cursor.
3867  */
3868 CINDEX_LINKAGE CXCursor clang_getCursorReferenced(CXCursor);
3869
3870 /**
3871  *  \brief For a cursor that is either a reference to or a declaration
3872  *  of some entity, retrieve a cursor that describes the definition of
3873  *  that entity.
3874  *
3875  *  Some entities can be declared multiple times within a translation
3876  *  unit, but only one of those declarations can also be a
3877  *  definition. For example, given:
3878  *
3879  *  \code
3880  *  int f(int, int);
3881  *  int g(int x, int y) { return f(x, y); }
3882  *  int f(int a, int b) { return a + b; }
3883  *  int f(int, int);
3884  *  \endcode
3885  *
3886  *  there are three declarations of the function "f", but only the
3887  *  second one is a definition. The clang_getCursorDefinition()
3888  *  function will take any cursor pointing to a declaration of "f"
3889  *  (the first or fourth lines of the example) or a cursor referenced
3890  *  that uses "f" (the call to "f' inside "g") and will return a
3891  *  declaration cursor pointing to the definition (the second "f"
3892  *  declaration).
3893  *
3894  *  If given a cursor for which there is no corresponding definition,
3895  *  e.g., because there is no definition of that entity within this
3896  *  translation unit, returns a NULL cursor.
3897  */
3898 CINDEX_LINKAGE CXCursor clang_getCursorDefinition(CXCursor);
3899
3900 /**
3901  * \brief Determine whether the declaration pointed to by this cursor
3902  * is also a definition of that entity.
3903  */
3904 CINDEX_LINKAGE unsigned clang_isCursorDefinition(CXCursor);
3905
3906 /**
3907  * \brief Retrieve the canonical cursor corresponding to the given cursor.
3908  *
3909  * In the C family of languages, many kinds of entities can be declared several
3910  * times within a single translation unit. For example, a structure type can
3911  * be forward-declared (possibly multiple times) and later defined:
3912  *
3913  * \code
3914  * struct X;
3915  * struct X;
3916  * struct X {
3917  *   int member;
3918  * };
3919  * \endcode
3920  *
3921  * The declarations and the definition of \c X are represented by three 
3922  * different cursors, all of which are declarations of the same underlying 
3923  * entity. One of these cursor is considered the "canonical" cursor, which
3924  * is effectively the representative for the underlying entity. One can 
3925  * determine if two cursors are declarations of the same underlying entity by
3926  * comparing their canonical cursors.
3927  *
3928  * \returns The canonical cursor for the entity referred to by the given cursor.
3929  */
3930 CINDEX_LINKAGE CXCursor clang_getCanonicalCursor(CXCursor);
3931
3932 /**
3933  * \brief If the cursor points to a selector identifier in an Objective-C
3934  * method or message expression, this returns the selector index.
3935  *
3936  * After getting a cursor with #clang_getCursor, this can be called to
3937  * determine if the location points to a selector identifier.
3938  *
3939  * \returns The selector index if the cursor is an Objective-C method or message
3940  * expression and the cursor is pointing to a selector identifier, or -1
3941  * otherwise.
3942  */
3943 CINDEX_LINKAGE int clang_Cursor_getObjCSelectorIndex(CXCursor);
3944
3945 /**
3946  * \brief Given a cursor pointing to a C++ method call or an Objective-C
3947  * message, returns non-zero if the method/message is "dynamic", meaning:
3948  * 
3949  * For a C++ method: the call is virtual.
3950  * For an Objective-C message: the receiver is an object instance, not 'super'
3951  * or a specific class.
3952  * 
3953  * If the method/message is "static" or the cursor does not point to a
3954  * method/message, it will return zero.
3955  */
3956 CINDEX_LINKAGE int clang_Cursor_isDynamicCall(CXCursor C);
3957
3958 /**
3959  * \brief Given a cursor pointing to an Objective-C message, returns the CXType
3960  * of the receiver.
3961  */
3962 CINDEX_LINKAGE CXType clang_Cursor_getReceiverType(CXCursor C);
3963
3964 /**
3965  * \brief Property attributes for a \c CXCursor_ObjCPropertyDecl.
3966  */
3967 typedef enum {
3968   CXObjCPropertyAttr_noattr    = 0x00,
3969   CXObjCPropertyAttr_readonly  = 0x01,
3970   CXObjCPropertyAttr_getter    = 0x02,
3971   CXObjCPropertyAttr_assign    = 0x04,
3972   CXObjCPropertyAttr_readwrite = 0x08,
3973   CXObjCPropertyAttr_retain    = 0x10,
3974   CXObjCPropertyAttr_copy      = 0x20,
3975   CXObjCPropertyAttr_nonatomic = 0x40,
3976   CXObjCPropertyAttr_setter    = 0x80,
3977   CXObjCPropertyAttr_atomic    = 0x100,
3978   CXObjCPropertyAttr_weak      = 0x200,
3979   CXObjCPropertyAttr_strong    = 0x400,
3980   CXObjCPropertyAttr_unsafe_unretained = 0x800,
3981   CXObjCPropertyAttr_class = 0x1000
3982 } CXObjCPropertyAttrKind;
3983
3984 /**
3985  * \brief Given a cursor that represents a property declaration, return the
3986  * associated property attributes. The bits are formed from
3987  * \c CXObjCPropertyAttrKind.
3988  *
3989  * \param reserved Reserved for future use, pass 0.
3990  */
3991 CINDEX_LINKAGE unsigned clang_Cursor_getObjCPropertyAttributes(CXCursor C,
3992                                                              unsigned reserved);
3993
3994 /**
3995  * \brief 'Qualifiers' written next to the return and parameter types in
3996  * Objective-C method declarations.
3997  */
3998 typedef enum {
3999   CXObjCDeclQualifier_None = 0x0,
4000   CXObjCDeclQualifier_In = 0x1,
4001   CXObjCDeclQualifier_Inout = 0x2,
4002   CXObjCDeclQualifier_Out = 0x4,
4003   CXObjCDeclQualifier_Bycopy = 0x8,
4004   CXObjCDeclQualifier_Byref = 0x10,
4005   CXObjCDeclQualifier_Oneway = 0x20
4006 } CXObjCDeclQualifierKind;
4007
4008 /**
4009  * \brief Given a cursor that represents an Objective-C method or parameter
4010  * declaration, return the associated Objective-C qualifiers for the return
4011  * type or the parameter respectively. The bits are formed from
4012  * CXObjCDeclQualifierKind.
4013  */
4014 CINDEX_LINKAGE unsigned clang_Cursor_getObjCDeclQualifiers(CXCursor C);
4015
4016 /**
4017  * \brief Given a cursor that represents an Objective-C method or property
4018  * declaration, return non-zero if the declaration was affected by "@optional".
4019  * Returns zero if the cursor is not such a declaration or it is "@required".
4020  */
4021 CINDEX_LINKAGE unsigned clang_Cursor_isObjCOptional(CXCursor C);
4022
4023 /**
4024  * \brief Returns non-zero if the given cursor is a variadic function or method.
4025  */
4026 CINDEX_LINKAGE unsigned clang_Cursor_isVariadic(CXCursor C);
4027
4028 /**
4029  * \brief Given a cursor that represents a declaration, return the associated
4030  * comment's source range.  The range may include multiple consecutive comments
4031  * with whitespace in between.
4032  */
4033 CINDEX_LINKAGE CXSourceRange clang_Cursor_getCommentRange(CXCursor C);
4034
4035 /**
4036  * \brief Given a cursor that represents a declaration, return the associated
4037  * comment text, including comment markers.
4038  */
4039 CINDEX_LINKAGE CXString clang_Cursor_getRawCommentText(CXCursor C);
4040
4041 /**
4042  * \brief Given a cursor that represents a documentable entity (e.g.,
4043  * declaration), return the associated \\brief paragraph; otherwise return the
4044  * first paragraph.
4045  */
4046 CINDEX_LINKAGE CXString clang_Cursor_getBriefCommentText(CXCursor C);
4047
4048 /**
4049  * @}
4050  */
4051
4052 /** \defgroup CINDEX_MANGLE Name Mangling API Functions
4053  *
4054  * @{
4055  */
4056
4057 /**
4058  * \brief Retrieve the CXString representing the mangled name of the cursor.
4059  */
4060 CINDEX_LINKAGE CXString clang_Cursor_getMangling(CXCursor);
4061
4062 /**
4063  * \brief Retrieve the CXStrings representing the mangled symbols of the C++
4064  * constructor or destructor at the cursor.
4065  */
4066 CINDEX_LINKAGE CXStringSet *clang_Cursor_getCXXManglings(CXCursor);
4067
4068 /**
4069  * @}
4070  */
4071
4072 /**
4073  * \defgroup CINDEX_MODULE Module introspection
4074  *
4075  * The functions in this group provide access to information about modules.
4076  *
4077  * @{
4078  */
4079
4080 typedef void *CXModule;
4081
4082 /**
4083  * \brief Given a CXCursor_ModuleImportDecl cursor, return the associated module.
4084  */
4085 CINDEX_LINKAGE CXModule clang_Cursor_getModule(CXCursor C);
4086
4087 /**
4088  * \brief Given a CXFile header file, return the module that contains it, if one
4089  * exists.
4090  */
4091 CINDEX_LINKAGE CXModule clang_getModuleForFile(CXTranslationUnit, CXFile);
4092
4093 /**
4094  * \param Module a module object.
4095  *
4096  * \returns the module file where the provided module object came from.
4097  */
4098 CINDEX_LINKAGE CXFile clang_Module_getASTFile(CXModule Module);
4099
4100 /**
4101  * \param Module a module object.
4102  *
4103  * \returns the parent of a sub-module or NULL if the given module is top-level,
4104  * e.g. for 'std.vector' it will return the 'std' module.
4105  */
4106 CINDEX_LINKAGE CXModule clang_Module_getParent(CXModule Module);
4107
4108 /**
4109  * \param Module a module object.
4110  *
4111  * \returns the name of the module, e.g. for the 'std.vector' sub-module it
4112  * will return "vector".
4113  */
4114 CINDEX_LINKAGE CXString clang_Module_getName(CXModule Module);
4115
4116 /**
4117  * \param Module a module object.
4118  *
4119  * \returns the full name of the module, e.g. "std.vector".
4120  */
4121 CINDEX_LINKAGE CXString clang_Module_getFullName(CXModule Module);
4122
4123 /**
4124  * \param Module a module object.
4125  *
4126  * \returns non-zero if the module is a system one.
4127  */
4128 CINDEX_LINKAGE int clang_Module_isSystem(CXModule Module);
4129
4130 /**
4131  * \param Module a module object.
4132  *
4133  * \returns the number of top level headers associated with this module.
4134  */
4135 CINDEX_LINKAGE unsigned clang_Module_getNumTopLevelHeaders(CXTranslationUnit,
4136                                                            CXModule Module);
4137
4138 /**
4139  * \param Module a module object.
4140  *
4141  * \param Index top level header index (zero-based).
4142  *
4143  * \returns the specified top level header associated with the module.
4144  */
4145 CINDEX_LINKAGE
4146 CXFile clang_Module_getTopLevelHeader(CXTranslationUnit,
4147                                       CXModule Module, unsigned Index);
4148
4149 /**
4150  * @}
4151  */
4152
4153 /**
4154  * \defgroup CINDEX_CPP C++ AST introspection
4155  *
4156  * The routines in this group provide access information in the ASTs specific
4157  * to C++ language features.
4158  *
4159  * @{
4160  */
4161
4162 /**
4163  * \brief Determine if a C++ constructor is a converting constructor.
4164  */
4165 CINDEX_LINKAGE unsigned clang_CXXConstructor_isConvertingConstructor(CXCursor C);
4166
4167 /**
4168  * \brief Determine if a C++ constructor is a copy constructor.
4169  */
4170 CINDEX_LINKAGE unsigned clang_CXXConstructor_isCopyConstructor(CXCursor C);
4171
4172 /**
4173  * \brief Determine if a C++ constructor is the default constructor.
4174  */
4175 CINDEX_LINKAGE unsigned clang_CXXConstructor_isDefaultConstructor(CXCursor C);
4176
4177 /**
4178  * \brief Determine if a C++ constructor is a move constructor.
4179  */
4180 CINDEX_LINKAGE unsigned clang_CXXConstructor_isMoveConstructor(CXCursor C);
4181
4182 /**
4183  * \brief Determine if a C++ field is declared 'mutable'.
4184  */
4185 CINDEX_LINKAGE unsigned clang_CXXField_isMutable(CXCursor C);
4186
4187 /**
4188  * \brief Determine if a C++ method is declared '= default'.
4189  */
4190 CINDEX_LINKAGE unsigned clang_CXXMethod_isDefaulted(CXCursor C);
4191
4192 /**
4193  * \brief Determine if a C++ member function or member function template is
4194  * pure virtual.
4195  */
4196 CINDEX_LINKAGE unsigned clang_CXXMethod_isPureVirtual(CXCursor C);
4197
4198 /**
4199  * \brief Determine if a C++ member function or member function template is 
4200  * declared 'static'.
4201  */
4202 CINDEX_LINKAGE unsigned clang_CXXMethod_isStatic(CXCursor C);
4203
4204 /**
4205  * \brief Determine if a C++ member function or member function template is
4206  * explicitly declared 'virtual' or if it overrides a virtual method from
4207  * one of the base classes.
4208  */
4209 CINDEX_LINKAGE unsigned clang_CXXMethod_isVirtual(CXCursor C);
4210
4211 /**
4212  * \brief Determine if a C++ member function or member function template is
4213  * declared 'const'.
4214  */
4215 CINDEX_LINKAGE unsigned clang_CXXMethod_isConst(CXCursor C);
4216
4217 /**
4218  * \brief Given a cursor that represents a template, determine
4219  * the cursor kind of the specializations would be generated by instantiating
4220  * the template.
4221  *
4222  * This routine can be used to determine what flavor of function template,
4223  * class template, or class template partial specialization is stored in the
4224  * cursor. For example, it can describe whether a class template cursor is
4225  * declared with "struct", "class" or "union".
4226  *
4227  * \param C The cursor to query. This cursor should represent a template
4228  * declaration.
4229  *
4230  * \returns The cursor kind of the specializations that would be generated
4231  * by instantiating the template \p C. If \p C is not a template, returns
4232  * \c CXCursor_NoDeclFound.
4233  */
4234 CINDEX_LINKAGE enum CXCursorKind clang_getTemplateCursorKind(CXCursor C);
4235   
4236 /**
4237  * \brief Given a cursor that may represent a specialization or instantiation
4238  * of a template, retrieve the cursor that represents the template that it
4239  * specializes or from which it was instantiated.
4240  *
4241  * This routine determines the template involved both for explicit 
4242  * specializations of templates and for implicit instantiations of the template,
4243  * both of which are referred to as "specializations". For a class template
4244  * specialization (e.g., \c std::vector<bool>), this routine will return 
4245  * either the primary template (\c std::vector) or, if the specialization was
4246  * instantiated from a class template partial specialization, the class template
4247  * partial specialization. For a class template partial specialization and a
4248  * function template specialization (including instantiations), this
4249  * this routine will return the specialized template.
4250  *
4251  * For members of a class template (e.g., member functions, member classes, or
4252  * static data members), returns the specialized or instantiated member. 
4253  * Although not strictly "templates" in the C++ language, members of class
4254  * templates have the same notions of specializations and instantiations that
4255  * templates do, so this routine treats them similarly.
4256  *
4257  * \param C A cursor that may be a specialization of a template or a member
4258  * of a template.
4259  *
4260  * \returns If the given cursor is a specialization or instantiation of a 
4261  * template or a member thereof, the template or member that it specializes or
4262  * from which it was instantiated. Otherwise, returns a NULL cursor.
4263  */
4264 CINDEX_LINKAGE CXCursor clang_getSpecializedCursorTemplate(CXCursor C);
4265
4266 /**
4267  * \brief Given a cursor that references something else, return the source range
4268  * covering that reference.
4269  *
4270  * \param C A cursor pointing to a member reference, a declaration reference, or
4271  * an operator call.
4272  * \param NameFlags A bitset with three independent flags: 
4273  * CXNameRange_WantQualifier, CXNameRange_WantTemplateArgs, and
4274  * CXNameRange_WantSinglePiece.
4275  * \param PieceIndex For contiguous names or when passing the flag 
4276  * CXNameRange_WantSinglePiece, only one piece with index 0 is 
4277  * available. When the CXNameRange_WantSinglePiece flag is not passed for a
4278  * non-contiguous names, this index can be used to retrieve the individual
4279  * pieces of the name. See also CXNameRange_WantSinglePiece.
4280  *
4281  * \returns The piece of the name pointed to by the given cursor. If there is no
4282  * name, or if the PieceIndex is out-of-range, a null-cursor will be returned.
4283  */
4284 CINDEX_LINKAGE CXSourceRange clang_getCursorReferenceNameRange(CXCursor C,
4285                                                 unsigned NameFlags, 
4286                                                 unsigned PieceIndex);
4287
4288 enum CXNameRefFlags {
4289   /**
4290    * \brief Include the nested-name-specifier, e.g. Foo:: in x.Foo::y, in the
4291    * range.
4292    */
4293   CXNameRange_WantQualifier = 0x1,
4294   
4295   /**
4296    * \brief Include the explicit template arguments, e.g. \<int> in x.f<int>,
4297    * in the range.
4298    */
4299   CXNameRange_WantTemplateArgs = 0x2,
4300
4301   /**
4302    * \brief If the name is non-contiguous, return the full spanning range.
4303    *
4304    * Non-contiguous names occur in Objective-C when a selector with two or more
4305    * parameters is used, or in C++ when using an operator:
4306    * \code
4307    * [object doSomething:here withValue:there]; // Objective-C
4308    * return some_vector[1]; // C++
4309    * \endcode
4310    */
4311   CXNameRange_WantSinglePiece = 0x4
4312 };
4313   
4314 /**
4315  * @}
4316  */
4317
4318 /**
4319  * \defgroup CINDEX_LEX Token extraction and manipulation
4320  *
4321  * The routines in this group provide access to the tokens within a
4322  * translation unit, along with a semantic mapping of those tokens to
4323  * their corresponding cursors.
4324  *
4325  * @{
4326  */
4327
4328 /**
4329  * \brief Describes a kind of token.
4330  */
4331 typedef enum CXTokenKind {
4332   /**
4333    * \brief A token that contains some kind of punctuation.
4334    */
4335   CXToken_Punctuation,
4336
4337   /**
4338    * \brief A language keyword.
4339    */
4340   CXToken_Keyword,
4341
4342   /**
4343    * \brief An identifier (that is not a keyword).
4344    */
4345   CXToken_Identifier,
4346
4347   /**
4348    * \brief A numeric, string, or character literal.
4349    */
4350   CXToken_Literal,
4351
4352   /**
4353    * \brief A comment.
4354    */
4355   CXToken_Comment
4356 } CXTokenKind;
4357
4358 /**
4359  * \brief Describes a single preprocessing token.
4360  */
4361 typedef struct {
4362   unsigned int_data[4];
4363   void *ptr_data;
4364 } CXToken;
4365
4366 /**
4367  * \brief Determine the kind of the given token.
4368  */
4369 CINDEX_LINKAGE CXTokenKind clang_getTokenKind(CXToken);
4370
4371 /**
4372  * \brief Determine the spelling of the given token.
4373  *
4374  * The spelling of a token is the textual representation of that token, e.g.,
4375  * the text of an identifier or keyword.
4376  */
4377 CINDEX_LINKAGE CXString clang_getTokenSpelling(CXTranslationUnit, CXToken);
4378
4379 /**
4380  * \brief Retrieve the source location of the given token.
4381  */
4382 CINDEX_LINKAGE CXSourceLocation clang_getTokenLocation(CXTranslationUnit,
4383                                                        CXToken);
4384
4385 /**
4386  * \brief Retrieve a source range that covers the given token.
4387  */
4388 CINDEX_LINKAGE CXSourceRange clang_getTokenExtent(CXTranslationUnit, CXToken);
4389
4390 /**
4391  * \brief Tokenize the source code described by the given range into raw
4392  * lexical tokens.
4393  *
4394  * \param TU the translation unit whose text is being tokenized.
4395  *
4396  * \param Range the source range in which text should be tokenized. All of the
4397  * tokens produced by tokenization will fall within this source range,
4398  *
4399  * \param Tokens this pointer will be set to point to the array of tokens
4400  * that occur within the given source range. The returned pointer must be
4401  * freed with clang_disposeTokens() before the translation unit is destroyed.
4402  *
4403  * \param NumTokens will be set to the number of tokens in the \c *Tokens
4404  * array.
4405  *
4406  */
4407 CINDEX_LINKAGE void clang_tokenize(CXTranslationUnit TU, CXSourceRange Range,
4408                                    CXToken **Tokens, unsigned *NumTokens);
4409
4410 /**
4411  * \brief Annotate the given set of tokens by providing cursors for each token
4412  * that can be mapped to a specific entity within the abstract syntax tree.
4413  *
4414  * This token-annotation routine is equivalent to invoking
4415  * clang_getCursor() for the source locations of each of the
4416  * tokens. The cursors provided are filtered, so that only those
4417  * cursors that have a direct correspondence to the token are
4418  * accepted. For example, given a function call \c f(x),
4419  * clang_getCursor() would provide the following cursors:
4420  *
4421  *   * when the cursor is over the 'f', a DeclRefExpr cursor referring to 'f'.
4422  *   * when the cursor is over the '(' or the ')', a CallExpr referring to 'f'.
4423  *   * when the cursor is over the 'x', a DeclRefExpr cursor referring to 'x'.
4424  *
4425  * Only the first and last of these cursors will occur within the
4426  * annotate, since the tokens "f" and "x' directly refer to a function
4427  * and a variable, respectively, but the parentheses are just a small
4428  * part of the full syntax of the function call expression, which is
4429  * not provided as an annotation.
4430  *
4431  * \param TU the translation unit that owns the given tokens.
4432  *
4433  * \param Tokens the set of tokens to annotate.
4434  *
4435  * \param NumTokens the number of tokens in \p Tokens.
4436  *
4437  * \param Cursors an array of \p NumTokens cursors, whose contents will be
4438  * replaced with the cursors corresponding to each token.
4439  */
4440 CINDEX_LINKAGE void clang_annotateTokens(CXTranslationUnit TU,
4441                                          CXToken *Tokens, unsigned NumTokens,
4442                                          CXCursor *Cursors);
4443
4444 /**
4445  * \brief Free the given set of tokens.
4446  */
4447 CINDEX_LINKAGE void clang_disposeTokens(CXTranslationUnit TU,
4448                                         CXToken *Tokens, unsigned NumTokens);
4449
4450 /**
4451  * @}
4452  */
4453
4454 /**
4455  * \defgroup CINDEX_DEBUG Debugging facilities
4456  *
4457  * These routines are used for testing and debugging, only, and should not
4458  * be relied upon.
4459  *
4460  * @{
4461  */
4462
4463 /* for debug/testing */
4464 CINDEX_LINKAGE CXString clang_getCursorKindSpelling(enum CXCursorKind Kind);
4465 CINDEX_LINKAGE void clang_getDefinitionSpellingAndExtent(CXCursor,
4466                                           const char **startBuf,
4467                                           const char **endBuf,
4468                                           unsigned *startLine,
4469                                           unsigned *startColumn,
4470                                           unsigned *endLine,
4471                                           unsigned *endColumn);
4472 CINDEX_LINKAGE void clang_enableStackTraces(void);
4473 CINDEX_LINKAGE void clang_executeOnThread(void (*fn)(void*), void *user_data,
4474                                           unsigned stack_size);
4475
4476 /**
4477  * @}
4478  */
4479
4480 /**
4481  * \defgroup CINDEX_CODE_COMPLET Code completion
4482  *
4483  * Code completion involves taking an (incomplete) source file, along with
4484  * knowledge of where the user is actively editing that file, and suggesting
4485  * syntactically- and semantically-valid constructs that the user might want to
4486  * use at that particular point in the source code. These data structures and
4487  * routines provide support for code completion.
4488  *
4489  * @{
4490  */
4491
4492 /**
4493  * \brief A semantic string that describes a code-completion result.
4494  *
4495  * A semantic string that describes the formatting of a code-completion
4496  * result as a single "template" of text that should be inserted into the
4497  * source buffer when a particular code-completion result is selected.
4498  * Each semantic string is made up of some number of "chunks", each of which
4499  * contains some text along with a description of what that text means, e.g.,
4500  * the name of the entity being referenced, whether the text chunk is part of
4501  * the template, or whether it is a "placeholder" that the user should replace
4502  * with actual code,of a specific kind. See \c CXCompletionChunkKind for a
4503  * description of the different kinds of chunks.
4504  */
4505 typedef void *CXCompletionString;
4506
4507 /**
4508  * \brief A single result of code completion.
4509  */
4510 typedef struct {
4511   /**
4512    * \brief The kind of entity that this completion refers to.
4513    *
4514    * The cursor kind will be a macro, keyword, or a declaration (one of the
4515    * *Decl cursor kinds), describing the entity that the completion is
4516    * referring to.
4517    *
4518    * \todo In the future, we would like to provide a full cursor, to allow
4519    * the client to extract additional information from declaration.
4520    */
4521   enum CXCursorKind CursorKind;
4522
4523   /**
4524    * \brief The code-completion string that describes how to insert this
4525    * code-completion result into the editing buffer.
4526    */
4527   CXCompletionString CompletionString;
4528 } CXCompletionResult;
4529
4530 /**
4531  * \brief Describes a single piece of text within a code-completion string.
4532  *
4533  * Each "chunk" within a code-completion string (\c CXCompletionString) is
4534  * either a piece of text with a specific "kind" that describes how that text
4535  * should be interpreted by the client or is another completion string.
4536  */
4537 enum CXCompletionChunkKind {
4538   /**
4539    * \brief A code-completion string that describes "optional" text that
4540    * could be a part of the template (but is not required).
4541    *
4542    * The Optional chunk is the only kind of chunk that has a code-completion
4543    * string for its representation, which is accessible via
4544    * \c clang_getCompletionChunkCompletionString(). The code-completion string
4545    * describes an additional part of the template that is completely optional.
4546    * For example, optional chunks can be used to describe the placeholders for
4547    * arguments that match up with defaulted function parameters, e.g. given:
4548    *
4549    * \code
4550    * void f(int x, float y = 3.14, double z = 2.71828);
4551    * \endcode
4552    *
4553    * The code-completion string for this function would contain:
4554    *   - a TypedText chunk for "f".
4555    *   - a LeftParen chunk for "(".
4556    *   - a Placeholder chunk for "int x"
4557    *   - an Optional chunk containing the remaining defaulted arguments, e.g.,
4558    *       - a Comma chunk for ","
4559    *       - a Placeholder chunk for "float y"
4560    *       - an Optional chunk containing the last defaulted argument:
4561    *           - a Comma chunk for ","
4562    *           - a Placeholder chunk for "double z"
4563    *   - a RightParen chunk for ")"
4564    *
4565    * There are many ways to handle Optional chunks. Two simple approaches are:
4566    *   - Completely ignore optional chunks, in which case the template for the
4567    *     function "f" would only include the first parameter ("int x").
4568    *   - Fully expand all optional chunks, in which case the template for the
4569    *     function "f" would have all of the parameters.
4570    */
4571   CXCompletionChunk_Optional,
4572   /**
4573    * \brief Text that a user would be expected to type to get this
4574    * code-completion result.
4575    *
4576    * There will be exactly one "typed text" chunk in a semantic string, which
4577    * will typically provide the spelling of a keyword or the name of a
4578    * declaration that could be used at the current code point. Clients are
4579    * expected to filter the code-completion results based on the text in this
4580    * chunk.
4581    */
4582   CXCompletionChunk_TypedText,
4583   /**
4584    * \brief Text that should be inserted as part of a code-completion result.
4585    *
4586    * A "text" chunk represents text that is part of the template to be
4587    * inserted into user code should this particular code-completion result
4588    * be selected.
4589    */
4590   CXCompletionChunk_Text,
4591   /**
4592    * \brief Placeholder text that should be replaced by the user.
4593    *
4594    * A "placeholder" chunk marks a place where the user should insert text
4595    * into the code-completion template. For example, placeholders might mark
4596    * the function parameters for a function declaration, to indicate that the
4597    * user should provide arguments for each of those parameters. The actual
4598    * text in a placeholder is a suggestion for the text to display before
4599    * the user replaces the placeholder with real code.
4600    */
4601   CXCompletionChunk_Placeholder,
4602   /**
4603    * \brief Informative text that should be displayed but never inserted as
4604    * part of the template.
4605    *
4606    * An "informative" chunk contains annotations that can be displayed to
4607    * help the user decide whether a particular code-completion result is the
4608    * right option, but which is not part of the actual template to be inserted
4609    * by code completion.
4610    */
4611   CXCompletionChunk_Informative,
4612   /**
4613    * \brief Text that describes the current parameter when code-completion is
4614    * referring to function call, message send, or template specialization.
4615    *
4616    * A "current parameter" chunk occurs when code-completion is providing
4617    * information about a parameter corresponding to the argument at the
4618    * code-completion point. For example, given a function
4619    *
4620    * \code
4621    * int add(int x, int y);
4622    * \endcode
4623    *
4624    * and the source code \c add(, where the code-completion point is after the
4625    * "(", the code-completion string will contain a "current parameter" chunk
4626    * for "int x", indicating that the current argument will initialize that
4627    * parameter. After typing further, to \c add(17, (where the code-completion
4628    * point is after the ","), the code-completion string will contain a
4629    * "current paremeter" chunk to "int y".
4630    */
4631   CXCompletionChunk_CurrentParameter,
4632   /**
4633    * \brief A left parenthesis ('('), used to initiate a function call or
4634    * signal the beginning of a function parameter list.
4635    */
4636   CXCompletionChunk_LeftParen,
4637   /**
4638    * \brief A right parenthesis (')'), used to finish a function call or
4639    * signal the end of a function parameter list.
4640    */
4641   CXCompletionChunk_RightParen,
4642   /**
4643    * \brief A left bracket ('[').
4644    */
4645   CXCompletionChunk_LeftBracket,
4646   /**
4647    * \brief A right bracket (']').
4648    */
4649   CXCompletionChunk_RightBracket,
4650   /**
4651    * \brief A left brace ('{').
4652    */
4653   CXCompletionChunk_LeftBrace,
4654   /**
4655    * \brief A right brace ('}').
4656    */
4657   CXCompletionChunk_RightBrace,
4658   /**
4659    * \brief A left angle bracket ('<').
4660    */
4661   CXCompletionChunk_LeftAngle,
4662   /**
4663    * \brief A right angle bracket ('>').
4664    */
4665   CXCompletionChunk_RightAngle,
4666   /**
4667    * \brief A comma separator (',').
4668    */
4669   CXCompletionChunk_Comma,
4670   /**
4671    * \brief Text that specifies the result type of a given result.
4672    *
4673    * This special kind of informative chunk is not meant to be inserted into
4674    * the text buffer. Rather, it is meant to illustrate the type that an
4675    * expression using the given completion string would have.
4676    */
4677   CXCompletionChunk_ResultType,
4678   /**
4679    * \brief A colon (':').
4680    */
4681   CXCompletionChunk_Colon,
4682   /**
4683    * \brief A semicolon (';').
4684    */
4685   CXCompletionChunk_SemiColon,
4686   /**
4687    * \brief An '=' sign.
4688    */
4689   CXCompletionChunk_Equal,
4690   /**
4691    * Horizontal space (' ').
4692    */
4693   CXCompletionChunk_HorizontalSpace,
4694   /**
4695    * Vertical space ('\n'), after which it is generally a good idea to
4696    * perform indentation.
4697    */
4698   CXCompletionChunk_VerticalSpace
4699 };
4700
4701 /**
4702  * \brief Determine the kind of a particular chunk within a completion string.
4703  *
4704  * \param completion_string the completion string to query.
4705  *
4706  * \param chunk_number the 0-based index of the chunk in the completion string.
4707  *
4708  * \returns the kind of the chunk at the index \c chunk_number.
4709  */
4710 CINDEX_LINKAGE enum CXCompletionChunkKind
4711 clang_getCompletionChunkKind(CXCompletionString completion_string,
4712                              unsigned chunk_number);
4713
4714 /**
4715  * \brief Retrieve the text associated with a particular chunk within a
4716  * completion string.
4717  *
4718  * \param completion_string the completion string to query.
4719  *
4720  * \param chunk_number the 0-based index of the chunk in the completion string.
4721  *
4722  * \returns the text associated with the chunk at index \c chunk_number.
4723  */
4724 CINDEX_LINKAGE CXString
4725 clang_getCompletionChunkText(CXCompletionString completion_string,
4726                              unsigned chunk_number);
4727
4728 /**
4729  * \brief Retrieve the completion string associated with a particular chunk
4730  * within a completion string.
4731  *
4732  * \param completion_string the completion string to query.
4733  *
4734  * \param chunk_number the 0-based index of the chunk in the completion string.
4735  *
4736  * \returns the completion string associated with the chunk at index
4737  * \c chunk_number.
4738  */
4739 CINDEX_LINKAGE CXCompletionString
4740 clang_getCompletionChunkCompletionString(CXCompletionString completion_string,
4741                                          unsigned chunk_number);
4742
4743 /**
4744  * \brief Retrieve the number of chunks in the given code-completion string.
4745  */
4746 CINDEX_LINKAGE unsigned
4747 clang_getNumCompletionChunks(CXCompletionString completion_string);
4748
4749 /**
4750  * \brief Determine the priority of this code completion.
4751  *
4752  * The priority of a code completion indicates how likely it is that this 
4753  * particular completion is the completion that the user will select. The
4754  * priority is selected by various internal heuristics.
4755  *
4756  * \param completion_string The completion string to query.
4757  *
4758  * \returns The priority of this completion string. Smaller values indicate
4759  * higher-priority (more likely) completions.
4760  */
4761 CINDEX_LINKAGE unsigned
4762 clang_getCompletionPriority(CXCompletionString completion_string);
4763   
4764 /**
4765  * \brief Determine the availability of the entity that this code-completion
4766  * string refers to.
4767  *
4768  * \param completion_string The completion string to query.
4769  *
4770  * \returns The availability of the completion string.
4771  */
4772 CINDEX_LINKAGE enum CXAvailabilityKind 
4773 clang_getCompletionAvailability(CXCompletionString completion_string);
4774
4775 /**
4776  * \brief Retrieve the number of annotations associated with the given
4777  * completion string.
4778  *
4779  * \param completion_string the completion string to query.
4780  *
4781  * \returns the number of annotations associated with the given completion
4782  * string.
4783  */
4784 CINDEX_LINKAGE unsigned
4785 clang_getCompletionNumAnnotations(CXCompletionString completion_string);
4786
4787 /**
4788  * \brief Retrieve the annotation associated with the given completion string.
4789  *
4790  * \param completion_string the completion string to query.
4791  *
4792  * \param annotation_number the 0-based index of the annotation of the
4793  * completion string.
4794  *
4795  * \returns annotation string associated with the completion at index
4796  * \c annotation_number, or a NULL string if that annotation is not available.
4797  */
4798 CINDEX_LINKAGE CXString
4799 clang_getCompletionAnnotation(CXCompletionString completion_string,
4800                               unsigned annotation_number);
4801
4802 /**
4803  * \brief Retrieve the parent context of the given completion string.
4804  *
4805  * The parent context of a completion string is the semantic parent of 
4806  * the declaration (if any) that the code completion represents. For example,
4807  * a code completion for an Objective-C method would have the method's class
4808  * or protocol as its context.
4809  *
4810  * \param completion_string The code completion string whose parent is
4811  * being queried.
4812  *
4813  * \param kind DEPRECATED: always set to CXCursor_NotImplemented if non-NULL.
4814  *
4815  * \returns The name of the completion parent, e.g., "NSObject" if
4816  * the completion string represents a method in the NSObject class.
4817  */
4818 CINDEX_LINKAGE CXString
4819 clang_getCompletionParent(CXCompletionString completion_string,
4820                           enum CXCursorKind *kind);
4821
4822 /**
4823  * \brief Retrieve the brief documentation comment attached to the declaration
4824  * that corresponds to the given completion string.
4825  */
4826 CINDEX_LINKAGE CXString
4827 clang_getCompletionBriefComment(CXCompletionString completion_string);
4828
4829 /**
4830  * \brief Retrieve a completion string for an arbitrary declaration or macro
4831  * definition cursor.
4832  *
4833  * \param cursor The cursor to query.
4834  *
4835  * \returns A non-context-sensitive completion string for declaration and macro
4836  * definition cursors, or NULL for other kinds of cursors.
4837  */
4838 CINDEX_LINKAGE CXCompletionString
4839 clang_getCursorCompletionString(CXCursor cursor);
4840   
4841 /**
4842  * \brief Contains the results of code-completion.
4843  *
4844  * This data structure contains the results of code completion, as
4845  * produced by \c clang_codeCompleteAt(). Its contents must be freed by
4846  * \c clang_disposeCodeCompleteResults.
4847  */
4848 typedef struct {
4849   /**
4850    * \brief The code-completion results.
4851    */
4852   CXCompletionResult *Results;
4853
4854   /**
4855    * \brief The number of code-completion results stored in the
4856    * \c Results array.
4857    */
4858   unsigned NumResults;
4859 } CXCodeCompleteResults;
4860
4861 /**
4862  * \brief Flags that can be passed to \c clang_codeCompleteAt() to
4863  * modify its behavior.
4864  *
4865  * The enumerators in this enumeration can be bitwise-OR'd together to
4866  * provide multiple options to \c clang_codeCompleteAt().
4867  */
4868 enum CXCodeComplete_Flags {
4869   /**
4870    * \brief Whether to include macros within the set of code
4871    * completions returned.
4872    */
4873   CXCodeComplete_IncludeMacros = 0x01,
4874
4875   /**
4876    * \brief Whether to include code patterns for language constructs
4877    * within the set of code completions, e.g., for loops.
4878    */
4879   CXCodeComplete_IncludeCodePatterns = 0x02,
4880
4881   /**
4882    * \brief Whether to include brief documentation within the set of code
4883    * completions returned.
4884    */
4885   CXCodeComplete_IncludeBriefComments = 0x04
4886 };
4887
4888 /**
4889  * \brief Bits that represent the context under which completion is occurring.
4890  *
4891  * The enumerators in this enumeration may be bitwise-OR'd together if multiple
4892  * contexts are occurring simultaneously.
4893  */
4894 enum CXCompletionContext {
4895   /**
4896    * \brief The context for completions is unexposed, as only Clang results
4897    * should be included. (This is equivalent to having no context bits set.)
4898    */
4899   CXCompletionContext_Unexposed = 0,
4900   
4901   /**
4902    * \brief Completions for any possible type should be included in the results.
4903    */
4904   CXCompletionContext_AnyType = 1 << 0,
4905   
4906   /**
4907    * \brief Completions for any possible value (variables, function calls, etc.)
4908    * should be included in the results.
4909    */
4910   CXCompletionContext_AnyValue = 1 << 1,
4911   /**
4912    * \brief Completions for values that resolve to an Objective-C object should
4913    * be included in the results.
4914    */
4915   CXCompletionContext_ObjCObjectValue = 1 << 2,
4916   /**
4917    * \brief Completions for values that resolve to an Objective-C selector
4918    * should be included in the results.
4919    */
4920   CXCompletionContext_ObjCSelectorValue = 1 << 3,
4921   /**
4922    * \brief Completions for values that resolve to a C++ class type should be
4923    * included in the results.
4924    */
4925   CXCompletionContext_CXXClassTypeValue = 1 << 4,
4926   
4927   /**
4928    * \brief Completions for fields of the member being accessed using the dot
4929    * operator should be included in the results.
4930    */
4931   CXCompletionContext_DotMemberAccess = 1 << 5,
4932   /**
4933    * \brief Completions for fields of the member being accessed using the arrow
4934    * operator should be included in the results.
4935    */
4936   CXCompletionContext_ArrowMemberAccess = 1 << 6,
4937   /**
4938    * \brief Completions for properties of the Objective-C object being accessed
4939    * using the dot operator should be included in the results.
4940    */
4941   CXCompletionContext_ObjCPropertyAccess = 1 << 7,
4942   
4943   /**
4944    * \brief Completions for enum tags should be included in the results.
4945    */
4946   CXCompletionContext_EnumTag = 1 << 8,
4947   /**
4948    * \brief Completions for union tags should be included in the results.
4949    */
4950   CXCompletionContext_UnionTag = 1 << 9,
4951   /**
4952    * \brief Completions for struct tags should be included in the results.
4953    */
4954   CXCompletionContext_StructTag = 1 << 10,
4955   
4956   /**
4957    * \brief Completions for C++ class names should be included in the results.
4958    */
4959   CXCompletionContext_ClassTag = 1 << 11,
4960   /**
4961    * \brief Completions for C++ namespaces and namespace aliases should be
4962    * included in the results.
4963    */
4964   CXCompletionContext_Namespace = 1 << 12,
4965   /**
4966    * \brief Completions for C++ nested name specifiers should be included in
4967    * the results.
4968    */
4969   CXCompletionContext_NestedNameSpecifier = 1 << 13,
4970   
4971   /**
4972    * \brief Completions for Objective-C interfaces (classes) should be included
4973    * in the results.
4974    */
4975   CXCompletionContext_ObjCInterface = 1 << 14,
4976   /**
4977    * \brief Completions for Objective-C protocols should be included in
4978    * the results.
4979    */
4980   CXCompletionContext_ObjCProtocol = 1 << 15,
4981   /**
4982    * \brief Completions for Objective-C categories should be included in
4983    * the results.
4984    */
4985   CXCompletionContext_ObjCCategory = 1 << 16,
4986   /**
4987    * \brief Completions for Objective-C instance messages should be included
4988    * in the results.
4989    */
4990   CXCompletionContext_ObjCInstanceMessage = 1 << 17,
4991   /**
4992    * \brief Completions for Objective-C class messages should be included in
4993    * the results.
4994    */
4995   CXCompletionContext_ObjCClassMessage = 1 << 18,
4996   /**
4997    * \brief Completions for Objective-C selector names should be included in
4998    * the results.
4999    */
5000   CXCompletionContext_ObjCSelectorName = 1 << 19,
5001   
5002   /**
5003    * \brief Completions for preprocessor macro names should be included in
5004    * the results.
5005    */
5006   CXCompletionContext_MacroName = 1 << 20,
5007   
5008   /**
5009    * \brief Natural language completions should be included in the results.
5010    */
5011   CXCompletionContext_NaturalLanguage = 1 << 21,
5012   
5013   /**
5014    * \brief The current context is unknown, so set all contexts.
5015    */
5016   CXCompletionContext_Unknown = ((1 << 22) - 1)
5017 };
5018   
5019 /**
5020  * \brief Returns a default set of code-completion options that can be
5021  * passed to\c clang_codeCompleteAt(). 
5022  */
5023 CINDEX_LINKAGE unsigned clang_defaultCodeCompleteOptions(void);
5024
5025 /**
5026  * \brief Perform code completion at a given location in a translation unit.
5027  *
5028  * This function performs code completion at a particular file, line, and
5029  * column within source code, providing results that suggest potential
5030  * code snippets based on the context of the completion. The basic model
5031  * for code completion is that Clang will parse a complete source file,
5032  * performing syntax checking up to the location where code-completion has
5033  * been requested. At that point, a special code-completion token is passed
5034  * to the parser, which recognizes this token and determines, based on the
5035  * current location in the C/Objective-C/C++ grammar and the state of
5036  * semantic analysis, what completions to provide. These completions are
5037  * returned via a new \c CXCodeCompleteResults structure.
5038  *
5039  * Code completion itself is meant to be triggered by the client when the
5040  * user types punctuation characters or whitespace, at which point the
5041  * code-completion location will coincide with the cursor. For example, if \c p
5042  * is a pointer, code-completion might be triggered after the "-" and then
5043  * after the ">" in \c p->. When the code-completion location is afer the ">",
5044  * the completion results will provide, e.g., the members of the struct that
5045  * "p" points to. The client is responsible for placing the cursor at the
5046  * beginning of the token currently being typed, then filtering the results
5047  * based on the contents of the token. For example, when code-completing for
5048  * the expression \c p->get, the client should provide the location just after
5049  * the ">" (e.g., pointing at the "g") to this code-completion hook. Then, the
5050  * client can filter the results based on the current token text ("get"), only
5051  * showing those results that start with "get". The intent of this interface
5052  * is to separate the relatively high-latency acquisition of code-completion
5053  * results from the filtering of results on a per-character basis, which must
5054  * have a lower latency.
5055  *
5056  * \param TU The translation unit in which code-completion should
5057  * occur. The source files for this translation unit need not be
5058  * completely up-to-date (and the contents of those source files may
5059  * be overridden via \p unsaved_files). Cursors referring into the
5060  * translation unit may be invalidated by this invocation.
5061  *
5062  * \param complete_filename The name of the source file where code
5063  * completion should be performed. This filename may be any file
5064  * included in the translation unit.
5065  *
5066  * \param complete_line The line at which code-completion should occur.
5067  *
5068  * \param complete_column The column at which code-completion should occur.
5069  * Note that the column should point just after the syntactic construct that
5070  * initiated code completion, and not in the middle of a lexical token.
5071  *
5072  * \param unsaved_files the Files that have not yet been saved to disk
5073  * but may be required for parsing or code completion, including the
5074  * contents of those files.  The contents and name of these files (as
5075  * specified by CXUnsavedFile) are copied when necessary, so the
5076  * client only needs to guarantee their validity until the call to
5077  * this function returns.
5078  *
5079  * \param num_unsaved_files The number of unsaved file entries in \p
5080  * unsaved_files.
5081  *
5082  * \param options Extra options that control the behavior of code
5083  * completion, expressed as a bitwise OR of the enumerators of the
5084  * CXCodeComplete_Flags enumeration. The 
5085  * \c clang_defaultCodeCompleteOptions() function returns a default set
5086  * of code-completion options.
5087  *
5088  * \returns If successful, a new \c CXCodeCompleteResults structure
5089  * containing code-completion results, which should eventually be
5090  * freed with \c clang_disposeCodeCompleteResults(). If code
5091  * completion fails, returns NULL.
5092  */
5093 CINDEX_LINKAGE
5094 CXCodeCompleteResults *clang_codeCompleteAt(CXTranslationUnit TU,
5095                                             const char *complete_filename,
5096                                             unsigned complete_line,
5097                                             unsigned complete_column,
5098                                             struct CXUnsavedFile *unsaved_files,
5099                                             unsigned num_unsaved_files,
5100                                             unsigned options);
5101
5102 /**
5103  * \brief Sort the code-completion results in case-insensitive alphabetical 
5104  * order.
5105  *
5106  * \param Results The set of results to sort.
5107  * \param NumResults The number of results in \p Results.
5108  */
5109 CINDEX_LINKAGE
5110 void clang_sortCodeCompletionResults(CXCompletionResult *Results,
5111                                      unsigned NumResults);
5112   
5113 /**
5114  * \brief Free the given set of code-completion results.
5115  */
5116 CINDEX_LINKAGE
5117 void clang_disposeCodeCompleteResults(CXCodeCompleteResults *Results);
5118   
5119 /**
5120  * \brief Determine the number of diagnostics produced prior to the
5121  * location where code completion was performed.
5122  */
5123 CINDEX_LINKAGE
5124 unsigned clang_codeCompleteGetNumDiagnostics(CXCodeCompleteResults *Results);
5125
5126 /**
5127  * \brief Retrieve a diagnostic associated with the given code completion.
5128  *
5129  * \param Results the code completion results to query.
5130  * \param Index the zero-based diagnostic number to retrieve.
5131  *
5132  * \returns the requested diagnostic. This diagnostic must be freed
5133  * via a call to \c clang_disposeDiagnostic().
5134  */
5135 CINDEX_LINKAGE
5136 CXDiagnostic clang_codeCompleteGetDiagnostic(CXCodeCompleteResults *Results,
5137                                              unsigned Index);
5138
5139 /**
5140  * \brief Determines what completions are appropriate for the context
5141  * the given code completion.
5142  * 
5143  * \param Results the code completion results to query
5144  *
5145  * \returns the kinds of completions that are appropriate for use
5146  * along with the given code completion results.
5147  */
5148 CINDEX_LINKAGE
5149 unsigned long long clang_codeCompleteGetContexts(
5150                                                 CXCodeCompleteResults *Results);
5151
5152 /**
5153  * \brief Returns the cursor kind for the container for the current code
5154  * completion context. The container is only guaranteed to be set for
5155  * contexts where a container exists (i.e. member accesses or Objective-C
5156  * message sends); if there is not a container, this function will return
5157  * CXCursor_InvalidCode.
5158  *
5159  * \param Results the code completion results to query
5160  *
5161  * \param IsIncomplete on return, this value will be false if Clang has complete
5162  * information about the container. If Clang does not have complete
5163  * information, this value will be true.
5164  *
5165  * \returns the container kind, or CXCursor_InvalidCode if there is not a
5166  * container
5167  */
5168 CINDEX_LINKAGE
5169 enum CXCursorKind clang_codeCompleteGetContainerKind(
5170                                                  CXCodeCompleteResults *Results,
5171                                                      unsigned *IsIncomplete);
5172
5173 /**
5174  * \brief Returns the USR for the container for the current code completion
5175  * context. If there is not a container for the current context, this
5176  * function will return the empty string.
5177  *
5178  * \param Results the code completion results to query
5179  *
5180  * \returns the USR for the container
5181  */
5182 CINDEX_LINKAGE
5183 CXString clang_codeCompleteGetContainerUSR(CXCodeCompleteResults *Results);
5184
5185 /**
5186  * \brief Returns the currently-entered selector for an Objective-C message
5187  * send, formatted like "initWithFoo:bar:". Only guaranteed to return a
5188  * non-empty string for CXCompletionContext_ObjCInstanceMessage and
5189  * CXCompletionContext_ObjCClassMessage.
5190  *
5191  * \param Results the code completion results to query
5192  *
5193  * \returns the selector (or partial selector) that has been entered thus far
5194  * for an Objective-C message send.
5195  */
5196 CINDEX_LINKAGE
5197 CXString clang_codeCompleteGetObjCSelector(CXCodeCompleteResults *Results);
5198   
5199 /**
5200  * @}
5201  */
5202
5203 /**
5204  * \defgroup CINDEX_MISC Miscellaneous utility functions
5205  *
5206  * @{
5207  */
5208
5209 /**
5210  * \brief Return a version string, suitable for showing to a user, but not
5211  *        intended to be parsed (the format is not guaranteed to be stable).
5212  */
5213 CINDEX_LINKAGE CXString clang_getClangVersion(void);
5214
5215 /**
5216  * \brief Enable/disable crash recovery.
5217  *
5218  * \param isEnabled Flag to indicate if crash recovery is enabled.  A non-zero
5219  *        value enables crash recovery, while 0 disables it.
5220  */
5221 CINDEX_LINKAGE void clang_toggleCrashRecovery(unsigned isEnabled);
5222   
5223  /**
5224   * \brief Visitor invoked for each file in a translation unit
5225   *        (used with clang_getInclusions()).
5226   *
5227   * This visitor function will be invoked by clang_getInclusions() for each
5228   * file included (either at the top-level or by \#include directives) within
5229   * a translation unit.  The first argument is the file being included, and
5230   * the second and third arguments provide the inclusion stack.  The
5231   * array is sorted in order of immediate inclusion.  For example,
5232   * the first element refers to the location that included 'included_file'.
5233   */
5234 typedef void (*CXInclusionVisitor)(CXFile included_file,
5235                                    CXSourceLocation* inclusion_stack,
5236                                    unsigned include_len,
5237                                    CXClientData client_data);
5238
5239 /**
5240  * \brief Visit the set of preprocessor inclusions in a translation unit.
5241  *   The visitor function is called with the provided data for every included
5242  *   file.  This does not include headers included by the PCH file (unless one
5243  *   is inspecting the inclusions in the PCH file itself).
5244  */
5245 CINDEX_LINKAGE void clang_getInclusions(CXTranslationUnit tu,
5246                                         CXInclusionVisitor visitor,
5247                                         CXClientData client_data);
5248
5249 typedef enum {
5250   CXEval_Int = 1 ,
5251   CXEval_Float = 2,
5252   CXEval_ObjCStrLiteral = 3,
5253   CXEval_StrLiteral = 4,
5254   CXEval_CFStr = 5,
5255   CXEval_Other = 6,
5256
5257   CXEval_UnExposed = 0
5258
5259 } CXEvalResultKind ;
5260
5261 /**
5262  * \brief Evaluation result of a cursor
5263  */
5264 typedef void * CXEvalResult;
5265
5266 /**
5267  * \brief If cursor is a statement declaration tries to evaluate the 
5268  * statement and if its variable, tries to evaluate its initializer,
5269  * into its corresponding type.
5270  */
5271 CINDEX_LINKAGE CXEvalResult clang_Cursor_Evaluate(CXCursor C);
5272
5273 /**
5274  * \brief Returns the kind of the evaluated result.
5275  */
5276 CINDEX_LINKAGE CXEvalResultKind clang_EvalResult_getKind(CXEvalResult E);
5277
5278 /**
5279  * \brief Returns the evaluation result as integer if the
5280  * kind is Int.
5281  */
5282 CINDEX_LINKAGE int clang_EvalResult_getAsInt(CXEvalResult E);
5283
5284 /**
5285  * \brief Returns the evaluation result as a long long integer if the
5286  * kind is Int. This prevents overflows that may happen if the result is
5287  * returned with clang_EvalResult_getAsInt.
5288  */
5289 CINDEX_LINKAGE long long clang_EvalResult_getAsLongLong(CXEvalResult E);
5290
5291 /**
5292  * \brief Returns a non-zero value if the kind is Int and the evaluation
5293  * result resulted in an unsigned integer.
5294  */
5295 CINDEX_LINKAGE unsigned clang_EvalResult_isUnsignedInt(CXEvalResult E);
5296
5297 /**
5298  * \brief Returns the evaluation result as an unsigned integer if
5299  * the kind is Int and clang_EvalResult_isUnsignedInt is non-zero.
5300  */
5301 CINDEX_LINKAGE unsigned long long clang_EvalResult_getAsUnsigned(CXEvalResult E);
5302
5303 /**
5304  * \brief Returns the evaluation result as double if the
5305  * kind is double.
5306  */
5307 CINDEX_LINKAGE double clang_EvalResult_getAsDouble(CXEvalResult E);
5308
5309 /**
5310  * \brief Returns the evaluation result as a constant string if the
5311  * kind is other than Int or float. User must not free this pointer,
5312  * instead call clang_EvalResult_dispose on the CXEvalResult returned
5313  * by clang_Cursor_Evaluate.
5314  */
5315 CINDEX_LINKAGE const char* clang_EvalResult_getAsStr(CXEvalResult E);
5316
5317 /**
5318  * \brief Disposes the created Eval memory.
5319  */
5320 CINDEX_LINKAGE void clang_EvalResult_dispose(CXEvalResult E);
5321 /**
5322  * @}
5323  */
5324
5325 /** \defgroup CINDEX_REMAPPING Remapping functions
5326  *
5327  * @{
5328  */
5329
5330 /**
5331  * \brief A remapping of original source files and their translated files.
5332  */
5333 typedef void *CXRemapping;
5334
5335 /**
5336  * \brief Retrieve a remapping.
5337  *
5338  * \param path the path that contains metadata about remappings.
5339  *
5340  * \returns the requested remapping. This remapping must be freed
5341  * via a call to \c clang_remap_dispose(). Can return NULL if an error occurred.
5342  */
5343 CINDEX_LINKAGE CXRemapping clang_getRemappings(const char *path);
5344
5345 /**
5346  * \brief Retrieve a remapping.
5347  *
5348  * \param filePaths pointer to an array of file paths containing remapping info.
5349  *
5350  * \param numFiles number of file paths.
5351  *
5352  * \returns the requested remapping. This remapping must be freed
5353  * via a call to \c clang_remap_dispose(). Can return NULL if an error occurred.
5354  */
5355 CINDEX_LINKAGE
5356 CXRemapping clang_getRemappingsFromFileList(const char **filePaths,
5357                                             unsigned numFiles);
5358
5359 /**
5360  * \brief Determine the number of remappings.
5361  */
5362 CINDEX_LINKAGE unsigned clang_remap_getNumFiles(CXRemapping);
5363
5364 /**
5365  * \brief Get the original and the associated filename from the remapping.
5366  * 
5367  * \param original If non-NULL, will be set to the original filename.
5368  *
5369  * \param transformed If non-NULL, will be set to the filename that the original
5370  * is associated with.
5371  */
5372 CINDEX_LINKAGE void clang_remap_getFilenames(CXRemapping, unsigned index,
5373                                      CXString *original, CXString *transformed);
5374
5375 /**
5376  * \brief Dispose the remapping.
5377  */
5378 CINDEX_LINKAGE void clang_remap_dispose(CXRemapping);
5379
5380 /**
5381  * @}
5382  */
5383
5384 /** \defgroup CINDEX_HIGH Higher level API functions
5385  *
5386  * @{
5387  */
5388
5389 enum CXVisitorResult {
5390   CXVisit_Break,
5391   CXVisit_Continue
5392 };
5393
5394 typedef struct CXCursorAndRangeVisitor {
5395   void *context;
5396   enum CXVisitorResult (*visit)(void *context, CXCursor, CXSourceRange);
5397 } CXCursorAndRangeVisitor;
5398
5399 typedef enum {
5400   /**
5401    * \brief Function returned successfully.
5402    */
5403   CXResult_Success = 0,
5404   /**
5405    * \brief One of the parameters was invalid for the function.
5406    */
5407   CXResult_Invalid = 1,
5408   /**
5409    * \brief The function was terminated by a callback (e.g. it returned
5410    * CXVisit_Break)
5411    */
5412   CXResult_VisitBreak = 2
5413
5414 } CXResult;
5415
5416 /**
5417  * \brief Find references of a declaration in a specific file.
5418  * 
5419  * \param cursor pointing to a declaration or a reference of one.
5420  *
5421  * \param file to search for references.
5422  *
5423  * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5424  * each reference found.
5425  * The CXSourceRange will point inside the file; if the reference is inside
5426  * a macro (and not a macro argument) the CXSourceRange will be invalid.
5427  *
5428  * \returns one of the CXResult enumerators.
5429  */
5430 CINDEX_LINKAGE CXResult clang_findReferencesInFile(CXCursor cursor, CXFile file,
5431                                                CXCursorAndRangeVisitor visitor);
5432
5433 /**
5434  * \brief Find #import/#include directives in a specific file.
5435  *
5436  * \param TU translation unit containing the file to query.
5437  *
5438  * \param file to search for #import/#include directives.
5439  *
5440  * \param visitor callback that will receive pairs of CXCursor/CXSourceRange for
5441  * each directive found.
5442  *
5443  * \returns one of the CXResult enumerators.
5444  */
5445 CINDEX_LINKAGE CXResult clang_findIncludesInFile(CXTranslationUnit TU,
5446                                                  CXFile file,
5447                                               CXCursorAndRangeVisitor visitor);
5448
5449 #ifdef __has_feature
5450 #  if __has_feature(blocks)
5451
5452 typedef enum CXVisitorResult
5453     (^CXCursorAndRangeVisitorBlock)(CXCursor, CXSourceRange);
5454
5455 CINDEX_LINKAGE
5456 CXResult clang_findReferencesInFileWithBlock(CXCursor, CXFile,
5457                                              CXCursorAndRangeVisitorBlock);
5458
5459 CINDEX_LINKAGE
5460 CXResult clang_findIncludesInFileWithBlock(CXTranslationUnit, CXFile,
5461                                            CXCursorAndRangeVisitorBlock);
5462
5463 #  endif
5464 #endif
5465
5466 /**
5467  * \brief The client's data object that is associated with a CXFile.
5468  */
5469 typedef void *CXIdxClientFile;
5470
5471 /**
5472  * \brief The client's data object that is associated with a semantic entity.
5473  */
5474 typedef void *CXIdxClientEntity;
5475
5476 /**
5477  * \brief The client's data object that is associated with a semantic container
5478  * of entities.
5479  */
5480 typedef void *CXIdxClientContainer;
5481
5482 /**
5483  * \brief The client's data object that is associated with an AST file (PCH
5484  * or module).
5485  */
5486 typedef void *CXIdxClientASTFile;
5487
5488 /**
5489  * \brief Source location passed to index callbacks.
5490  */
5491 typedef struct {
5492   void *ptr_data[2];
5493   unsigned int_data;
5494 } CXIdxLoc;
5495
5496 /**
5497  * \brief Data for ppIncludedFile callback.
5498  */
5499 typedef struct {
5500   /**
5501    * \brief Location of '#' in the \#include/\#import directive.
5502    */
5503   CXIdxLoc hashLoc;
5504   /**
5505    * \brief Filename as written in the \#include/\#import directive.
5506    */
5507   const char *filename;
5508   /**
5509    * \brief The actual file that the \#include/\#import directive resolved to.
5510    */
5511   CXFile file;
5512   int isImport;
5513   int isAngled;
5514   /**
5515    * \brief Non-zero if the directive was automatically turned into a module
5516    * import.
5517    */
5518   int isModuleImport;
5519 } CXIdxIncludedFileInfo;
5520
5521 /**
5522  * \brief Data for IndexerCallbacks#importedASTFile.
5523  */
5524 typedef struct {
5525   /**
5526    * \brief Top level AST file containing the imported PCH, module or submodule.
5527    */
5528   CXFile file;
5529   /**
5530    * \brief The imported module or NULL if the AST file is a PCH.
5531    */
5532   CXModule module;
5533   /**
5534    * \brief Location where the file is imported. Applicable only for modules.
5535    */
5536   CXIdxLoc loc;
5537   /**
5538    * \brief Non-zero if an inclusion directive was automatically turned into
5539    * a module import. Applicable only for modules.
5540    */
5541   int isImplicit;
5542
5543 } CXIdxImportedASTFileInfo;
5544
5545 typedef enum {
5546   CXIdxEntity_Unexposed     = 0,
5547   CXIdxEntity_Typedef       = 1,
5548   CXIdxEntity_Function      = 2,
5549   CXIdxEntity_Variable      = 3,
5550   CXIdxEntity_Field         = 4,
5551   CXIdxEntity_EnumConstant  = 5,
5552
5553   CXIdxEntity_ObjCClass     = 6,
5554   CXIdxEntity_ObjCProtocol  = 7,
5555   CXIdxEntity_ObjCCategory  = 8,
5556
5557   CXIdxEntity_ObjCInstanceMethod = 9,
5558   CXIdxEntity_ObjCClassMethod    = 10,
5559   CXIdxEntity_ObjCProperty  = 11,
5560   CXIdxEntity_ObjCIvar      = 12,
5561
5562   CXIdxEntity_Enum          = 13,
5563   CXIdxEntity_Struct        = 14,
5564   CXIdxEntity_Union         = 15,
5565
5566   CXIdxEntity_CXXClass              = 16,
5567   CXIdxEntity_CXXNamespace          = 17,
5568   CXIdxEntity_CXXNamespaceAlias     = 18,
5569   CXIdxEntity_CXXStaticVariable     = 19,
5570   CXIdxEntity_CXXStaticMethod       = 20,
5571   CXIdxEntity_CXXInstanceMethod     = 21,
5572   CXIdxEntity_CXXConstructor        = 22,
5573   CXIdxEntity_CXXDestructor         = 23,
5574   CXIdxEntity_CXXConversionFunction = 24,
5575   CXIdxEntity_CXXTypeAlias          = 25,
5576   CXIdxEntity_CXXInterface          = 26
5577
5578 } CXIdxEntityKind;
5579
5580 typedef enum {
5581   CXIdxEntityLang_None = 0,
5582   CXIdxEntityLang_C    = 1,
5583   CXIdxEntityLang_ObjC = 2,
5584   CXIdxEntityLang_CXX  = 3
5585 } CXIdxEntityLanguage;
5586
5587 /**
5588  * \brief Extra C++ template information for an entity. This can apply to:
5589  * CXIdxEntity_Function
5590  * CXIdxEntity_CXXClass
5591  * CXIdxEntity_CXXStaticMethod
5592  * CXIdxEntity_CXXInstanceMethod
5593  * CXIdxEntity_CXXConstructor
5594  * CXIdxEntity_CXXConversionFunction
5595  * CXIdxEntity_CXXTypeAlias
5596  */
5597 typedef enum {
5598   CXIdxEntity_NonTemplate   = 0,
5599   CXIdxEntity_Template      = 1,
5600   CXIdxEntity_TemplatePartialSpecialization = 2,
5601   CXIdxEntity_TemplateSpecialization = 3
5602 } CXIdxEntityCXXTemplateKind;
5603
5604 typedef enum {
5605   CXIdxAttr_Unexposed     = 0,
5606   CXIdxAttr_IBAction      = 1,
5607   CXIdxAttr_IBOutlet      = 2,
5608   CXIdxAttr_IBOutletCollection = 3
5609 } CXIdxAttrKind;
5610
5611 typedef struct {
5612   CXIdxAttrKind kind;
5613   CXCursor cursor;
5614   CXIdxLoc loc;
5615 } CXIdxAttrInfo;
5616
5617 typedef struct {
5618   CXIdxEntityKind kind;
5619   CXIdxEntityCXXTemplateKind templateKind;
5620   CXIdxEntityLanguage lang;
5621   const char *name;
5622   const char *USR;
5623   CXCursor cursor;
5624   const CXIdxAttrInfo *const *attributes;
5625   unsigned numAttributes;
5626 } CXIdxEntityInfo;
5627
5628 typedef struct {
5629   CXCursor cursor;
5630 } CXIdxContainerInfo;
5631
5632 typedef struct {
5633   const CXIdxAttrInfo *attrInfo;
5634   const CXIdxEntityInfo *objcClass;
5635   CXCursor classCursor;
5636   CXIdxLoc classLoc;
5637 } CXIdxIBOutletCollectionAttrInfo;
5638
5639 typedef enum {
5640   CXIdxDeclFlag_Skipped = 0x1
5641 } CXIdxDeclInfoFlags;
5642
5643 typedef struct {
5644   const CXIdxEntityInfo *entityInfo;
5645   CXCursor cursor;
5646   CXIdxLoc loc;
5647   const CXIdxContainerInfo *semanticContainer;
5648   /**
5649    * \brief Generally same as #semanticContainer but can be different in
5650    * cases like out-of-line C++ member functions.
5651    */
5652   const CXIdxContainerInfo *lexicalContainer;
5653   int isRedeclaration;
5654   int isDefinition;
5655   int isContainer;
5656   const CXIdxContainerInfo *declAsContainer;
5657   /**
5658    * \brief Whether the declaration exists in code or was created implicitly
5659    * by the compiler, e.g. implicit Objective-C methods for properties.
5660    */
5661   int isImplicit;
5662   const CXIdxAttrInfo *const *attributes;
5663   unsigned numAttributes;
5664
5665   unsigned flags;
5666
5667 } CXIdxDeclInfo;
5668
5669 typedef enum {
5670   CXIdxObjCContainer_ForwardRef = 0,
5671   CXIdxObjCContainer_Interface = 1,
5672   CXIdxObjCContainer_Implementation = 2
5673 } CXIdxObjCContainerKind;
5674
5675 typedef struct {
5676   const CXIdxDeclInfo *declInfo;
5677   CXIdxObjCContainerKind kind;
5678 } CXIdxObjCContainerDeclInfo;
5679
5680 typedef struct {
5681   const CXIdxEntityInfo *base;
5682   CXCursor cursor;
5683   CXIdxLoc loc;
5684 } CXIdxBaseClassInfo;
5685
5686 typedef struct {
5687   const CXIdxEntityInfo *protocol;
5688   CXCursor cursor;
5689   CXIdxLoc loc;
5690 } CXIdxObjCProtocolRefInfo;
5691
5692 typedef struct {
5693   const CXIdxObjCProtocolRefInfo *const *protocols;
5694   unsigned numProtocols;
5695 } CXIdxObjCProtocolRefListInfo;
5696
5697 typedef struct {
5698   const CXIdxObjCContainerDeclInfo *containerInfo;
5699   const CXIdxBaseClassInfo *superInfo;
5700   const CXIdxObjCProtocolRefListInfo *protocols;
5701 } CXIdxObjCInterfaceDeclInfo;
5702
5703 typedef struct {
5704   const CXIdxObjCContainerDeclInfo *containerInfo;
5705   const CXIdxEntityInfo *objcClass;
5706   CXCursor classCursor;
5707   CXIdxLoc classLoc;
5708   const CXIdxObjCProtocolRefListInfo *protocols;
5709 } CXIdxObjCCategoryDeclInfo;
5710
5711 typedef struct {
5712   const CXIdxDeclInfo *declInfo;
5713   const CXIdxEntityInfo *getter;
5714   const CXIdxEntityInfo *setter;
5715 } CXIdxObjCPropertyDeclInfo;
5716
5717 typedef struct {
5718   const CXIdxDeclInfo *declInfo;
5719   const CXIdxBaseClassInfo *const *bases;
5720   unsigned numBases;
5721 } CXIdxCXXClassDeclInfo;
5722
5723 /**
5724  * \brief Data for IndexerCallbacks#indexEntityReference.
5725  */
5726 typedef enum {
5727   /**
5728    * \brief The entity is referenced directly in user's code.
5729    */
5730   CXIdxEntityRef_Direct = 1,
5731   /**
5732    * \brief An implicit reference, e.g. a reference of an Objective-C method
5733    * via the dot syntax.
5734    */
5735   CXIdxEntityRef_Implicit = 2
5736 } CXIdxEntityRefKind;
5737
5738 /**
5739  * \brief Data for IndexerCallbacks#indexEntityReference.
5740  */
5741 typedef struct {
5742   CXIdxEntityRefKind kind;
5743   /**
5744    * \brief Reference cursor.
5745    */
5746   CXCursor cursor;
5747   CXIdxLoc loc;
5748   /**
5749    * \brief The entity that gets referenced.
5750    */
5751   const CXIdxEntityInfo *referencedEntity;
5752   /**
5753    * \brief Immediate "parent" of the reference. For example:
5754    * 
5755    * \code
5756    * Foo *var;
5757    * \endcode
5758    * 
5759    * The parent of reference of type 'Foo' is the variable 'var'.
5760    * For references inside statement bodies of functions/methods,
5761    * the parentEntity will be the function/method.
5762    */
5763   const CXIdxEntityInfo *parentEntity;
5764   /**
5765    * \brief Lexical container context of the reference.
5766    */
5767   const CXIdxContainerInfo *container;
5768 } CXIdxEntityRefInfo;
5769
5770 /**
5771  * \brief A group of callbacks used by #clang_indexSourceFile and
5772  * #clang_indexTranslationUnit.
5773  */
5774 typedef struct {
5775   /**
5776    * \brief Called periodically to check whether indexing should be aborted.
5777    * Should return 0 to continue, and non-zero to abort.
5778    */
5779   int (*abortQuery)(CXClientData client_data, void *reserved);
5780
5781   /**
5782    * \brief Called at the end of indexing; passes the complete diagnostic set.
5783    */
5784   void (*diagnostic)(CXClientData client_data,
5785                      CXDiagnosticSet, void *reserved);
5786
5787   CXIdxClientFile (*enteredMainFile)(CXClientData client_data,
5788                                      CXFile mainFile, void *reserved);
5789   
5790   /**
5791    * \brief Called when a file gets \#included/\#imported.
5792    */
5793   CXIdxClientFile (*ppIncludedFile)(CXClientData client_data,
5794                                     const CXIdxIncludedFileInfo *);
5795   
5796   /**
5797    * \brief Called when a AST file (PCH or module) gets imported.
5798    * 
5799    * AST files will not get indexed (there will not be callbacks to index all
5800    * the entities in an AST file). The recommended action is that, if the AST
5801    * file is not already indexed, to initiate a new indexing job specific to
5802    * the AST file.
5803    */
5804   CXIdxClientASTFile (*importedASTFile)(CXClientData client_data,
5805                                         const CXIdxImportedASTFileInfo *);
5806
5807   /**
5808    * \brief Called at the beginning of indexing a translation unit.
5809    */
5810   CXIdxClientContainer (*startedTranslationUnit)(CXClientData client_data,
5811                                                  void *reserved);
5812
5813   void (*indexDeclaration)(CXClientData client_data,
5814                            const CXIdxDeclInfo *);
5815
5816   /**
5817    * \brief Called to index a reference of an entity.
5818    */
5819   void (*indexEntityReference)(CXClientData client_data,
5820                                const CXIdxEntityRefInfo *);
5821
5822 } IndexerCallbacks;
5823
5824 CINDEX_LINKAGE int clang_index_isEntityObjCContainerKind(CXIdxEntityKind);
5825 CINDEX_LINKAGE const CXIdxObjCContainerDeclInfo *
5826 clang_index_getObjCContainerDeclInfo(const CXIdxDeclInfo *);
5827
5828 CINDEX_LINKAGE const CXIdxObjCInterfaceDeclInfo *
5829 clang_index_getObjCInterfaceDeclInfo(const CXIdxDeclInfo *);
5830
5831 CINDEX_LINKAGE
5832 const CXIdxObjCCategoryDeclInfo *
5833 clang_index_getObjCCategoryDeclInfo(const CXIdxDeclInfo *);
5834
5835 CINDEX_LINKAGE const CXIdxObjCProtocolRefListInfo *
5836 clang_index_getObjCProtocolRefListInfo(const CXIdxDeclInfo *);
5837
5838 CINDEX_LINKAGE const CXIdxObjCPropertyDeclInfo *
5839 clang_index_getObjCPropertyDeclInfo(const CXIdxDeclInfo *);
5840
5841 CINDEX_LINKAGE const CXIdxIBOutletCollectionAttrInfo *
5842 clang_index_getIBOutletCollectionAttrInfo(const CXIdxAttrInfo *);
5843
5844 CINDEX_LINKAGE const CXIdxCXXClassDeclInfo *
5845 clang_index_getCXXClassDeclInfo(const CXIdxDeclInfo *);
5846
5847 /**
5848  * \brief For retrieving a custom CXIdxClientContainer attached to a
5849  * container.
5850  */
5851 CINDEX_LINKAGE CXIdxClientContainer
5852 clang_index_getClientContainer(const CXIdxContainerInfo *);
5853
5854 /**
5855  * \brief For setting a custom CXIdxClientContainer attached to a
5856  * container.
5857  */
5858 CINDEX_LINKAGE void
5859 clang_index_setClientContainer(const CXIdxContainerInfo *,CXIdxClientContainer);
5860
5861 /**
5862  * \brief For retrieving a custom CXIdxClientEntity attached to an entity.
5863  */
5864 CINDEX_LINKAGE CXIdxClientEntity
5865 clang_index_getClientEntity(const CXIdxEntityInfo *);
5866
5867 /**
5868  * \brief For setting a custom CXIdxClientEntity attached to an entity.
5869  */
5870 CINDEX_LINKAGE void
5871 clang_index_setClientEntity(const CXIdxEntityInfo *, CXIdxClientEntity);
5872
5873 /**
5874  * \brief An indexing action/session, to be applied to one or multiple
5875  * translation units.
5876  */
5877 typedef void *CXIndexAction;
5878
5879 /**
5880  * \brief An indexing action/session, to be applied to one or multiple
5881  * translation units.
5882  *
5883  * \param CIdx The index object with which the index action will be associated.
5884  */
5885 CINDEX_LINKAGE CXIndexAction clang_IndexAction_create(CXIndex CIdx);
5886
5887 /**
5888  * \brief Destroy the given index action.
5889  *
5890  * The index action must not be destroyed until all of the translation units
5891  * created within that index action have been destroyed.
5892  */
5893 CINDEX_LINKAGE void clang_IndexAction_dispose(CXIndexAction);
5894
5895 typedef enum {
5896   /**
5897    * \brief Used to indicate that no special indexing options are needed.
5898    */
5899   CXIndexOpt_None = 0x0,
5900   
5901   /**
5902    * \brief Used to indicate that IndexerCallbacks#indexEntityReference should
5903    * be invoked for only one reference of an entity per source file that does
5904    * not also include a declaration/definition of the entity.
5905    */
5906   CXIndexOpt_SuppressRedundantRefs = 0x1,
5907
5908   /**
5909    * \brief Function-local symbols should be indexed. If this is not set
5910    * function-local symbols will be ignored.
5911    */
5912   CXIndexOpt_IndexFunctionLocalSymbols = 0x2,
5913
5914   /**
5915    * \brief Implicit function/class template instantiations should be indexed.
5916    * If this is not set, implicit instantiations will be ignored.
5917    */
5918   CXIndexOpt_IndexImplicitTemplateInstantiations = 0x4,
5919
5920   /**
5921    * \brief Suppress all compiler warnings when parsing for indexing.
5922    */
5923   CXIndexOpt_SuppressWarnings = 0x8,
5924
5925   /**
5926    * \brief Skip a function/method body that was already parsed during an
5927    * indexing session associated with a \c CXIndexAction object.
5928    * Bodies in system headers are always skipped.
5929    */
5930   CXIndexOpt_SkipParsedBodiesInSession = 0x10
5931
5932 } CXIndexOptFlags;
5933
5934 /**
5935  * \brief Index the given source file and the translation unit corresponding
5936  * to that file via callbacks implemented through #IndexerCallbacks.
5937  *
5938  * \param client_data pointer data supplied by the client, which will
5939  * be passed to the invoked callbacks.
5940  *
5941  * \param index_callbacks Pointer to indexing callbacks that the client
5942  * implements.
5943  *
5944  * \param index_callbacks_size Size of #IndexerCallbacks structure that gets
5945  * passed in index_callbacks.
5946  *
5947  * \param index_options A bitmask of options that affects how indexing is
5948  * performed. This should be a bitwise OR of the CXIndexOpt_XXX flags.
5949  *
5950  * \param[out] out_TU pointer to store a \c CXTranslationUnit that can be
5951  * reused after indexing is finished. Set to \c NULL if you do not require it.
5952  *
5953  * \returns 0 on success or if there were errors from which the compiler could
5954  * recover.  If there is a failure from which there is no recovery, returns
5955  * a non-zero \c CXErrorCode.
5956  *
5957  * The rest of the parameters are the same as #clang_parseTranslationUnit.
5958  */
5959 CINDEX_LINKAGE int clang_indexSourceFile(CXIndexAction,
5960                                          CXClientData client_data,
5961                                          IndexerCallbacks *index_callbacks,
5962                                          unsigned index_callbacks_size,
5963                                          unsigned index_options,
5964                                          const char *source_filename,
5965                                          const char * const *command_line_args,
5966                                          int num_command_line_args,
5967                                          struct CXUnsavedFile *unsaved_files,
5968                                          unsigned num_unsaved_files,
5969                                          CXTranslationUnit *out_TU,
5970                                          unsigned TU_options);
5971
5972 /**
5973  * \brief Same as clang_indexSourceFile but requires a full command line
5974  * for \c command_line_args including argv[0]. This is useful if the standard
5975  * library paths are relative to the binary.
5976  */
5977 CINDEX_LINKAGE int clang_indexSourceFileFullArgv(
5978     CXIndexAction, CXClientData client_data, IndexerCallbacks *index_callbacks,
5979     unsigned index_callbacks_size, unsigned index_options,
5980     const char *source_filename, const char *const *command_line_args,
5981     int num_command_line_args, struct CXUnsavedFile *unsaved_files,
5982     unsigned num_unsaved_files, CXTranslationUnit *out_TU, unsigned TU_options);
5983
5984 /**
5985  * \brief Index the given translation unit via callbacks implemented through
5986  * #IndexerCallbacks.
5987  * 
5988  * The order of callback invocations is not guaranteed to be the same as
5989  * when indexing a source file. The high level order will be:
5990  * 
5991  *   -Preprocessor callbacks invocations
5992  *   -Declaration/reference callbacks invocations
5993  *   -Diagnostic callback invocations
5994  *
5995  * The parameters are the same as #clang_indexSourceFile.
5996  * 
5997  * \returns If there is a failure from which there is no recovery, returns
5998  * non-zero, otherwise returns 0.
5999  */
6000 CINDEX_LINKAGE int clang_indexTranslationUnit(CXIndexAction,
6001                                               CXClientData client_data,
6002                                               IndexerCallbacks *index_callbacks,
6003                                               unsigned index_callbacks_size,
6004                                               unsigned index_options,
6005                                               CXTranslationUnit);
6006
6007 /**
6008  * \brief Retrieve the CXIdxFile, file, line, column, and offset represented by
6009  * the given CXIdxLoc.
6010  *
6011  * If the location refers into a macro expansion, retrieves the
6012  * location of the macro expansion and if it refers into a macro argument
6013  * retrieves the location of the argument.
6014  */
6015 CINDEX_LINKAGE void clang_indexLoc_getFileLocation(CXIdxLoc loc,
6016                                                    CXIdxClientFile *indexFile,
6017                                                    CXFile *file,
6018                                                    unsigned *line,
6019                                                    unsigned *column,
6020                                                    unsigned *offset);
6021
6022 /**
6023  * \brief Retrieve the CXSourceLocation represented by the given CXIdxLoc.
6024  */
6025 CINDEX_LINKAGE
6026 CXSourceLocation clang_indexLoc_getCXSourceLocation(CXIdxLoc loc);
6027
6028 /**
6029  * \brief Visitor invoked for each field found by a traversal.
6030  *
6031  * This visitor function will be invoked for each field found by
6032  * \c clang_Type_visitFields. Its first argument is the cursor being
6033  * visited, its second argument is the client data provided to
6034  * \c clang_Type_visitFields.
6035  *
6036  * The visitor should return one of the \c CXVisitorResult values
6037  * to direct \c clang_Type_visitFields.
6038  */
6039 typedef enum CXVisitorResult (*CXFieldVisitor)(CXCursor C,
6040                                                CXClientData client_data);
6041
6042 /**
6043  * \brief Visit the fields of a particular type.
6044  *
6045  * This function visits all the direct fields of the given cursor,
6046  * invoking the given \p visitor function with the cursors of each
6047  * visited field. The traversal may be ended prematurely, if
6048  * the visitor returns \c CXFieldVisit_Break.
6049  *
6050  * \param T the record type whose field may be visited.
6051  *
6052  * \param visitor the visitor function that will be invoked for each
6053  * field of \p T.
6054  *
6055  * \param client_data pointer data supplied by the client, which will
6056  * be passed to the visitor each time it is invoked.
6057  *
6058  * \returns a non-zero value if the traversal was terminated
6059  * prematurely by the visitor returning \c CXFieldVisit_Break.
6060  */
6061 CINDEX_LINKAGE unsigned clang_Type_visitFields(CXType T,
6062                                                CXFieldVisitor visitor,
6063                                                CXClientData client_data);
6064
6065 /**
6066  * @}
6067  */
6068
6069 /**
6070  * @}
6071  */
6072
6073 #ifdef __cplusplus
6074 }
6075 #endif
6076 #endif