1. e8e3205 Warning fixes to operator precedence warnings. by Eli Friedman · 16 years ago
  2. fea8685 Remove tabs. by Nate Begeman · 16 years ago
  3. 9ee92e8 Name of addLayoutToClass is confusing as no layout calculation by Fariborz Jahanian · 16 years ago
  4. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  5. e21269b Store the size of the EH stack inside each BreakContinue struct so we know when a break/continue won't cross a try block. by Anders Carlsson · 16 years ago
  6. aaa63a7 Patch for ObjCIvarRefExpr containing the field by Fariborz Jahanian · 16 years ago
  7. 71e38c4 disable Anders' recent VLA patch, this fixes PR3209. by Chris Lattner · 16 years ago
  8. 5d46315 Implement allocation and sizeof VLAs. This is very basic for now. by Anders Carlsson · 16 years ago
  9. dcc90d8 Add map of VLA types and their sizes by Anders Carlsson · 16 years ago
  10. 17d28a3 Work in preparation for VLAs. Make sure to restore the stack if necessary (Saving the stack isn't implemented right now :) by Anders Carlsson · 16 years ago
  11. 670a62c Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  12. 3534564 add codegen support for __func__ and friends, producing the same by Chris Lattner · 16 years ago
  13. e267ff3 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  14. a4c46df Actually distinguish between RecordDecl::field_iterator and RecordDecl::field_const_iterator, propagating the constness down to the FieldDecls. by Douglas Gregor · 16 years ago
  15. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  16. 565c99f Append an extra newline to the module inline asm if it's not empty. by Anders Carlsson · 16 years ago
  17. fef30b5 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
  18. c9f29c6 Fix a serious null termination bug found by David Chisnall! by Chris Lattner · 16 years ago
  19. 447d7ae Change condition under which 'retain'/'copy' are directly evaluated. by Fariborz Jahanian · 16 years ago
  20. 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  21. 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  22. 86ccea0 Mention an optimization opportunity pointed out by Chris. by Daniel Dunbar · 16 years ago
  23. 3a5013c Correct CodeGen assumption that LongTy == Int32Ty in a few places. This makes several CodeGenObjC tests pass on 64-bit by fixing assertions. This doesn't mean that the result is actually what the GNU runtime expects, though. by Sebastian Redl · 16 years ago
  24. 98883e1 If a global var decl has an initializer, make sure to always set its linkage to external. by Anders Carlsson · 16 years ago
  25. 8de8d1d Fix for PR3150: obvious copy-paste bug in ScalarExprEmitter::VisitBinLOr. by Eli Friedman · 16 years ago
  26. a385b3c Disabling this code due to regression on test/CodeGen/bitfield.c. See PR3152. by Eli Friedman · 16 years ago
  27. 64712f1 Change more code over to using the new Expr::Evaluate by Anders Carlsson · 16 years ago
  28. 4b3f9c0 Change more code over to using the new Expr::Evaluate by Anders Carlsson · 16 years ago
  29. f35d35a Use the new Expr::Evaluate by Anders Carlsson · 16 years ago
  30. 994ffef Fix for PR2969: generate a memcpy from a constant for constant by Eli Friedman · 16 years ago
  31. 4fe66aa Test commit. by Daniel Dunbar · 16 years ago
  32. 6010bca Code gen for aggregate-valued properties and a test case. by Fariborz Jahanian · 16 years ago
  33. 4d6e8dd Convert incomplete array types before emitting debug info for them, fixes PR3134. by Anders Carlsson · 16 years ago
  34. ad3d691 Handle returning complex types that get coerced. Fixes PR3131 by Anders Carlsson · 16 years ago
  35. 71fcec9 Fix 80-col violations. by Daniel Dunbar · 16 years ago
  36. 704e490 Remove the #ifdeffed out code. by Anders Carlsson · 16 years ago
  37. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  38. 39f34e9 Migrate some stuff from NamedDecl::getName() to by Chris Lattner · 16 years ago
  39. 8ec03f5 Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 16 years ago
  40. 077bf5e Rename Selector::getName() to Selector::getAsString(), and add by Chris Lattner · 16 years ago
  41. ef5a66d An expression is not foldable if it can't be fully evaluated. Fixes PR3060 by Anders Carlsson · 16 years ago
  42. 43f4470 Implemented ir-gen for 'implicit' properties using the new AST nodes. by Fariborz Jahanian · 16 years ago
  43. 51fe996 Use Expr::Evaluate for case statements. Fixes PR2525 by Anders Carlsson · 16 years ago
  44. 5daf570 New AST node to access "implicit" setter/getter using property dor syntax. by Fariborz Jahanian · 16 years ago
  45. bcf6225 Use tryEvaluate for constant exprs. by Anders Carlsson · 16 years ago
  46. f2878e5 Fixed bugzilla bug# 3095 related to code gen. for @synchronized. by Fariborz Jahanian · 16 years ago
  47. 2ab1968 Fields of ivars of struct types are considered ivars by Fariborz Jahanian · 16 years ago
  48. 4e8a9e8 reapply the (corrected) patch to use the new llvm intrinsics for memcpy/memmove etc. by Chris Lattner · 16 years ago
  49. d677776 temporarily revert Sangiv's patch. by Chris Lattner · 16 years ago
  50. 8d668a4 mem[cpy,set,move] intrinsics are now overloaded. by Sanjiv Gupta · 16 years ago
  51. bd71be4 Consolidated @try and @synchronize into a single code gen. method. by Fariborz Jahanian · 16 years ago
  52. d1cc804 Support generation of objc_assign_ivar for ivar write-barriers. by Fariborz Jahanian · 16 years ago
  53. 7eda836 Introducing objc_assign_ivar to clang. by Fariborz Jahanian · 16 years ago
  54. 80b0b42 Added a test case for __weak field decls. Change SetVarDeclObjCAttribute by Fariborz Jahanian · 16 years ago
  55. 92e62b0 Rename IdentifierInfo::isName to ::isStr. Use a nifty trick by Chris Lattner · 16 years ago
  56. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 16 years ago
  57. 0c43f26 More of objective-c's gc code-gen. Treat objective-c by Fariborz Jahanian · 16 years ago
  58. dbd32c2 Few more changes due to Daniel's feedback. by Fariborz Jahanian · 16 years ago
  59. 371d16f Add spec ref to comment. by Daniel Dunbar · 16 years ago
  60. ed3849b Fix redundant load of bit-fields on assignment (to get the updated by Daniel Dunbar · 16 years ago
  61. 8fbc154 Pointer width for PIC16 is 16 bits. Modify getMemCpy, getMemMove and getMemSet accordingly. by Sanjiv Gupta · 16 years ago
  62. f089551 fix save-o by Chris Lattner · 16 years ago
  63. 8657322 simplify by Chris Lattner · 16 years ago
  64. 0293d54 Discard unused runtime function declarations (for readability). by Daniel Dunbar · 16 years ago
  65. 5862650 Generate strong write barriers for __strong objects. by Fariborz Jahanian · 16 years ago
  66. 3e283e3 Patch for generation of weak write barriers for objc __weak objects. by Fariborz Jahanian · 16 years ago
  67. 6dc2317 Generate objc_read_weak for __weak objc loads. by Fariborz Jahanian · 16 years ago
  68. 6d657c4 Some basic support toward objective-c's GC code gen. by Fariborz Jahanian · 16 years ago
  69. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  70. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  71. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  72. 7b30b1c A few corrections to the expr constant work. Not enabled at the moment. by Eli Friedman · 16 years ago
  73. aa43256 More expr constant work. (Off by default). by Anders Carlsson · 16 years ago
  74. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 16 years ago
  75. 5ea7d07 More constant expr work. by Anders Carlsson · 16 years ago
  76. 531a550 daniel prefers completed thoughts. by Chris Lattner · 16 years ago
  77. 10cac6f Start implementing support for @synchonized with the darwin ObjC API. by Chris Lattner · 16 years ago
  78. 5a9a457 Check in code that uses tryEvaluate for emitting constant exprs (not used yet). by Anders Carlsson · 16 years ago
  79. e3daa76 Handle padding in the constant CFString struct. Fixes PR3046. by Anders Carlsson · 16 years ago
  80. d114ade Use IgnoreParenCasts. No functionality change. by Anders Carlsson · 16 years ago
  81. 1385f8e Fix silly bug spotted by Daniel Dunbar by Anders Carlsson · 16 years ago
  82. 0b685a5 Handle complex return values. by Anders Carlsson · 16 years ago
  83. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  84. f3edc2f Easy IRgen improvement for bitfields, don't emit x >> 0. by Daniel Dunbar · 16 years ago
  85. c22d665 Supply finished flag to EmitBlock for common statements which use by Daniel Dunbar · 16 years ago
  86. 9615ecb Normalize many BasicBlock names. by Daniel Dunbar · 16 years ago
  87. a0c21a8 Add IsFinished arg to EmitBlock. by Daniel Dunbar · 16 years ago
  88. 781d7ca For if blocks with no else, name the join block ifend instead of the by Daniel Dunbar · 16 years ago
  89. 36bc14c Quick fix for crash in IRgen when we can tryEvaluate a condition to by Daniel Dunbar · 16 years ago
  90. 8787530 Start a README.txt of possible optimizations to do in IRgen. by Daniel Dunbar · 16 years ago
  91. 09b1489 Handle ?: in EmitBranchOnBoolExpr. by Daniel Dunbar · 16 years ago
  92. be65abc Rename ?: operator blocks to cond.true and cond.false (I don't know by Daniel Dunbar · 16 years ago
  93. 4bc0455 Comment/indentation fix. by Daniel Dunbar · 16 years ago
  94. 9802a51 Lower ?: into select when the selected values are cheap and side-effect-free. by Chris Lattner · 16 years ago
  95. f7b5ea9 emit better codegen for ||/&&, shrinking expr.ll by another 240 lines. by Chris Lattner · 16 years ago
  96. 20eb09d use ConstantFoldsToSimpleInteger instead of code emission to do by Chris Lattner · 16 years ago
  97. 0912425 IRgen improvements on unreachable code: by Daniel Dunbar · 16 years ago
  98. 552f4c4 Handle Unary ! in EmitBranchOnBoolExpr, so that we can efficiently by Chris Lattner · 16 years ago
  99. 035cf42 Use EmitBranchOnBoolExpr in VisitConditionalOperator. This by Chris Lattner · 16 years ago
  100. 31a0984 Move EmitBranchOnBoolExpr and ConstantFoldsToSimpleInteger to by Chris Lattner · 16 years ago