| Commit message (Expand) | Author | Age | Files | Lines |
* | Add PCH read/write support for ObjC statements. | Steve Naroff | 2009-04-26 | 1 | -1/+54 |
* | Make sure we have a code in the node:-) | Steve Naroff | 2009-04-26 | 1 | -0/+4 |
* | When writing a PCH file, write multiple type and declaration blocks as | Douglas Gregor | 2009-04-26 | 1 | -12/+21 |
* | split ObjC and C++ Statements out into their own headers. | Chris Lattner | 2009-04-26 | 1 | -1/+0 |
* | implement PCH support for the rest of ExprObjC.h, including | Chris Lattner | 2009-04-26 | 1 | -3/+45 |
* | Don't read all of the records in the PCH file's preprocessor block, | Douglas Gregor | 2009-04-26 | 1 | -27/+28 |
* | PCH optimization for the identifier table, where we separate | Douglas Gregor | 2009-04-25 | 1 | -2/+36 |
* | Revert my changes that try to avoid creating StringMap entries for | Douglas Gregor | 2009-04-25 | 1 | -7/+1 |
* | Tweak the data layout for the on-disk hash table of identifiers in the PCH fi... | Douglas Gregor | 2009-04-25 | 1 | -1/+7 |
* | Write the identifier offsets array into the PCH file as a blob, so | Douglas Gregor | 2009-04-25 | 1 | -2/+13 |
* | Write the declaration and type offset arrays into the bitstream as | Douglas Gregor | 2009-04-25 | 1 | -3/+29 |
* | Load the selector table lazily from the PCH file. | Douglas Gregor | 2009-04-25 | 1 | -31/+44 |
* | Add PCH support for ObjCMessageExpr (needed to build Mail). | Steve Naroff | 2009-04-25 | 1 | -0/+16 |
* | Fix a major bug in PCHReader::ReadSelectorBlock(). | Steve Naroff | 2009-04-25 | 1 | -5/+5 |
* | Add new checker-specific attribute 'objc_ownership_retain'. This isn't hooked up | Ted Kremenek | 2009-04-25 | 1 | -0/+1 |
* | Add new checker-specific attribute 'objc_ownership_returns'. This isn't hooked | Ted Kremenek | 2009-04-24 | 1 | -0/+1 |
* | Fix two small but very nasty bugs in the PCH writer for method pools: | Douglas Gregor | 2009-04-24 | 1 | -5/+10 |
* | PCH support for the global method pool (= instance and factory method | Douglas Gregor | 2009-04-24 | 1 | -0/+173 |
* | Add PCH support for #import. | Steve Naroff | 2009-04-24 | 1 | -1/+17 |
* | Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's g... | Douglas Gregor | 2009-04-24 | 1 | -1/+1 |
* | Eliminate Sema::ObjCProtocols. Instead, we place ObjCProtocolDecls in | Douglas Gregor | 2009-04-23 | 1 | -1/+1 |
* | PCH support for categories in Objective-C interfaces. | Douglas Gregor | 2009-04-23 | 1 | -1/+1 |
* | PCH support for all of the predefined Objective-C types, such as id, | Douglas Gregor | 2009-04-23 | 1 | -0/+6 |
* | Fix handling of C99 "extern inline" semantics when dealing with | Douglas Gregor | 2009-04-23 | 1 | -0/+1 |
* | Add PCH read/write support for Objective-C Selectors. | Steve Naroff | 2009-04-23 | 1 | -4/+37 |
* | PCH (de-)serialization of the protocols in an ObjCInterfaceDecl | Douglas Gregor | 2009-04-23 | 1 | -1/+6 |
* | PCH support for ObjCPropertyImplDecl | Douglas Gregor | 2009-04-23 | 1 | -1/+3 |
* | The ivars in an ObjCImplementationDecl are now stored in the | Douglas Gregor | 2009-04-23 | 1 | -1/+1 |
* | PCH support for ObjCCategoryImplDecl (which can't be tested now). | Douglas Gregor | 2009-04-23 | 1 | -1/+1 |
* | PCH (de-)serialization for ObjCImplDecl. This can't be tested yet. | Douglas Gregor | 2009-04-23 | 1 | -1/+2 |
* | PCH support for Objective-C property declarations (UNTESTED!) | Douglas Gregor | 2009-04-22 | 1 | -2/+17 |
* | Add PCH statistics for the number/percent of lexical/visible declcontexts read | Douglas Gregor | 2009-04-22 | 1 | -1/+6 |
* | Support locally-declared external declarations in PCH files | Douglas Gregor | 2009-04-22 | 1 | -0/+15 |
* | Support tentative definitions in precompiled headers. This isn't likely | Douglas Gregor | 2009-04-22 | 1 | -0/+14 |
* | Minimize the number and kind of "external definitions" that the PCH | Douglas Gregor | 2009-04-22 | 1 | -16/+1 |
* | Lazy loading of builtins for precompiled headers. | Douglas Gregor | 2009-04-22 | 1 | -8/+20 |
* | ObjCQualifiedClass is dead, remove it. | Chris Lattner | 2009-04-22 | 1 | -8/+0 |
* | pch support for protocol qualified id's. | Chris Lattner | 2009-04-22 | 1 | -0/+1 |
* | add three new objc expression types. @selector doesn't work because we have no | Chris Lattner | 2009-04-22 | 1 | -2/+27 |
* | implement serialization support for @encode, | Chris Lattner | 2009-04-22 | 1 | -0/+18 |
* | Lazy deserialization of macro definitions for precompiled headers. | Douglas Gregor | 2009-04-21 | 1 | -10/+23 |
* | Don't bother writing a visible-declarations record for the translation | Douglas Gregor | 2009-04-21 | 1 | -3/+5 |
* | Lazy deserialization of the declaration chains associated with | Douglas Gregor | 2009-04-21 | 1 | -13/+19 |
* | Add pch reader/writer support for most of DeclObjC.h. Very close to reading/w... | Steve Naroff | 2009-04-21 | 1 | -2/+94 |
* | Write the identifier table into the PCH file as an on-disk hash table | Douglas Gregor | 2009-04-20 | 1 | -18/+98 |
* | Add pch reader/writer support for ObjCContainerDecl, ObjCInterfaceDecl, & Obj... | Steve Naroff | 2009-04-20 | 1 | -0/+33 |
* | the __gnuc_inline__ attribute is actually named __gnu_inline__, | Chris Lattner | 2009-04-20 | 1 | -1/+1 |
* | Introduce the notion of a SemaConsumer, which is an ASTConsumer that | Douglas Gregor | 2009-04-20 | 1 | -1/+5 |
* | Add pch reader/writer support for ObjCMethodDecl. | Steve Naroff | 2009-04-20 | 1 | -0/+27 |
* | Add location info for indirect goto. | Chris Lattner | 2009-04-19 | 1 | -0/+1 |