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