1. c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
  2. d0091aa by Steve Naroff · 17 years ago
  3. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  4. a517e40 Minor refactoring of foreach's semantics code per Chris's suggetion. by Fariborz Jahanian · 17 years ago
  5. b7b6115 add comments for the various AssignConvertType's, and split int->pointer from pointer->int. by Chris Lattner · 17 years ago
  6. 5cf216b Merge all the 'assignment' diagnostic code into one routine, decloning by Chris Lattner · 17 years ago
  7. 1f990d6 Patch to add semantics check for ObjC2's foreacn statement. by Fariborz Jahanian · 17 years ago
  8. 4667ac3 generalize some of the conversion warnings. by Chris Lattner · 17 years ago
  9. bfe639e give better diagnostics for converting between function pointer and void*. by Chris Lattner · 17 years ago
  10. 3ba5a0f Patch to parse/build AST ObjC2's foreach statement. by Fariborz Jahanian · 17 years ago
  11. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  12. 925e60d Change Sema::ActOnCallExpr to construct the CallExpr early and put it into by Chris Lattner · 17 years ago
  13. 1b9a079 implement semantic analysis for __builtin_islessequal and friends. by Chris Lattner · 17 years ago
  14. 30ce344 refactor some code that handles sema of direct function calls. by Chris Lattner · 17 years ago
  15. 78aaae9 Fix an embarassing typo and add some very limited support for the aligned attribute. by Anders Carlsson · 17 years ago
  16. ca5eede implement correct semantic analysis for shifts. For: by Chris Lattner · 17 years ago
  17. b3a99cd Add ObjC parser support for concatenated ObjC strings. Note that by Chris Lattner · 17 years ago
  18. 2fdc374 by Steve Naroff · 17 years ago
  19. 66c5dfc Patch to implement "Protocol" as a built-in type declared as "@class Protocol;" by Fariborz Jahanian · 17 years ago
  20. b107ce8 Simplified setting up Method's scope before generating AST for its nody. by Fariborz Jahanian · 17 years ago
  21. 89307ff by Steve Naroff · 17 years ago
  22. 1f64432 by Steve Naroff · 17 years ago
  23. 584b247 Add comment to CheckVectorCast.h by Anders Carlsson · 17 years ago
  24. a64db8f Report errors for invalid casts from/to vectors. by Anders Carlsson · 17 years ago
  25. 588e5eb Moved logic for -Wfloat-equal to SemaChecking.cpp. by Ted Kremenek · 17 years ago
  26. 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
  27. b235fc2 Store output and input operands as well as clobber information in the AsmStmt. Ted, could you please review the serialization/deserialization code? by Anders Carlsson · 17 years ago
  28. 6a0ef4b Store inline asm code in the AST. by Anders Carlsson · 17 years ago
  29. 49f109c by Steve Naroff · 17 years ago
  30. 335eafa by Steve Naroff · 17 years ago
  31. 41af093 implement test/Sema/typedef-prototype.c, allowing code by Chris Lattner · 17 years ago
  32. bff5f5c Rename Sema method to follow class naming convention by Nate Begeman · 17 years ago
  33. 0523aaf 'super' nailed. by Fariborz Jahanian · 17 years ago
  34. 0330071 by Steve Naroff · 17 years ago
  35. 0755aba by Steve Naroff · 17 years ago
  36. 6649992 by Steve Naroff · 17 years ago
  37. d6d054d by Steve Naroff · 17 years ago
  38. 0416fb9 by Steve Naroff · 17 years ago
  39. c43d868 by Steve Naroff · 17 years ago
  40. 439d28c Minor code clean up in method def area. by Fariborz Jahanian · 17 years ago
  41. 60fbca0 Represent method definitions as separate AST nodes. Pretty print will come next. by Fariborz Jahanian · 17 years ago
  42. 360300c Some code clean up in the form of name changes for functions which by Fariborz Jahanian · 17 years ago
  43. 1f7b6f8 Added class context to method declarations. Provide "interface *" type by Fariborz Jahanian · 17 years ago
  44. 306d68f First patch toward rewriting of method definitions. This is work in progress. by Fariborz Jahanian · 17 years ago
  45. 39f8f15 AST for objective-c's @throw statement and its pretty-printing. by Fariborz Jahanian · 17 years ago
  46. 82a5fe3 Patch for objc2's property ASTs, as well as pretty-priting the ASTs. by Fariborz Jahanian · 17 years ago
  47. beaf299 by Steve Naroff · 17 years ago
  48. bd49a64 AST for @try statement. by Fariborz Jahanian · 17 years ago
  49. 161a9c5 AST for @finally statement. by Fariborz Jahanian · 17 years ago
  50. 3b1191d AST build for @catch clause (this is work in progress). by Fariborz Jahanian · 17 years ago
  51. f1de0ca 1) More additions for objective-c's qualifier type. by Fariborz Jahanian · 17 years ago
  52. 3a3ca1b Fixed problem with rewriting stand-alone @implementation (with no matching @interface). by Fariborz Jahanian · 17 years ago
  53. 8ee529b by Steve Naroff · 17 years ago
  54. 8baaca5 Encode Class, SEL and Objective-C objects. by Anders Carlsson · 17 years ago
  55. 423cb56 by Steve Naroff · 17 years ago
  56. f908a87 by Steve Naroff · 17 years ago
  57. 60fccee by Steve Naroff · 17 years ago
  58. fe79595 Implement *skeletal* support for representing GNU inline asm stmts in the AST, by Chris Lattner · 17 years ago
  59. bef1185 by Steve Naroff · 17 years ago
  60. 390d50a Implementation of AST for @protocol expression. by Fariborz Jahanian · 17 years ago
  61. 1a86b33 Generate code for static variables that don't have initializers. Also, report an error if a static initializer is not constant. by Anders Carlsson · 17 years ago
  62. 2a35fa9 Fix location processing of @selector: the range should include the @ sign. by Fariborz Jahanian · 17 years ago
  63. 81bfde9 by Steve Naroff · 17 years ago
  64. 674af95 Fix location processing of @encode: the range should include the @ sign. by Chris Lattner · 17 years ago
  65. b62f681 Patch to implement AST generation for objective-c's @selector expression. by Fariborz Jahanian · 17 years ago
  66. 7c50aca Add code generation and sema checking for __builtin_va_arg. by Anders Carlsson · 17 years ago
  67. 7e219e4 by Steve Naroff · 17 years ago
  68. 58ff9e8 by Steve Naroff · 17 years ago
  69. 4cabdfc Fixed a @compatible_alias bug. In the process, discovered unnecessary 2ndry lookup by Fariborz Jahanian · 17 years ago
  70. 243b64b This patch implementa objective-c's @compatibilty-alias declaration. by Fariborz Jahanian · 17 years ago
  71. 4b6c905 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  72. e21b573 Refinements to Sema::GetObjcIdType()... by Steve Naroff · 17 years ago
  73. 3b95017 by Steve Naroff · 17 years ago
  74. e440eb8 by Steve Naroff · 17 years ago
  75. b216c88 by Steve Naroff · 17 years ago
  76. 4de884d Update DeclKind enums to reflect ObjcProtocolDecl's inheritance change. by Chris Lattner · 17 years ago
  77. 05672a0 Remove addition of protocol names to declaration scopes, use a separate by Fariborz Jahanian · 17 years ago
  78. b652cea rename some "Parse" actions to "ActOn". Move code around in by Chris Lattner · 17 years ago
  79. eefc418 by Steve Naroff · 17 years ago
  80. f387668 move ImplementationClassInfo out of ASTContext into Sema. by Chris Lattner · 17 years ago
  81. 245f92a This is the first patch toward supporting protocol conforming by Fariborz Jahanian · 17 years ago
  82. 8599426 Implement DenseMapInfo for Selector, allowing use of DenseMap/DenseSet of by Chris Lattner · 17 years ago
  83. 85ff264 Patch for 1) Checking for duplicate methods decls in intterface and category. by Fariborz Jahanian · 17 years ago
  84. 3a165b0 by Steve Naroff · 17 years ago
  85. 37e58d1 by Steve Naroff · 17 years ago
  86. a5997c4 by Steve Naroff · 17 years ago
  87. ca3adf7 Previously, I warned those methods not implemented in implementation class/category. by Fariborz Jahanian · 17 years ago
  88. 6a8a9a4 by Steve Naroff · 17 years ago
  89. 8f3fde0 This patch introduces the ObjcCategoryImplDecl class and does the checking related to by Fariborz Jahanian · 17 years ago
  90. 8c74fa4 Code clean up. Moved couple of static functions to be private members of Sema class. by Fariborz Jahanian · 17 years ago
  91. 1b6351f Patch to remove use of has table for protocol name lookup. This patch mirrors my by Fariborz Jahanian · 17 years ago
  92. 9d048ff Removed use of hash table for class decls and do a name look up directly. by Fariborz Jahanian · 17 years ago
  93. bcfb06a by Steve Naroff · 17 years ago
  94. 00ae8d5 Patch to warn on umimplemented methods coming from class's protocols. by Fariborz Jahanian · 17 years ago
  95. d0b0154 Patch for method implementation. It populates ObjcImplementationDecl object with method implementation declarations . by Fariborz Jahanian · 17 years ago
  96. 68d331a by Steve Naroff · 17 years ago
  97. d0b90bf This patch inserts ivars declared in @implementation in its object and verifies by Fariborz Jahanian · 17 years ago
  98. ccb4f31 This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
  99. 894c57f This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 17 years ago
  100. 563477d by Steve Naroff · 17 years ago