Age | Commit message (Expand) | Author |
2009-06-05 | Move CharIsSigned from TargetInfo to LangOptions. | Eli Friedman |
2009-05-27 | Reintroduce the home for exception specs, and make Sema fill it. However, kee... | Sebastian Redl |
2009-05-22 | Fix lots of PCH crashes caused by the new assertions in | Douglas Gregor |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-13 | Disable access control by default. It can be enabled with the -faccess-contro... | Anders Carlsson |
2009-05-12 | Make precompiled headers work with -E. When we're only preprocessing | Douglas Gregor |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |
2009-05-06 | Back out r70506 (exception spec in AST) again. We won't have exception specs ... | Sebastian Redl |
2009-04-30 | Make a home for exception specs in the AST. Now Sema can hook them up. | Sebastian Redl |
2009-04-30 | initial support for __[u]int128_t, which should be basically | Chris Lattner |
2009-04-28 | Make all PCH-incompatibility warnings into errors, and abort | Douglas Gregor |
2009-04-28 | Make the PCH reader use the diagnostics system for its complaints. | Douglas Gregor |
2009-04-28 | Optimize IdentifierInfo storage within the precompiled header. We've | Douglas Gregor |
2009-04-28 | Implement a minor space optimization for the PCH identifier table, | Douglas Gregor |
2009-04-28 | Replace a lame fprintf with a slightly-less lame diagnostic | Douglas Gregor |
2009-04-28 | Implement checking for macro definitions that occur on the command | Douglas Gregor |
2009-04-28 | Revert r70075 and r70078, which reorganized the PCH on-disk hash table | Douglas Gregor |
2009-04-28 | Allow some differences between the predefines buffer used to build a | Douglas Gregor |
2009-04-28 | Remove unused LangOptions NoExtensions and Boolean. | Eli Friedman |
2009-04-27 | Add a header containing the Clang version; make the driver use this | Douglas Gregor |
2009-04-27 | fix test/PCH/method_pool.m | Chris Lattner |
2009-04-27 | -E, -Eonly and -parse-noop now work with PCH! | Chris Lattner |
2009-04-27 | Teach PCH that ASTContext is optional. Move -parse-noop and -Eonly (so far) | Chris Lattner |
2009-04-27 | Be more careful in our teardown of the PCHReader after deciding to | Douglas Gregor |
2009-04-27 | Add Sema::ExtVectorDecls and Sema::ObjCCategoryImpls to the PCH file. Since t... | Douglas Gregor |
2009-04-27 | shrink SOURCE_LOCATION_OFFSETS to use 4-byte entries instead of 8-byte | Chris Lattner |
2009-04-27 | Implement caching of stat() calls for precompiled headers, which is | Douglas Gregor |
2009-04-27 | encode the type and decl offsets with 32-bits for entry instead | Chris Lattner |
2009-04-27 | fix a couple more places that should be using the DeclCursor instead | Chris Lattner |
2009-04-27 | Load most of the source manager's information lazily from the PCH | Douglas Gregor |
2009-04-27 | unclone SavedStreamPosition | Chris Lattner |
2009-04-27 | move attribute reading to PCHReaderDecl.cpp, remove some | Chris Lattner |
2009-04-27 | read all decls (and attributes and stmts/exprs referenced by the decl) | Chris Lattner |
2009-04-27 | rename GetStmt -> GetDeclStmt to make it clear that the stmt read | Chris Lattner |
2009-04-27 | change the interface to ReadStmt to force clients to pass a cursor in to read... | Chris Lattner |
2009-04-27 | split decl reading out to its own PCHReaderDecl.cpp file. | Chris Lattner |
2009-04-27 | split stmt/expr deserialization out to PCHReaderStmt.cpp | Chris Lattner |
2009-04-27 | remove dead var | Chris Lattner |
2009-04-27 | Set up DeclsCursor. | Chris Lattner |
2009-04-26 | Some fixes for PCH (de-)serialization of Objective-C AST nodes: | Douglas Gregor |
2009-04-26 | Adjust to LLVM API changes that went into r70157. | Chris Lattner |
2009-04-26 | Add PCH read/write support for ObjC statements. | Steve Naroff |
2009-04-26 | When writing a PCH file, write multiple type and declaration blocks as | Douglas Gregor |
2009-04-26 | implement PCH support for the rest of ExprObjC.h, including | Chris Lattner |
2009-04-26 | Don't read all of the records in the PCH file's preprocessor block, | Douglas Gregor |
2009-04-25 | Lazily load the controlling macros for all of the headers known in the | Douglas Gregor |
2009-04-25 | Optimize the loading of an identifier from a PCH file when given the | Douglas Gregor |
2009-04-25 | PCH optimization for the identifier table, where we separate | Douglas Gregor |
2009-04-25 | Revert my changes that try to avoid creating StringMap entries for | Douglas Gregor |
2009-04-25 | Start implementing the PTH IdentifierInfo-saving trick in PCH, | Douglas Gregor |