1. 1cb35dd Remove the ObjCCategoryImpls vector from Sema class. by Argyrios Kyrtzidis · 15 years ago
  2. c15cb2a Remove ObjCQualifiedInterfaceType:-) by Steve Naroff · 15 years ago
  3. 0899621 Fix a comment. by Zhongxing Xu · 15 years ago
  4. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  5. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  6. de2e22d Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseudo built-in types, since Sema still injects a typedef for recognition (i.e. they aren't truly built-ins from a parser perspective). by Steve Naroff · 15 years ago
  7. f5c209d Basic support for C++0x unicode types. Support for literals will follow in an incremental patch by Alisdair Meredith · 15 years ago
  8. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  9. c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 15 years ago
  10. e650c8c Introduce the notion of "Relocatable" precompiled headers, which are built by Douglas Gregor · 15 years ago
  11. d89275b Fix PR 4489, a crash in PCH loading that occurs when loading the name by Douglas Gregor · 15 years ago
  12. 7e7eb3d Keep track of the Expr used to describe the size of an array type, by Douglas Gregor · 15 years ago
  13. 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
  14. b9e7e63 Write/Read new Language Options by Nate Begeman · 15 years ago
  15. 69cfb9b PCH support for OpenCL language options by Nate Begeman · 15 years ago
  16. 395b475 Add a DecltypeType type. by Anders Carlsson · 15 years ago
  17. 5710211 Fix bug in the new PCHReader constructor. PP and Context should be initialized to 0. by Argyrios Kyrtzidis · 15 years ago
  18. 11e5110 Make changes to PCHReader to allow reading a PCH file without having a pre-initialized Preprocessor. by Argyrios Kyrtzidis · 15 years ago
  19. d1b3c2d First step toward fixing <rdar://problem/6613046> refactor clang objc type representation. by Steve Naroff · 15 years ago
  20. d3555ae If PCH refers to a file that doesn't exist anymore, emit a nice error by Chris Lattner · 15 years ago
  21. 15b9176 Move CharIsSigned from TargetInfo to LangOptions. by Eli Friedman · 15 years ago
  22. 465226e Reintroduce the home for exception specs, and make Sema fill it. However, keep the spec out of the canonical type this time. Net effect is currently nothing, because the spec isn't checked anywhere. by Sebastian Redl · 15 years ago
  23. 75fdb23 Fix lots of PCH crashes caused by the new assertions in by Douglas Gregor · 15 years ago
  24. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  25. a33d9b4 Disable access control by default. It can be enabled with the -faccess-control option. When we have better support for it, we can enable it by default again. by Anders Carlsson · 15 years ago
  26. b64c193 Make precompiled headers work with -E. When we're only preprocessing by Douglas Gregor · 15 years ago
  27. 6e8ed16 Implement C++0x nullptr. by Sebastian Redl · 15 years ago
  28. bfa2fcb Back out r70506 (exception spec in AST) again. We won't have exception specs until we've had a lot more discussion. by Sebastian Redl · 15 years ago
  29. 7b9a2ee Make a home for exception specs in the AST. Now Sema can hook them up. by Sebastian Redl · 15 years ago
  30. 2df9ced initial support for __[u]int128_t, which should be basically by Chris Lattner · 15 years ago
  31. 1ab86ac Make all PCH-incompatibility warnings into errors, and abort by Douglas Gregor · 15 years ago
  32. a02b147 Make the PCH reader use the diagnostics system for its complaints. by Douglas Gregor · 15 years ago
  33. 5998da5 Optimize IdentifierInfo storage within the precompiled header. We've by Douglas Gregor · 15 years ago
  34. a92193e Implement a minor space optimization for the PCH identifier table, by Douglas Gregor · 15 years ago
  35. af1795b Replace a lame fprintf with a slightly-less lame diagnostic by Douglas Gregor · 15 years ago
  36. 92b059e Implement checking for macro definitions that occur on the command by Douglas Gregor · 15 years ago
  37. 02fc751 Revert r70075 and r70078, which reorganized the PCH on-disk hash table by Douglas Gregor · 15 years ago
  38. e721f95 Allow some differences between the predefines buffer used to build a by Douglas Gregor · 15 years ago
  39. c71133f Remove unused LangOptions NoExtensions and Boolean. by Eli Friedman · 15 years ago
  40. ab41e63 Add a header containing the Clang version; make the driver use this by Douglas Gregor · 15 years ago
  41. 6bf690f fix test/PCH/method_pool.m by Chris Lattner · 15 years ago
  42. cc7dea8 -E, -Eonly and -parse-noop now work with PCH! by Chris Lattner · 15 years ago
  43. d1d64a0 Teach PCH that ASTContext is optional. Move -parse-noop and -Eonly (so far) by Chris Lattner · 15 years ago
  44. 2bf1eb0 Be more careful in our teardown of the PCHReader after deciding to by Douglas Gregor · 15 years ago
  45. b81c170 Add Sema::ExtVectorDecls and Sema::ObjCCategoryImpls to the PCH file. Since these vectors are very, very rarely used and, when used in headers, and even when used are relatively small, we load them eagerly. by Douglas Gregor · 15 years ago
  46. 090d9b5 shrink SOURCE_LOCATION_OFFSETS to use 4-byte entries instead of 8-byte by Chris Lattner · 15 years ago
  47. 4fed3f4 Implement caching of stat() calls for precompiled headers, which is by Douglas Gregor · 15 years ago
  48. c732f5a encode the type and decl offsets with 32-bits for entry instead by Chris Lattner · 15 years ago
  49. c47be9e fix a couple more places that should be using the DeclCursor instead by Chris Lattner · 15 years ago
  50. 7f94b0b Load most of the source manager's information lazily from the PCH by Douglas Gregor · 15 years ago
  51. 02602be unclone SavedStreamPosition by Chris Lattner · 15 years ago
  52. 4e3fcc8 move attribute reading to PCHReaderDecl.cpp, remove some extraneous braces. by Chris Lattner · 15 years ago
  53. da93061 read all decls (and attributes and stmts/exprs referenced by the decl) by Chris Lattner · 15 years ago
  54. 887e2b3 rename GetStmt -> GetDeclStmt to make it clear that the stmt read by Chris Lattner · 15 years ago
  55. 52e97d1 change the interface to ReadStmt to force clients to pass a cursor in to read from. by Chris Lattner · 15 years ago
  56. 698f925 split decl reading out to its own PCHReaderDecl.cpp file. by Chris Lattner · 15 years ago
  57. 4c6f952 split stmt/expr deserialization out to PCHReaderStmt.cpp by Chris Lattner · 15 years ago
  58. 8849e64 remove dead var by Chris Lattner · 15 years ago
  59. 6367f6d Set up DeclsCursor. by Chris Lattner · 15 years ago
  60. 405bad0 Some fixes for PCH (de-)serialization of Objective-C AST nodes: by Douglas Gregor · 15 years ago
  61. b9fa917 Adjust to LLVM API changes that went into r70157. by Chris Lattner · 15 years ago
  62. 1eb5540 Add PCH read/write support for ObjC statements. by Steve Naroff · 15 years ago
  63. 366809a When writing a PCH file, write multiple type and declaration blocks as by Douglas Gregor · 15 years ago
  64. 0389e6b implement PCH support for the rest of ExprObjC.h, including by Chris Lattner · 15 years ago
  65. 2eafc1b Don't read all of the records in the PCH file's preprocessor block, by Douglas Gregor · 15 years ago
  66. 8c5a760 Lazily load the controlling macros for all of the headers known in the by Douglas Gregor · 15 years ago
  67. 17e1c5e Optimize the loading of an identifier from a PCH file when given the by Douglas Gregor · 15 years ago
  68. d6595a4 PCH optimization for the identifier table, where we separate by Douglas Gregor · 15 years ago
  69. 5f8e330 Revert my changes that try to avoid creating StringMap entries for by Douglas Gregor · 15 years ago
  70. 5da8161 Start implementing the PTH IdentifierInfo-saving trick in PCH, by Douglas Gregor · 15 years ago
  71. 1986cad Tweak the data layout for the on-disk hash table of identifiers in the PCH file so that the key layout matches that of the PTH key layout by Douglas Gregor · 15 years ago
  72. 2b3a5a8 Write the identifier offsets array into the PCH file as a blob, so by Douglas Gregor · 15 years ago
  73. 8f5dc7f Write the declaration and type offset arrays into the bitstream as by Douglas Gregor · 15 years ago
  74. 83941df Load the selector table lazily from the PCH file. by Douglas Gregor · 15 years ago
  75. d3f632e Fix indexing error in PCHStmtReader::VisitArraySubscriptExpr(). by Steve Naroff · 15 years ago
  76. c4f0bbd Add PCH support for ObjCMessageExpr (needed to build Mail). by Steve Naroff · 15 years ago
  77. 87f0f82 Fixup comment. by Steve Naroff · 15 years ago
  78. 72de921 Fix a major bug in PCHReader::ReadSelectorBlock(). by Steve Naroff · 15 years ago
  79. c62a2fe Make sure that the consumer sees all interested decls. This fixes Preview by Douglas Gregor · 15 years ago
  80. de9a81b Add new checker-specific attribute 'objc_ownership_retain'. This isn't hooked up by Ted Kremenek · 15 years ago
  81. ad38a85 When we de-serialize an Objective-C protocol, hand it to the AST consumer so that we can create metadata by Douglas Gregor · 15 years ago
  82. 0fc169e Add new checker-specific attribute 'objc_ownership_returns'. This isn't hooked by Ted Kremenek · 15 years ago
  83. d5e662d Once the protocol list has been loaded from the PCH file, add it to by Douglas Gregor · 15 years ago
  84. f0aaf7a PCH support for the global method pool (= instance and factory method by Douglas Gregor · 15 years ago
  85. 83d63c7 Add PCH support for #import. by Steve Naroff · 15 years ago
  86. 0777260 Use cast_or_null instead of ternary operator (suggested by Doug). by Steve Naroff · 15 years ago
  87. 521c910 Allow the next catoregory slot to be null. by Steve Naroff · 15 years ago
  88. 8fc463a Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's good for uniformity is good for PCH (or is it the other way around?). by Douglas Gregor · 15 years ago
  89. 133f482 PCH support for categories in Objective-C interfaces. by Douglas Gregor · 15 years ago
  90. 319ac89 PCH support for all of the predefined Objective-C types, such as id, by Douglas Gregor · 15 years ago
  91. b3efa98 Fix handling of C99 "extern inline" semantics when dealing with by Douglas Gregor · 15 years ago
  92. 8f06f84 More PushOnScopeChain() FIXME's. by Steve Naroff · 15 years ago
  93. a7503a7 Sema::ActOnStartClassInterface(): Use PushOnScopeChains(). by Steve Naroff · 15 years ago
  94. 90cd1bb Add PCH read/write support for Objective-C Selectors. by Steve Naroff · 15 years ago
  95. 291be39 PCH (de-)serialization of the protocols in an ObjCInterfaceDecl by Douglas Gregor · 15 years ago
  96. 17eee4a Add the PCH reader stub for ObjCCompatibleAliasDecl by Douglas Gregor · 15 years ago
  97. 8818c4f PCH support for ObjCPropertyImplDecl by Douglas Gregor · 15 years ago
  98. 8f36aba The ivars in an ObjCImplementationDecl are now stored in the by Douglas Gregor · 15 years ago
  99. 10b0e1f PCH support for ObjCCategoryImplDecl (which can't be tested now). by Douglas Gregor · 15 years ago
  100. 2c2d43c PCH (de-)serialization for ObjCImplDecl. This can't be tested yet. by Douglas Gregor · 15 years ago