| Commit message (Expand) | Author | Age | Files | Lines |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -5/+5 |
* | [PCH] Mark a PCH file with a flag to indicate if the serialized AST had | Argyrios Kyrtzidis | 2012-03-07 | 1 | -11/+14 |
* | Serialization: Switch over to using the native SmallVector based BitstreamWriter | Daniel Dunbar | 2012-02-29 | 1 | -1/+1 |
* | Don't record nested macro expansions in the preprocessing record, | Argyrios Kyrtzidis | 2012-02-25 | 1 | -9/+2 |
* | Basic: import IntrusiveRefCntPtr<> into clang namespace | Dylan Noblesmith | 2012-02-20 | 1 | -12/+12 |
* | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -1/+1 |
* | Basic: import OwningPtr<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -16/+16 |
* | [libclang] Make sure we don't ever leave a StoredDiagnostic associated with | Argyrios Kyrtzidis | 2012-02-01 | 1 | -10/+34 |
* | Thread a TargetInfo through to the module map; we'll need it for | Douglas Gregor | 2012-01-30 | 1 | -1/+2 |
* | Ensure that we clean up after a failed module build and cope with the | Douglas Gregor | 2012-01-29 | 1 | -0/+3 |
* | Extract the (InputKind, std::string) pair used to describe inputs to | Douglas Gregor | 2012-01-20 | 1 | -29/+24 |
* | [libclang] Make sure Preprocessor is set in ASTUnit during indexing. | Argyrios Kyrtzidis | 2012-01-17 | 1 | -0/+2 |
* | Eliminate ObjCForwardProtocolDecl, which is redundant now that | Douglas Gregor | 2012-01-01 | 1 | -11/+1 |
* | Implement support for module requirements, which indicate the language | Douglas Gregor | 2011-12-31 | 1 | -1/+2 |
* | Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl | Douglas Gregor | 2011-12-27 | 1 | -5/+0 |
* | Remove unused variables. | Rafael Espindola | 2011-12-25 | 1 | -1/+1 |
* | Promote ModuleMap::Module to a namespace-scope class in the Basic | Douglas Gregor | 2011-11-30 | 1 | -1/+1 |
* | When writing a module file, pass the module through to the AST | Douglas Gregor | 2011-11-30 | 1 | -2/+2 |
* | Initialize NumWarningsInPreamble in ASTUnit's constructor, for safety. | Argyrios Kyrtzidis | 2011-11-29 | 1 | -0/+1 |
* | [libclang] Indexing API: If the client requested to get a CXTranslationUnit a... | Argyrios Kyrtzidis | 2011-11-28 | 1 | -6/+29 |
* | [libclang] Indexing API: Capture diagnostics during indexing. | Argyrios Kyrtzidis | 2011-11-28 | 1 | -2/+3 |
* | [libclang] Fix operations (token annotation, getting cursor, etc.) with a fil... | Argyrios Kyrtzidis | 2011-11-23 | 1 | -0/+7 |
* | Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue | Argyrios Kyrtzidis | 2011-11-18 | 1 | -2/+4 |
* | Make 'LangOptions' in CompilerInvocation a heap-allocated, reference counted ... | Ted Kremenek | 2011-11-17 | 1 | -2/+3 |
* | Simplify crash cleanup logic in ASTUnit::LoadFromCommandLine() by zeroing out... | Ted Kremenek | 2011-11-17 | 1 | -7/+2 |
* | [libclang] Fix crash on invalid code. Fixes rdar://10451854 | Argyrios Kyrtzidis | 2011-11-16 | 1 | -0/+3 |
* | I predict that HeaderSearch will need the ability to generate | Douglas Gregor | 2011-11-11 | 1 | -1/+2 |
* | ASTConsumer::handleTopLevelDecl will end up getting called for | Douglas Gregor | 2011-11-07 | 1 | -1/+4 |
* | After resetting the diagnostic state, set the number of warning occurring in ... | Argyrios Kyrtzidis | 2011-11-03 | 1 | -0/+2 |
* | [libclang] Fix crash when a #pragma diagnostic is included in the preamble. | Argyrios Kyrtzidis | 2011-11-03 | 1 | -7/+3 |
* | [libclang] Add infrastructure to be able to only deserialize decls in a file ... | Argyrios Kyrtzidis | 2011-11-03 | 1 | -0/+36 |
* | Put a reference of the ASTReader in the ASTUnit. | Argyrios Kyrtzidis | 2011-11-01 | 1 | -1/+6 |
* | Revert r143342. Caching of code-completion results was intentionally placed i... | Argyrios Kyrtzidis | 2011-10-31 | 1 | -6/+6 |
* | Move caching of code-completion results from ASTUnit::Reparse to ASTUnit::Cod... | Argyrios Kyrtzidis | 2011-10-31 | 1 | -6/+6 |
* | Have the ASTUnit associate the local declarations that get parsed with the file | Argyrios Kyrtzidis | 2011-10-31 | 1 | -12/+85 |
* | Add mutex for accessing ASTUnit's global OnDisk data. This may be an issue a... | Ted Kremenek | 2011-10-27 | 1 | -0/+13 |
* | Move ASTUnit's handling of temporary files and the preamble file into a lazil... | Ted Kremenek | 2011-10-27 | 1 | -22/+108 |
* | [PCH] When visiting preprocessed entities, make it possible to avoid deserial... | Argyrios Kyrtzidis | 2011-10-25 | 1 | -0/+44 |
* | [libclang] Make sure we don't try to erase past the StoredDiagnostics vector. | Argyrios Kyrtzidis | 2011-10-24 | 1 | -13/+7 |
* | Allow calling ASTUnit::LoadFromCompilerInvocationAction with a previously cre... | Argyrios Kyrtzidis | 2011-10-14 | 1 | -13/+16 |
* | [libclang] Implement ConcurrencyCheck using a recursive mutex to allow re-ent... | Argyrios Kyrtzidis | 2011-10-10 | 1 | -2/+28 |
* | Introduce a pure virtual clone() method to DiagnosticConsumer, so that | Douglas Gregor | 2011-09-29 | 1 | -0/+6 |
* | Don't map a file:line:col triplet that is inside the preamble range to | Argyrios Kyrtzidis | 2011-09-26 | 1 | -12/+44 |
* | Rename DiagnosticInfo to Diagnostic as per issue 5397 | David Blaikie | 2011-09-26 | 1 | -2/+2 |
* | Rename StoredDiagnosticClient to StoredDiagnosticConsumer as per issue 5397 | David Blaikie | 2011-09-26 | 1 | -6/+6 |
* | Rename DiagnosticClient to DiagnosticConsumer as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -4/+4 |
* | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -19/+19 |
* | In libclang, when visiting preprocessed entities in a source range, use | Argyrios Kyrtzidis | 2011-09-19 | 1 | -61/+1 |
* | Introduce local_begin()/local_end() methods in PreprocessingRecord which | Argyrios Kyrtzidis | 2011-09-19 | 1 | -1/+1 |
* | [libclang] When getting a source location from a file:line:col triplet | Argyrios Kyrtzidis | 2011-09-19 | 1 | -2/+42 |