1. 7da36f6 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
  2. 8f54c1f Refactored CFG construction code that processes DeclStmts to use StmtIterator. by Ted Kremenek · 17 years ago
  3. 9e32d4b Refactor code into a separate method. by Devang Patel · 17 years ago
  4. 78d85f5 Removed SrcMgr::FileInfo and SrcMgr::InfoRec and replaced them with a by Ted Kremenek · 17 years ago
  5. 59092d0 Tightened IgnoreParen. by Ted Kremenek · 17 years ago
  6. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  7. fb1051b minor tweaks by Chris Lattner · 17 years ago
  8. 0ffe89a Use by Devang Patel · 17 years ago
  9. ca4e19e Fixed tests. by Fariborz Jahanian · 17 years ago
  10. 2d99833 minor code cleanup by Chris Lattner · 17 years ago
  11. e6889f9 shrinkify storage class to a bitfield, add a fixme about merging it in the future. by Chris Lattner · 17 years ago
  12. 03f7c03 Remove commented out line. by Devang Patel · 17 years ago
  13. bb60846 Revisited my last patch to be able to do encoding of ivar types with 'id'. by Fariborz Jahanian · 17 years ago
  14. f17765d update some comments. by Chris Lattner · 17 years ago
  15. d65d8ee Avoid using macro expansions, which causes these to come out in -E mode. by Chris Lattner · 17 years ago
  16. c2939bc Added type encoding for 'id' type. by Fariborz Jahanian · 17 years ago
  17. 752d6ef by Steve Naroff · 17 years ago
  18. 347b9f3 Added vector to ASTContext to store references to "complete" VLA types by Ted Kremenek · 17 years ago
  19. 423cb56 by Steve Naroff · 17 years ago
  20. 2feac5e by Steve Naroff · 17 years ago
  21. f908a87 by Steve Naroff · 17 years ago
  22. c0a87b7 Handle function types. by Anders Carlsson · 17 years ago
  23. 7ed0507 Assert if isObjcIdType is called before 'id' type is built. by Fariborz Jahanian · 17 years ago
  24. 2bd24ba VariableArrayTypes (VLAs) without a size expression are now uniqued by Ted Kremenek · 17 years ago
  25. 33e1d64 Encoding for objectiive-c methods. by Fariborz Jahanian · 17 years ago
  26. 10b945c Updated VC++ build system by Hartmut Kaiser · 17 years ago
  27. 481038b Added a missing #include. by Hartmut Kaiser · 17 years ago
  28. 91fa0b7 by Steve Naroff · 17 years ago
  29. 60fccee by Steve Naroff · 17 years ago
  30. 771fe16 Added support for StmtIterators to iterate over the size expressions by Ted Kremenek · 17 years ago
  31. 103a1b4 Fixed deadcode bug where check for NULL decl occured within a block by Ted Kremenek · 17 years ago
  32. 86522b9 Add RecordOrganizer::layoutUnionFields() by Devang Patel · 17 years ago
  33. 92866e2 Modified StmtIterator to support iteration over the size expressions by Ted Kremenek · 17 years ago
  34. 7a9d9d7 Modified CFG pretty-printing to directly use the (reverse) body by Ted Kremenek · 17 years ago
  35. 65f31e4 Renamed internal variables of StmtIteratorBase to make the code by Ted Kremenek · 17 years ago
  36. 160eb65 Do the encoding of ivar types in the ivar metadata. by Fariborz Jahanian · 17 years ago
  37. 72cb1ae Added some comments. by Ted Kremenek · 17 years ago
  38. a8335a9 Added to test case for "self-comparison check" uses of relation operators: x < x and x > x by Ted Kremenek · 17 years ago
  39. 3ca0bf2 For non-floating point types, added check for expressions of the form by Ted Kremenek · 17 years ago
  40. 6cb812e Insetead of assert() just emit an error message for by Devang Patel · 17 years ago
  41. e780f0d For floating point equality check, we now ignore parentheses. e.g.: by Ted Kremenek · 17 years ago
  42. 6a26155 For checking for floating point comparison using == or !=, we now suppress by Ted Kremenek · 17 years ago
  43. e8c4953 Address Chris's comments. by Anders Carlsson · 17 years ago
  44. 17df57d Fix logic error. by Anders Carlsson · 17 years ago
  45. 84d35ce when checking for type equality, ignore typedefs. by Chris Lattner · 17 years ago
  46. b96728d improve error recovery handling broken 'then' or 'else' stmts in by Chris Lattner · 17 years ago
  47. 85f9bce Add (partial) support for @encode. by Anders Carlsson · 17 years ago
  48. cd4b83c The callers of ParseStructDeclaration are not expecting it to by Chris Lattner · 17 years ago
  49. 3da2db4 casting to void is ok for structs (C99 6.5.4p2), this fixes by Chris Lattner · 17 years ago
  50. 52735a0 Add prototype info for __builtin_memcpy, reducing #diagnostics from 37 to 34 on by Chris Lattner · 17 years ago
  51. 69efba7 Fix a parser bug on labeled inline asm stmts, allowing us to parse stuff like: by Chris Lattner · 17 years ago
  52. fe79595 Implement *skeletal* support for representing GNU inline asm stmts in the AST, by Chris Lattner · 17 years ago
  53. dea6146 Fix a major bug in the Type::getAs*Type methods: they didn't strip off by Chris Lattner · 17 years ago
  54. 89799cf Generate code for __builtin_classify_type. by Anders Carlsson · 17 years ago
  55. c67ad5f Add BuiltinType::Char_S to Type::isCharType by Anders Carlsson · 17 years ago
  56. 4f50ee3 Implemented serialization for TypedefType. by Ted Kremenek · 17 years ago
  57. 4340bfa Implemented serialization of FunctionTypeProto. by Ted Kremenek · 17 years ago
  58. e81e24c Implemented serialization of FunctionTypeNoProto. by Ted Kremenek · 17 years ago
  59. 71ac846 Implemented serialization for VectorType. by Ted Kremenek · 17 years ago
  60. a4cb452 More work on type serialization: added support for serializing BuiltinTypes. by Ted Kremenek · 17 years ago
  61. 4d733d3 Path to synthesize 'instance' size field of _objc_class metadata. by Fariborz Jahanian · 17 years ago
  62. bc26c58 Completed serialization of ConstantArrayTypes (now that APInt serialization is in place). by Ted Kremenek · 17 years ago
  63. bef1185 by Steve Naroff · 17 years ago
  64. 7780d2d This patch allows synthesis generation of ivar offset for legacy objective-c @implementation by Fariborz Jahanian · 17 years ago
  65. 73af669 Added skeleton implementation of serialization for types (not complete). by Ted Kremenek · 17 years ago
  66. 26e4cd3 Patch to synthesize computation of Ivar offset in rewritten c file. by Fariborz Jahanian · 17 years ago
  67. abad06c Codegen union member references. by Devang Patel · 17 years ago
  68. 0a96118 Handle non LValue base expressions. by Devang Patel · 17 years ago
  69. e40daa4 by Devang Patel · 17 years ago
  70. 636c3d0 Codegen array initializers. by Devang Patel · 17 years ago
  71. 8e53e72 Codegen global array initializers. by Devang Patel · 17 years ago
  72. edcfb42 Pretty printing for ivar list of an interface block. by Fariborz Jahanian · 17 years ago
  73. 00a1ef5 Disambiguated variable name to comply with VC++'s archaic variable scoping rules. by Hartmut Kaiser · 17 years ago
  74. d22b492 Updated VC++ build system by Hartmut Kaiser · 17 years ago
  75. b990f18 Modified StmtIterator to now include visiting the initialization expression for EnumConstantDecls. by Ted Kremenek · 17 years ago
  76. f86206f Fix "strbuf += stufflen;" crash. by Devang Patel · 17 years ago
  77. 5825ac2 Document ConvertNewType() method and make it a private method. by Devang Patel · 17 years ago
  78. f152b2e Added DeclSerialization.cpp to XCode project. by Ted Kremenek · 17 years ago
  79. 2f1f8cb Added skeleton for Decl serialization. by Ted Kremenek · 17 years ago
  80. ccd87b0 Refactored several meta data for reusability. by Fariborz Jahanian · 17 years ago
  81. 30ec997 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago
  82. 0a449ee changed #include of Serialization.h to SerializationFwd.h to reduce by Ted Kremenek · 17 years ago
  83. e61933d Fix a recovery bug Fariborz and I noticed yesterday. We were producing: by Chris Lattner · 17 years ago
  84. d6690b2 simplify change. by Chris Lattner · 17 years ago
  85. 075eb6e Fix a bug steve noticed when handling nested rewrites. We now turn this: by Chris Lattner · 17 years ago
  86. 158ecb9 Convert one type of metadata to use std::string instead of printf as an example. by Chris Lattner · 17 years ago
  87. a194bc6 Added SourceLocation.cpp to XCode project. by Ted Kremenek · 17 years ago
  88. 19a95bc Implemented serialization of SourceLocation and SourceRange objects. by Ted Kremenek · 17 years ago
  89. cc32620 Added constness to accessors in CompoundStmt. by Ted Kremenek · 17 years ago
  90. 27437ca Add a new ChooseExpr::isConditionTrue method to unify some code. by Chris Lattner · 17 years ago
  91. 8e991ba Refactored RewriteObjcMethodsMetaData to better rewrite by Fariborz Jahanian · 17 years ago
  92. 54395d4 Added accessors to CompoundStmt to retrieve the source locations for the by Ted Kremenek · 17 years ago
  93. c5d3d72 Remove unused #includes by Devang Patel · 17 years ago
  94. 934f276 More work on translating message expressions. by Steve Naroff · 17 years ago
  95. 126a856 Handle foo()->a = 42; by Devang Patel · 17 years ago
  96. 1a0965e Remove explicit use of size of known structs in metadata generation. by Fariborz Jahanian · 17 years ago
  97. 454cb01 Couple of minor changes. 1) Metaclass metadata also has a reference to by Fariborz Jahanian · 17 years ago
  98. 057afdd Move RecordOrganizer into CodeGenTypes.cpp by Devang Patel · 17 years ago
  99. 2e6d935 Refactord instance and class metadata emission. Refactored protocols metadata emission. by Fariborz Jahanian · 17 years ago
  100. a2bfb91 Modified current clients of Bitcode-Object serialization to use the by Ted Kremenek · 17 years ago