| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix Lexer::ComputePreamble when MaxLines parameter is non-zero. | Argyrios Kyrtzidis | 2011-09-04 | 1 | -1/+2 |
| * | Always construct an ASTReader with a non-NULL ASTContext and | Douglas Gregor | 2011-09-02 | 1 | -6/+1 |
| * | Extend the ASTContext constructor to delay the initialization of | Douglas Gregor | 2011-09-02 | 1 | -22/+25 |
| * | Allow the preprocessor to be constructed without performing target- | Douglas Gregor | 2011-09-01 | 1 | -24/+39 |
| * | Teach ASTContext and Preprocessor to hold on to references to the same | Douglas Gregor | 2011-09-01 | 1 | -6/+6 |
| * | Modules hide macro definitions by default, so that silly things like | Douglas Gregor | 2011-09-01 | 1 | -2/+3 |
| * | objective-c: Treat top-level objective-c declarations | Fariborz Jahanian | 2011-08-27 | 1 | -3/+1 |
| * | Introduce support for a simple module import declaration, which | Douglas Gregor | 2011-08-26 | 1 | -1/+1 |
| * | Eliminate the -chained-pch flag and all of the frontend and libclang options ... | Douglas Gregor | 2011-08-25 | 1 | -13/+0 |
| * | Remove the Chaining argument from the PCH/module generator. It's no longer used | Douglas Gregor | 2011-08-25 | 1 | -7/+5 |
| * | Introduce a -cc1 option "-emit-module", that creates a binary module | Douglas Gregor | 2011-08-25 | 1 | -10/+9 |
| * | Make Lexer::ComputePreamble accept a LangOptions parameter, otherwise it may be | Argyrios Kyrtzidis | 2011-08-25 | 1 | -1/+3 |
| * | In the AST file format, eliminate the CHAINED_METADATA record. Instead, | Douglas Gregor | 2011-08-17 | 1 | -5/+0 |
| * | [MSVC] Fix a warning C4334 "'operator' : result of 32-bit shift implicitly co... | NAKAMURA Takumi | 2011-08-17 | 1 | -2/+1 |
| * | Add a new libclang API to return a CXCompletionString for an arbitrary | Douglas Gregor | 2011-08-04 | 1 | -0/+4 |
| * | When performing code completion after at @interface, allow both | Douglas Gregor | 2011-07-30 | 1 | -2/+2 |
| * | Cut down the number of open/close system calls for output files. | Argyrios Kyrtzidis | 2011-07-28 | 1 | -13/+7 |
| * | This patch extends the previous patch by starting to incorporate more functio... | Jonathan D. Turner | 2011-07-26 | 1 | -1/+1 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -30/+30 |
| * | Remove prepending of '$' to module names. | Jonathan D. Turner | 2011-07-22 | 1 | -2/+2 |
| * | Switch all of the "isysroot" const char*'s throughout the AST reader | Douglas Gregor | 2011-07-22 | 1 | -5/+6 |
| * | Rename ASTReader::PerFileData to serialization::Module, pulling it out | Douglas Gregor | 2011-07-22 | 1 | -2/+2 |
| * | For ASTUnit::Save, write the AST to a temporary and then rename it to the act... | Argyrios Kyrtzidis | 2011-07-21 | 1 | -4/+26 |
| * | Cut down one open/close pair of system calls by using Path's makeUnique inste... | Argyrios Kyrtzidis | 2011-07-21 | 1 | -1/+1 |
| * | Rework the detailed preprocessing record to separate preprocessing | Douglas Gregor | 2011-07-21 | 1 | -9/+1 |
| * | Revamp the SourceManager to separate the representation of parsed | Douglas Gregor | 2011-07-19 | 1 | -19/+95 |
| * | Migrate LLVM and Clang to use the new makeArrayRef(...) functions where previ... | Frits van Bommel | 2011-07-18 | 1 | -2/+2 |
| * | NestedMacroInstantiations -> NestedMacroExpansions | Chandler Carruth | 2011-07-14 | 1 | -7/+7 |
| * | Introduce a new libclang aPI function, | Douglas Gregor | 2011-07-07 | 1 | -16/+30 |
| * | Keep track of when "unrecoverable" errors occur, then allow | Douglas Gregor | 2011-07-06 | 1 | -1/+1 |
| * | libclang: Allow callers of clang_saveTranslationUnit() to distinguish | Douglas Gregor | 2011-07-06 | 1 | -4/+4 |
| * | When we create a precompiled preamble, don't copy the | Douglas Gregor | 2011-07-01 | 1 | -6/+9 |
| * | Introduce a new libclang parsing flag, | Douglas Gregor | 2011-05-06 | 1 | -2/+12 |
| * | ASTUnit::LoadFromASTFile(): recover the resources from an ASTReader if it cra... | Ted Kremenek | 2011-05-04 | 1 | -0/+10 |
| * | Introduce ASTUnit::LoadFromCompilerInvocationAction that allows one to create... | Argyrios Kyrtzidis | 2011-05-03 | 1 | -0/+113 |
| * | Move Driver::createInvocationFromArgs function to Frontend library to avoid d... | Argyrios Kyrtzidis | 2011-04-04 | 1 | -1/+1 |
| * | Introduce Driver::createInvocationFromArgs used to create a CompilerInvocatio... | Argyrios Kyrtzidis | 2011-04-04 | 1 | -52/+4 |
| * | switch a few Driver APIs to use llvm::ArrayRef, cleaning up code. | Chris Lattner | 2011-03-23 | 1 | -4/+2 |
| * | std::vector::data() is not portable to VS. Use a gross hack instead. | Ted Kremenek | 2011-03-23 | 1 | -1/+3 |
| * | Rework crash recovery cleanup in ASTUnit and CIndex to recover more memory du... | Ted Kremenek | 2011-03-22 | 1 | -25/+46 |
| * | Improve crash recovery cleanup to recovery CompilerInstances during crash rec... | Ted Kremenek | 2011-03-21 | 1 | -64/+53 |
| * | Use CrashRecoveryContextCleanup objects to reclaim resources from CompilerIns... | Ted Kremenek | 2011-03-21 | 1 | -72/+90 |
| * | Use the newly added FileManager::getNoncachedStatValue when trying to determi... | Anders Carlsson | 2011-03-18 | 1 | -2/+2 |
| * | Correctly store and keep track of the FileSystemOptions in ASTUnit and in cla... | Anders Carlsson | 2011-03-18 | 1 | -4/+6 |
| * | Use CrashRecoveryContextCleanup objects to recover an ASTUnit if we crash in ... | Ted Kremenek | 2011-03-18 | 1 | -0/+18 |
| * | Introduce '-chain-include' option to specify headers that will be converted t... | Argyrios Kyrtzidis | 2011-03-09 | 1 | -5/+28 |
| * | Add 'OverridenFilesKeepOriginalName' field in SourceManager which if true the... | Argyrios Kyrtzidis | 2011-03-08 | 1 | -0/+3 |
| * | Allow passing '-###' to ASTUnit::LoadFromCommandLine to print out the cc1 opt... | Argyrios Kyrtzidis | 2011-03-07 | 1 | -0/+8 |
| * | Currently we can only remap a file by creating a MemoryBuffer and replacing t... | Argyrios Kyrtzidis | 2011-03-05 | 1 | -25/+75 |
| * | Introduce OwnsRemappedFileBuffers field in ASTUnit, indicating whether the AS... | Argyrios Kyrtzidis | 2011-03-05 | 1 | -1/+2 |