1. f4a72b0 add a ppcallback hook for macro definitions. by Chris Lattner · 15 years ago
  2. 7356a31 now that we have an identifier table in the PCH file, finish hooking up by Chris Lattner · 15 years ago
  3. 285d03f test this in non-pch mode as well as in pch mode. by Chris Lattner · 15 years ago
  4. d1e0f5a improve location info for property stuff. In a property like this: by Chris Lattner · 15 years ago
  5. 3aff919 improve the 'conflicting types' diagnostics to include correct location info, now by Chris Lattner · 15 years ago
  6. 273cd42 pass -fblocks by Chris Lattner · 15 years ago
  7. 7db638d Set proper location info on objc method arguments. by Chris Lattner · 15 years ago
  8. f97e8fa simplify code to use adjustParameterType, apply objc arg attributes by Chris Lattner · 15 years ago
  9. 9097af1 fix blocks to reject objc interfaces returned by value. Also, by Chris Lattner · 15 years ago
  10. 30bdc87 fix test by Chris Lattner · 15 years ago
  11. bb74982 diagnose attempts to return objc interfaces by-value from C functions. by Chris Lattner · 15 years ago
  12. 2dd979f Improve the 'cannot pass objc interface by value' diagnostic: by Chris Lattner · 15 years ago
  13. e294d3f change the interface to ActOnMethodDeclaration to pass down argument by Chris Lattner · 15 years ago
  14. da0895d Minor refactoring of my last patch. by Fariborz Jahanian · 15 years ago
  15. 8f823d2 sink abstract typedefs like Action::ExprTy from the Action class by Chris Lattner · 15 years ago
  16. 3c304bd add some #includes for better compatibility with gcc 4.4, by Chris Lattner · 15 years ago
  17. 2fc5c24 rename Parser::ParseObjCSelector -> Parser::ParseObjCSelectorPiece, by Chris Lattner · 15 years ago
  18. 5272b7f simplify this code to not bother stripping to canonical types, and by Chris Lattner · 15 years ago
  19. 140fb26 Fixes a ir-gen crash for K&R style blocks. by Fariborz Jahanian · 15 years ago
  20. 73f35e6 add radar number by Chris Lattner · 15 years ago
  21. a634fae Update analyzer build. by Ted Kremenek · 15 years ago
  22. 8ec3d7d analyzer: We cannot bind values to CodeTextRegions. by Ted Kremenek · 15 years ago
  23. 3c69d3d Tweak wording, input argument isn't necessarily a "file", things like by Daniel Dunbar · 15 years ago
  24. 9ccb065 Don't mangle variables that are at translation unit scope. by Anders Carlsson · 15 years ago
  25. 1e5dc6e Add support for generating reference initialization code. by Anders Carlsson · 15 years ago
  26. b3bf76f Add analyzer support for objc_atomicCompareAndSwap() by Ted Kremenek · 15 years ago
  27. afaf308 Store unique IDs for identifiers in the PCH file. Use some bitmangling by Douglas Gregor · 15 years ago
  28. 1670e40 Implement analyzer support for OSCompareAndSwap. This required pushing "tagged" by Ted Kremenek · 15 years ago
  29. c211218 Non-pointer objects are none gc'able regardles of the attribute set on them. by Fariborz Jahanian · 15 years ago
  30. e1d918e Compare the predefines buffer in the PCH file with the predefines by Douglas Gregor · 15 years ago
  31. c0c0ef0 Fixup copy/dispose helpers for Objective-C. Radar 6756504 by Mike Stump · 15 years ago
  32. 38ac063 Force driver triple. by Daniel Dunbar · 15 years ago
  33. a6cd009 Remove asserts that weren't really useful, and that would fire in case the CleanupEntries vector needed to be reallocated. by Anders Carlsson · 15 years ago
  34. 0a9217f Fix another fallout from defining __weak unconditionally. by Fariborz Jahanian · 15 years ago
  35. 64c2e07 Don't set both readnone and readonly. by Daniel Dunbar · 15 years ago
  36. 531cc83 do a dance with predefines, and finally enable reading of macros from by Chris Lattner · 15 years ago
  37. 4789282 Fixed the test. by Fariborz Jahanian · 15 years ago
  38. 6bf0f4c move a bunch of code for initializing the predefines buffer out of Preprocessor.cpp by Chris Lattner · 15 years ago
  39. 2b93986 Add a test case for my last patch. by Fariborz Jahanian · 15 years ago
  40. 42d42b5 add support for reading macros. This does all the reading (with a bunch of by Chris Lattner · 15 years ago
  41. f908c51 make a method public by Chris Lattner · 15 years ago
  42. 02022f4 Force triple for a number of tests that rely on __weak. by Daniel Dunbar · 15 years ago
  43. 555589d simplify code. by Chris Lattner · 15 years ago
  44. 2bec041 Encode the target triple in the PCH file, and check that target triple when using the PCH file by Douglas Gregor · 15 years ago
  45. e8063ae Add arbitrary "tags" to ProgramPoints. While this fattens up ProgramPoint even by Ted Kremenek · 15 years ago
  46. f36a06a Honor MACOSX_DEPLOYMENT_TARGET environment variable. by Daniel Dunbar · 15 years ago
  47. 0a0428e Implement serialization/deserialization of LangOptions in the PCH by Douglas Gregor · 15 years ago
  48. 6a1284a Reject compiles for x86_64 target for MacOS versions which do not support it. by Fariborz Jahanian · 15 years ago
  49. 7e714cd Internal variables could mistakenly have "hidden" visibility when by Daniel Dunbar · 15 years ago
  50. c7a4ba5 Test case for -miphoneos-version-min, also part of Shantonu's patch! by Daniel Dunbar · 15 years ago
  51. ff8857a Driver: Forward -miphoneos-version-min to clang. by Daniel Dunbar · 15 years ago
  52. 8d33cd7 Support -miphoneos-version-min in clang-cc. by Daniel Dunbar · 15 years ago
  53. 4d8076a Support %S in Python TestRunner by Daniel Dunbar · 15 years ago
  54. b7477cf Fixup codegen for nested blocks that use copy/dispose in the inner by Mike Stump · 15 years ago
  55. 960cd06 Patch to generate meta-data for prtocol used in @protocol expression. by Fariborz Jahanian · 15 years ago
  56. a1e2fd9 Driver: CCC_ADD_ARGS could end up using dangling pointers. by Daniel Dunbar · 15 years ago
  57. 5a11295 Use getDeclName() instead of getIdentifier() (safe against null pointers) by Ted Kremenek · 15 years ago
  58. d14f270 add a new PP_MACRO_NAME hack so that I can test object-like macros. by Chris Lattner · 15 years ago
  59. fc3388d Move a few more NonLoc static functions to ValueManager. by Ted Kremenek · 15 years ago
  60. 83a1d1d Default initialize 'code' instance variable to NULL. by Ted Kremenek · 15 years ago
  61. df961c2 emit tokens, constify the Preprocessor passed down into PCH writer. by Chris Lattner · 15 years ago
  62. 7c5d24e emit function-like and object-like macros to the PCH file. by Chris Lattner · 15 years ago
  63. f120251 Add PCH sources to CMake build files by Douglas Gregor · 15 years ago
  64. 8038d51 Various minor fixes to PCH reading and writing, with general by Douglas Gregor · 15 years ago
  65. f04ad69 improve punctuation by Chris Lattner · 15 years ago
  66. 0b1fb98 Arrange for the preprocessor to be passed down into the PCH writer. by Chris Lattner · 15 years ago
  67. cadbe1c add PCH stuff to project by Chris Lattner · 15 years ago
  68. 4fa37ac use doug's new %S thing to make this work when run from different locations. by Chris Lattner · 15 years ago
  69. 871eb7c Fix typo. by Ted Kremenek · 15 years ago
  70. 245d814 Update analyzer build. by Ted Kremenek · 15 years ago
  71. ec13d92 Add prototype for CodeTextRegion. by Zhongxing Xu · 15 years ago
  72. cf665e1 update analyzer doc. by Zhongxing Xu · 15 years ago
  73. 3330dcb Finally nuke loc::SymbolVal. by Zhongxing Xu · 15 years ago
  74. 2893589 typos by Chris Lattner · 15 years ago
  75. 2f1169f Use correct alignment and size for references in records as well. by Anders Carlsson · 15 years ago
  76. 4df2114 Wording changes. by Ted Kremenek · 15 years ago
  77. ed86931 Add blurb about attribute "analyzer_noreturn" by Ted Kremenek · 15 years ago
  78. 12e330c Rename variables to avoid conflict. by Anders Carlsson · 15 years ago
  79. 1b78276 Add Expr::EvaluateAsLValue which will (believe it or not) try to evaluate an Expr as an LValue. by Anders Carlsson · 15 years ago
  80. f093023 Fix thinko noticed by Chris. by Anders Carlsson · 15 years ago
  81. 4cc2cfd Use the same alignment for reference declarations as for pointer declarations. by Anders Carlsson · 15 years ago
  82. c1da56e fix indentation by Chris Lattner · 15 years ago
  83. 3a0fd13 Split failing test case from misc-ps.m to misc-ps-ranges.m (which tests by Ted Kremenek · 15 years ago
  84. 14f7900 PCH serialization/deserialization of the source manager. With this by Douglas Gregor · 15 years ago
  85. 52e5602 Fix: <rdar://problem/6776949> Branch condition evaluates to an uninitialized value (argc is guaranteed to be >= 1) by Ted Kremenek · 15 years ago
  86. 11c7d32 Make messages consistent. by Chris Lattner · 15 years ago
  87. b75863d reject codegen of __thread variables as unimplemented, rdar://6775265 by Chris Lattner · 15 years ago
  88. b725232 Implement attribute "analyzer_noreturn" (<rdar://problem/6777003>). This allows by Ted Kremenek · 15 years ago
  89. 2cf2634 Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 15 years ago
  90. 8d7f548 - Move ownership of MemRegionManager into ValueManager. by Ted Kremenek · 15 years ago
  91. c612f7b Add @encode support for complex types. by Anders Carlsson · 15 years ago
  92. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 15 years ago
  93. d296836 Add some FIXMEs for missing checks. by Eli Friedman · 15 years ago
  94. 1177f91 document the x86 address space extension for GS. by Chris Lattner · 15 years ago
  95. 5890c63 Fix grammar. Bold face feature points. by Ted Kremenek · 15 years ago
  96. 8e16408 More cleanup. by Ted Kremenek · 15 years ago
  97. b7fd6b0 More cleanups. by Ted Kremenek · 15 years ago
  98. cfa8d57 Add link from internals manual to PTH documentation. by Ted Kremenek · 15 years ago
  99. 07f08d2 Minor cleanups. Added a blurb about the advantages of fast PTH file generation. by Ted Kremenek · 15 years ago
  100. c36c540 Simple DeclContext's internal representation by always storing a by Douglas Gregor · 15 years ago