Age | Commit message (Expand) | Author |
2013-05-03 | [Preprocessor] For the MacroExpands preprocessor callback, also pass the Macr... | Argyrios Kyrtzidis |
2013-02-24 | [preprocessor] Use MacroDirective in the preprocessor callbacks to make avail... | Argyrios Kyrtzidis |
2013-02-22 | [preprocessing record] Have the MacroDefinitions map point to the MacroDefini... | Argyrios Kyrtzidis |
2013-02-21 | Use None rather than Optional<T>() where possible. | David Blaikie |
2013-02-20 | Include llvm::Optional in clang/Basic/LLVM.h | David Blaikie |
2012-12-08 | [libclang] Resolve a cursor that points to a macro name inside a #ifdef/#ifndef | Argyrios Kyrtzidis |
2012-12-04 | Sort #include lines for all files under include/... | Chandler Carruth |
2012-12-04 | Refactor recording the preprocessor conditional directive regions out of | Argyrios Kyrtzidis |
2012-12-04 | In the PreprocessingRecord, to identify the different conditional directive r... | Argyrios Kyrtzidis |
2012-10-11 | Remove pointless classof()'s. | Sean Silva |
2012-10-05 | [preprocessing record] Have PPEntityID be independent of the size of the | Argyrios Kyrtzidis |
2012-10-02 | [libclang] When indexing an AST file, only deserialize the preprocessing record | Argyrios Kyrtzidis |
2012-10-02 | Add info in the preprocessing record whether an inclusion directive | Argyrios Kyrtzidis |
2012-09-29 | For PPCallbacks::InclusionDirective() add a parameter for the module, whenever | Argyrios Kyrtzidis |
2012-09-27 | Per discussion in http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-... | Argyrios Kyrtzidis |
2012-09-13 | Fix Doxygen misuse: refer to parameter names in paragraphs correctly (\arg is | Dmitri Gribenko |
2012-06-13 | More doxygen/documentation cleanups. | James Dennett |
2012-03-27 | [preprocessor] Handle correctly inclusion directives that have macro expansio... | Argyrios Kyrtzidis |
2012-03-09 | [AST/etc] Mark {getSourceRange(),getStartLoc(),getEndLoc()} as LLVM_READONLY. | Daniel Dunbar |
2012-03-05 | [preprocessor] Enhance PreprocessingRecord to keep track of locations of cond... | Argyrios Kyrtzidis |
2012-02-25 | Don't record nested macro expansions in the preprocessing record, | Argyrios Kyrtzidis |
2011-10-25 | [PCH] When visiting preprocessed entities, make it possible to avoid deserial... | Argyrios Kyrtzidis |
2011-09-20 | Remove PreprocessingDirectiveKind since it's not necessary. | Argyrios Kyrtzidis |
2011-09-20 | The location of the name in MacroDefinition is the beginning of its range, | Argyrios Kyrtzidis |
2011-09-19 | In libclang, when visiting preprocessed entities in a source range, use | Argyrios Kyrtzidis |
2011-09-19 | Introduce local_begin()/local_end() methods in PreprocessingRecord which | Argyrios Kyrtzidis |
2011-09-19 | Introduce PreprocessingRecord::getPreprocessedEntitiesInRange() | Argyrios Kyrtzidis |
2011-09-15 | [PCH] Overhaul how preprocessed entities are [de]serialized. | Argyrios Kyrtzidis |
2011-09-08 | [libclang] Fix annotation and getting a "macro expansion" cursor | Argyrios Kyrtzidis |
2011-09-07 | Revert r139222, operator->() in PreprocessingRecord::iterator. It is useful | Argyrios Kyrtzidis |
2011-09-07 | operator->() in PreprocessingRecord::iterator is useless since we | Argyrios Kyrtzidis |
2011-08-18 | For the MacroExpands preprocessor callback, also pass the SourceRange | Argyrios Kyrtzidis |
2011-07-26 | Report more memory using in Preprocessor::getTotalMemory() and PreprocessingR... | Ted Kremenek |
2011-07-21 | One last RandomAccessIterator operator for PreprocessingRecord::iterator | Douglas Gregor |
2011-07-21 | Add the remaining RandomAccessIterator operations to | Douglas Gregor |
2011-07-21 | For some reason I don't fully comprehend, the MSVC debug build will fail with... | Francois Pichet |
2011-07-21 | Rework the detailed preprocessing record to separate preprocessing | Douglas Gregor |
2011-07-20 | now that we have a centralized place to do so, add some using declarations for | Chris Lattner |
2011-07-14 | Move the rest of the preprocessor terminology from 'instantiate' and | Chandler Carruth |
2011-05-06 | Introduce a new libclang parsing flag, | Douglas Gregor |
2011-05-04 | Enhance clang_getCXTUResourceUsage() to return the amount of memory used by t... | Ted Kremenek |
2011-04-26 | To be able to replay compilations we need to accurately remodel how | Manuel Klimek |
2011-03-16 | Add a 'RawPath' parameter to the PPCallbacks interface. This allows | Chandler Carruth |
2011-02-11 | Rename the operation that loads a preprocessed entity from a given offset to ... | Douglas Gregor |
2010-11-30 | When using a precompiled preamble with detailed preprocessing records, | Douglas Gregor |
2010-11-19 | Several PPCallbacks take an SourceLocation + IdentifierInfo, rather | Craig Silverstein |
2010-11-01 | Plug a leak in the preprocessing record's handling of inclusion | Douglas Gregor |
2010-10-20 | Extend the preprocessing record and libclang with support for | Douglas Gregor |
2010-09-27 | When chaining PCHs, only write PPRecords that don't come from PCH, and give t... | Sebastian Redl |
2010-08-07 | Push location through the MacroUndefined PPCallback and use it to print #unde... | Benjamin Kramer |