| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | implement PCH support for the rest of ExprObjC.h, including | Chris Lattner | 2009-04-26 | 1 | -4/+59 |
| * | Don't read all of the records in the PCH file's preprocessor block, | Douglas Gregor | 2009-04-26 | 1 | -84/+18 |
| * | Lazily load the controlling macros for all of the headers known in the | Douglas Gregor | 2009-04-25 | 1 | -1/+2 |
| * | Optimize the loading of an identifier from a PCH file when given the | Douglas Gregor | 2009-04-25 | 1 | -17/+35 |
| * | PCH optimization for the identifier table, where we separate | Douglas Gregor | 2009-04-25 | 1 | -3/+26 |
| * | Revert my changes that try to avoid creating StringMap entries for | Douglas Gregor | 2009-04-25 | 1 | -15/+3 |
| * | Start implementing the PTH IdentifierInfo-saving trick in PCH, | Douglas Gregor | 2009-04-25 | 1 | -2/+14 |
| * | Tweak the data layout for the on-disk hash table of identifiers in the PCH fi... | Douglas Gregor | 2009-04-25 | 1 | -1/+1 |
| * | Write the identifier offsets array into the PCH file as a blob, so | Douglas Gregor | 2009-04-25 | 1 | -40/+34 |
| * | Write the declaration and type offset arrays into the bitstream as | Douglas Gregor | 2009-04-25 | 1 | -33/+31 |
| * | Load the selector table lazily from the PCH file. | Douglas Gregor | 2009-04-25 | 1 | -121/+81 |
| * | Fix indexing error in PCHStmtReader::VisitArraySubscriptExpr(). | Steve Naroff | 2009-04-25 | 1 | -1/+1 |
| * | Add PCH support for ObjCMessageExpr (needed to build Mail). | Steve Naroff | 2009-04-25 | 1 | -0/+19 |
| * | Fixup comment. | Steve Naroff | 2009-04-25 | 1 | -1/+1 |
| * | Fix a major bug in PCHReader::ReadSelectorBlock(). | Steve Naroff | 2009-04-25 | 1 | -2/+3 |
| * | Make sure that the consumer sees all interested decls. This fixes Preview | Douglas Gregor | 2009-04-25 | 1 | -15/+26 |
| * | Add new checker-specific attribute 'objc_ownership_retain'. This isn't hooked up | Ted Kremenek | 2009-04-25 | 1 | -0/+1 |
| * | When we de-serialize an Objective-C protocol, hand it to the AST consumer so ... | Douglas Gregor | 2009-04-24 | 1 | -0/+3 |
| * | Add new checker-specific attribute 'objc_ownership_returns'. This isn't hooked | Ted Kremenek | 2009-04-24 | 1 | -0/+1 |
| * | Once the protocol list has been loaded from the PCH file, add it to | Douglas Gregor | 2009-04-24 | 1 | -0/+1 |
| * | PCH support for the global method pool (= instance and factory method | Douglas Gregor | 2009-04-24 | 1 | -1/+134 |
| * | Add PCH support for #import. | Steve Naroff | 2009-04-24 | 1 | -3/+16 |
| * | Use cast_or_null instead of ternary operator (suggested by Doug). | Steve Naroff | 2009-04-24 | 1 | -3/+1 |
| * | Allow the next catoregory slot to be null. | Steve Naroff | 2009-04-24 | 1 | -1/+3 |
| * | Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's g... | Douglas Gregor | 2009-04-24 | 1 | -1/+1 |
| * | PCH support for categories in Objective-C interfaces. | Douglas Gregor | 2009-04-23 | 1 | -2/+2 |
| * | PCH support for all of the predefined Objective-C types, such as id, | Douglas Gregor | 2009-04-23 | 1 | -1/+13 |
| * | Fix handling of C99 "extern inline" semantics when dealing with | Douglas Gregor | 2009-04-23 | 1 | -0/+1 |
| * | More PushOnScopeChain() FIXME's. | Steve Naroff | 2009-04-23 | 1 | -1/+0 |
| * | Sema::ActOnStartClassInterface(): Use PushOnScopeChains(). | Steve Naroff | 2009-04-23 | 1 | -1/+1 |
| * | Add PCH read/write support for Objective-C Selectors. | Steve Naroff | 2009-04-23 | 1 | -5/+104 |
| * | PCH (de-)serialization of the protocols in an ObjCInterfaceDecl | Douglas Gregor | 2009-04-23 | 1 | -1/+6 |
| * | Add the PCH reader stub for ObjCCompatibleAliasDecl | Douglas Gregor | 2009-04-23 | 1 | -1/+1 |
| * | PCH support for ObjCPropertyImplDecl | Douglas Gregor | 2009-04-23 | 1 | -2/+8 |
| * | The ivars in an ObjCImplementationDecl are now stored in the | Douglas Gregor | 2009-04-23 | 1 | -2/+3 |
| * | PCH support for ObjCCategoryImplDecl (which can't be tested now). | Douglas Gregor | 2009-04-23 | 1 | -2/+2 |
| * | PCH (de-)serialization for ObjCImplDecl. This can't be tested yet. | Douglas Gregor | 2009-04-23 | 1 | -1/+3 |
| * | PCH support for Objective-C property declarations (UNTESTED!) | Douglas Gregor | 2009-04-22 | 1 | -2/+16 |
| * | Add PCH statistics for the number/percent of lexical/visible declcontexts read | Douglas Gregor | 2009-04-22 | 1 | -0/+12 |
| * | Support locally-declared external declarations in PCH files | Douglas Gregor | 2009-04-22 | 1 | -0/+16 |
| * | Support tentative definitions in precompiled headers. This isn't likely | Douglas Gregor | 2009-04-22 | 1 | -0/+14 |
| * | Eliminate some FIXMEs in the PCH reader that were either already fixed or are... | Douglas Gregor | 2009-04-22 | 1 | -15/+9 |
| * | Minimize the number and kind of "external definitions" that the PCH | Douglas Gregor | 2009-04-22 | 1 | -3/+20 |
| * | Lazy loading of builtins for precompiled headers. | Douglas Gregor | 2009-04-22 | 1 | -3/+28 |
| * | Remove some debugging output from the PCH reader | Douglas Gregor | 2009-04-22 | 1 | -3/+0 |
| * | ObjCQualifiedClass is dead, remove it. | Chris Lattner | 2009-04-22 | 1 | -6/+0 |
| * | deserialization support for qualified interfaces | Chris Lattner | 2009-04-22 | 1 | -4/+9 |
| * | pch support for protocol qualified id's. | Chris Lattner | 2009-04-22 | 1 | -4/+8 |
| * | add three new objc expression types. @selector doesn't work because we have no | Chris Lattner | 2009-04-22 | 1 | -0/+38 |
| * | implement serialization support for @encode, | Chris Lattner | 2009-04-22 | 1 | -4/+20 |