1. 077bf5e Rename Selector::getName() to Selector::getAsString(), and add by Chris Lattner · 17 years ago
  2. ef5a66d An expression is not foldable if it can't be fully evaluated. Fixes PR3060 by Anders Carlsson · 17 years ago
  3. 43f4470 Implemented ir-gen for 'implicit' properties using the new AST nodes. by Fariborz Jahanian · 17 years ago
  4. 51fe996 Use Expr::Evaluate for case statements. Fixes PR2525 by Anders Carlsson · 17 years ago
  5. 5daf570 New AST node to access "implicit" setter/getter using property dor syntax. by Fariborz Jahanian · 17 years ago
  6. bcf6225 Use tryEvaluate for constant exprs. by Anders Carlsson · 17 years ago
  7. f2878e5 Fixed bugzilla bug# 3095 related to code gen. for @synchronized. by Fariborz Jahanian · 17 years ago
  8. 2ab1968 Fields of ivars of struct types are considered ivars by Fariborz Jahanian · 17 years ago
  9. 4e8a9e8 reapply the (corrected) patch to use the new llvm intrinsics for memcpy/memmove etc. by Chris Lattner · 17 years ago
  10. d677776 temporarily revert Sangiv's patch. by Chris Lattner · 17 years ago
  11. 8d668a4 mem[cpy,set,move] intrinsics are now overloaded. by Sanjiv Gupta · 17 years ago
  12. bd71be4 Consolidated @try and @synchronize into a single code gen. method. by Fariborz Jahanian · 17 years ago
  13. d1cc804 Support generation of objc_assign_ivar for ivar write-barriers. by Fariborz Jahanian · 17 years ago
  14. 7eda836 Introducing objc_assign_ivar to clang. by Fariborz Jahanian · 17 years ago
  15. 80b0b42 Added a test case for __weak field decls. Change SetVarDeclObjCAttribute by Fariborz Jahanian · 17 years ago
  16. 92e62b0 Rename IdentifierInfo::isName to ::isStr. Use a nifty trick by Chris Lattner · 17 years ago
  17. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 17 years ago
  18. 0c43f26 More of objective-c's gc code-gen. Treat objective-c by Fariborz Jahanian · 17 years ago
  19. dbd32c2 Few more changes due to Daniel's feedback. by Fariborz Jahanian · 17 years ago
  20. 371d16f Add spec ref to comment. by Daniel Dunbar · 17 years ago
  21. ed3849b Fix redundant load of bit-fields on assignment (to get the updated by Daniel Dunbar · 17 years ago
  22. 8fbc154 Pointer width for PIC16 is 16 bits. Modify getMemCpy, getMemMove and getMemSet accordingly. by Sanjiv Gupta · 17 years ago
  23. f089551 fix save-o by Chris Lattner · 17 years ago
  24. 8657322 simplify by Chris Lattner · 17 years ago
  25. 0293d54 Discard unused runtime function declarations (for readability). by Daniel Dunbar · 17 years ago
  26. 5862650 Generate strong write barriers for __strong objects. by Fariborz Jahanian · 17 years ago
  27. 3e283e3 Patch for generation of weak write barriers for objc __weak objects. by Fariborz Jahanian · 17 years ago
  28. 6dc2317 Generate objc_read_weak for __weak objc loads. by Fariborz Jahanian · 17 years ago
  29. 6d657c4 Some basic support toward objective-c's GC code gen. by Fariborz Jahanian · 17 years ago
  30. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 17 years ago
  31. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 17 years ago
  32. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 17 years ago
  33. 7b30b1c A few corrections to the expr constant work. Not enabled at the moment. by Eli Friedman · 17 years ago
  34. aa43256 More expr constant work. (Off by default). by Anders Carlsson · 17 years ago
  35. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 17 years ago
  36. 5ea7d07 More constant expr work. by Anders Carlsson · 17 years ago
  37. 531a550 daniel prefers completed thoughts. by Chris Lattner · 17 years ago
  38. 10cac6f Start implementing support for @synchonized with the darwin ObjC API. by Chris Lattner · 17 years ago
  39. 5a9a457 Check in code that uses tryEvaluate for emitting constant exprs (not used yet). by Anders Carlsson · 17 years ago
  40. e3daa76 Handle padding in the constant CFString struct. Fixes PR3046. by Anders Carlsson · 17 years ago
  41. d114ade Use IgnoreParenCasts. No functionality change. by Anders Carlsson · 17 years ago
  42. 1385f8e Fix silly bug spotted by Daniel Dunbar by Anders Carlsson · 17 years ago
  43. 0b685a5 Handle complex return values. by Anders Carlsson · 17 years ago
  44. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 17 years ago
  45. f3edc2f Easy IRgen improvement for bitfields, don't emit x >> 0. by Daniel Dunbar · 17 years ago
  46. c22d665 Supply finished flag to EmitBlock for common statements which use by Daniel Dunbar · 17 years ago
  47. 9615ecb Normalize many BasicBlock names. by Daniel Dunbar · 17 years ago
  48. a0c21a8 Add IsFinished arg to EmitBlock. by Daniel Dunbar · 17 years ago
  49. 781d7ca For if blocks with no else, name the join block ifend instead of the by Daniel Dunbar · 17 years ago
  50. 36bc14c Quick fix for crash in IRgen when we can tryEvaluate a condition to by Daniel Dunbar · 17 years ago
  51. 8787530 Start a README.txt of possible optimizations to do in IRgen. by Daniel Dunbar · 17 years ago
  52. 09b1489 Handle ?: in EmitBranchOnBoolExpr. by Daniel Dunbar · 17 years ago
  53. be65abc Rename ?: operator blocks to cond.true and cond.false (I don't know by Daniel Dunbar · 17 years ago
  54. 4bc0455 Comment/indentation fix. by Daniel Dunbar · 17 years ago
  55. 9802a51 Lower ?: into select when the selected values are cheap and side-effect-free. by Chris Lattner · 17 years ago
  56. f7b5ea9 emit better codegen for ||/&&, shrinking expr.ll by another 240 lines. by Chris Lattner · 17 years ago
  57. 20eb09d use ConstantFoldsToSimpleInteger instead of code emission to do by Chris Lattner · 17 years ago
  58. 0912425 IRgen improvements on unreachable code: by Daniel Dunbar · 17 years ago
  59. 552f4c4 Handle Unary ! in EmitBranchOnBoolExpr, so that we can efficiently by Chris Lattner · 17 years ago
  60. 035cf42 Use EmitBranchOnBoolExpr in VisitConditionalOperator. This by Chris Lattner · 17 years ago
  61. 31a0984 Move EmitBranchOnBoolExpr and ConstantFoldsToSimpleInteger to by Chris Lattner · 17 years ago
  62. 9bc47e2 Make emission of 'if' conditions much more sophisticated when we by Chris Lattner · 17 years ago
  63. 746e03e Clean up some code to use isZero instead of calling getZExtValue. by Chris Lattner · 17 years ago
  64. 1fef965 Use createBasicBlock here too. by Daniel Dunbar · 17 years ago
  65. 29ea672 Disable generation of basic block names in NDEBUG mode. by Daniel Dunbar · 17 years ago
  66. a448fb2 Rework IRgen invariant w.r.t. current insert point. by Daniel Dunbar · 17 years ago
  67. 5e08ad3 Change EmitBranch to always clear the insert point to clarify irgen invariants. by Daniel Dunbar · 17 years ago
  68. f5bd45c Emit debug region end in unified return block. by Daniel Dunbar · 17 years ago
  69. f1c9c09 Codegen support for fastcall & stdcall CC. Patch by Ilya Okonsky! by Anton Korobeynikov · 17 years ago
  70. c657e92 Try to not emit the dead side of ?: if the condition is a constant. by Chris Lattner · 17 years ago
  71. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 17 years ago
  72. d57a871 Add CodeGenFunction::EmitBranch. by Daniel Dunbar · 17 years ago
  73. 0946ccd short circuit && and || when possible. This substantially reduces by Chris Lattner · 17 years ago
  74. 62b72f6 Make codegen smart enough to not emit the dead side of an if whose by Chris Lattner · 17 years ago
  75. 3cc5c40 implement debug info for typeof() by Chris Lattner · 17 years ago
  76. 824e3bd Add CodeGenFunction::EmitDummyBlock for marking places where we make by Daniel Dunbar · 17 years ago
  77. f84dcda Remove CodeGenFunction::StartBlock. by Daniel Dunbar · 17 years ago
  78. 55e8742 Centralize basic block creation in CodeGenFunction::createBasicBlock. by Daniel Dunbar · 17 years ago
  79. 526d927 don't preserve names on IR instructions. This matches llvm-gcc's behavior and by Chris Lattner · 17 years ago
  80. f2528e0 Fix even more bugs in debug info support: by Chris Lattner · 17 years ago
  81. 9c85ba3 reimplement debug info generation in terms of DebugInfo.h instead of by Chris Lattner · 17 years ago
  82. ce179ab Support named operands in inline asm statements. by Anders Carlsson · 17 years ago
  83. 960627d Avoid redundant cast<>s / simplify type dispatch. by Daniel Dunbar · 17 years ago
  84. d7f6050 "Fix" PR3021, don't crash on generating record types when we can't by Daniel Dunbar · 17 years ago
  85. 21ef7ae LinkageSpecDecl is c++ specific, move it to DeclCXX by Chris Lattner · 17 years ago
  86. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 17 years ago
  87. ddf7cac Implement lowering of va_arg in clang directly. (This is 32-bit X86 only for now). by Anders Carlsson · 17 years ago
  88. d9641f8 Fix bug in va_copy by Anders Carlsson · 17 years ago
  89. 86cd8af privatize some methods. by Chris Lattner · 17 years ago
  90. 45d196b Move IRBuilder type definition to common file. - No functionality change. by Daniel Dunbar · 17 years ago
  91. 31fc07d Made the mechanism of defining preprocessor defs for maxint, ptrdiff_t, wchar by Sanjiv Gupta · 17 years ago
  92. 9881cf0 Debug info: Bug fix, function types should always include the return type. by Daniel Dunbar · 17 years ago
  93. bea06e4 Quick fix for PR2950, infinite loop generating debug info for by Daniel Dunbar · 17 years ago
  94. 3845f86 Formatting tweaks. - No functionality change. by Daniel Dunbar · 17 years ago
  95. 0c0e7a6 NeXT: Emit protocol objects lazily. by Daniel Dunbar · 17 years ago
  96. 6a0b984 Fix for PR2966: va_start/va_end use the *address* of the by Eli Friedman · 17 years ago
  97. 2149470 Don't run the verifier as part of IRgen, this is now down (per module) by Daniel Dunbar · 17 years ago
  98. af668b0 Add attribute always_inline support. by Daniel Dunbar · 17 years ago
  99. be20bb5 make codegen reject initializes with designators, like this: by Chris Lattner · 17 years ago
  100. d2f4e5e CMake: Builds and installs clang binary and libs (no docs yet). It by Oscar Fuentes · 17 years ago