1. 6545994 fix PR4067: [Linux kernel] cannot aggregate codegen stmtexpr as lvalue by Chris Lattner · 16 years ago
  2. 2a86625 Fix pointer addressing and array subscripting of Objective-C interface by Daniel Dunbar · 16 years ago
  3. 7cabee5 Clang part of r69947. Reverting back 69574 as it is no longer needed. by Sanjiv Gupta · 16 years ago
  4. b5437d2 the logic for computing __func__ and friends is really broken: by Chris Lattner · 16 years ago
  5. 2a03192 Make ObjCInterfaceDecl's const in some more places. by Daniel Dunbar · 16 years ago
  6. f1c97eb use of predefined identifiers like __func__ at global scope warn in sema, by Chris Lattner · 16 years ago
  7. 525c9b7 Kill ASTContext::[gs]etFieldForDecl, instead we just lookup things by Daniel Dunbar · 16 years ago
  8. 6bf2ae0 Remove LateBoundIVars() runtime interface, it is unused. by Daniel Dunbar · 16 years ago
  9. f3ef07c Use getAsPointerType instead of using getCanonicalType directly. by Daniel Dunbar · 16 years ago
  10. 26f074b tidy some code. by Chris Lattner · 16 years ago
  11. b14095a Implement basic code generation of constructor calls. We can now compile: by Anders Carlsson · 16 years ago
  12. aa771a8 Fixup whitespacing. by Mike Stump · 16 years ago
  13. f0c9083 Use hasAttr instead of getAttr for conditionals. by Mike Stump · 16 years ago
  14. 5466c7b Audit __private_extern__ handling. by Daniel Dunbar · 16 years ago
  15. f33651c Fixup CodeGen for __weak __block variables. Radar 6756266 by Mike Stump · 16 years ago
  16. b11fa0d Update to use hasAttr() instead of getAttr(). - No functionality change. by Daniel Dunbar · 16 years ago
  17. 782f397 Use the new EmitCallArgs function. No indented functionality change. by Anders Carlsson · 16 years ago
  18. 75c47a5 Pointer width on targets like PIC16 is 16-bit, while the valid index size to GEP is only 32 or 64. So promote index to 32 in such cases. by Sanjiv Gupta · 16 years ago
  19. 8ac67a7 Remove some dead code. by Anders Carlsson · 16 years ago
  20. 6ab187a Various fixes to symbols used for Obj-C x86_64 metadata. by Daniel Dunbar · 16 years ago
  21. 774e7c6 Add support for calling C++ member functions. by Anders Carlsson · 16 years ago
  22. 9034558 Support member reference on ?: of struct type. by Daniel Dunbar · 16 years ago
  23. f146684 fix CreateTempAlloca to not set a name on the alloca for temporaries by Chris Lattner · 16 years ago
  24. e21c4b8 simplify and comment some code better. Make BindRuntimeGlobals by Chris Lattner · 16 years ago
  25. 40f9292 fix the more complex cases by actually codegen'ing the right expr :) by Chris Lattner · 16 years ago
  26. 75dfeda add codegen support for casting an element to a union. by Chris Lattner · 16 years ago
  27. c3953a6 teach codegen to handle noop casts as lvalues. by Chris Lattner · 16 years ago
  28. 7976932 Minor cleanup for choose expressions: add a helper that returns the by Eli Friedman · 16 years ago
  29. dab514f Improved ABI compliance for __block variables. No testcases yet as we by Mike Stump · 16 years ago
  30. 31937a5 Push checking down, also, give the user a hit as to which part of the by Mike Stump · 16 years ago
  31. a99038c First cut CodeGen support for __block variables. by Mike Stump · 16 years ago
  32. eaf2bb8 first wave of fixes for @encode sema support. This is part of PR3648. by Chris Lattner · 16 years ago
  33. 207c521 We should not generate __weak write barrier on indirect reference by Fariborz Jahanian · 16 years ago
  34. 44baa8a More objc gc work. Match gcc's treatment of ivar access by Fariborz Jahanian · 16 years ago
  35. 643887a local array of objects are non-gc'able. by Fariborz Jahanian · 16 years ago
  36. 4f676ed Handle case of none gc'able objects regardless of their type. by Fariborz Jahanian · 16 years ago
  37. dd7b897 Shorten; no functionality change. by Daniel Dunbar · 16 years ago
  38. c0ef9f5 Set call attribute for direct calls (i.e. noreturn). by Daniel Dunbar · 16 years ago
  39. 4f54526 More objc gc's ir-gen fixes. by Fariborz Jahanian · 16 years ago
  40. a223cca More objc's gc ir-gen stuff. by Fariborz Jahanian · 16 years ago
  41. 167fdc1 Generate the conservative objc gc's API for now. by Fariborz Jahanian · 16 years ago
  42. c1debf3 Some code simplification. ir gen for gc'able array of objects in objc. by Fariborz Jahanian · 16 years ago
  43. 6ec3668 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 16 years ago
  44. 4fd83ea Some refactoring and simplificaiotn of objc's gc ir gen. by Fariborz Jahanian · 16 years ago
  45. 5934e75 Start generating gc'able code using the new objc gc type attributes. by Fariborz Jahanian · 16 years ago
  46. ba372b8 Cleanup objc's gc attributes code no longer needed. by Fariborz Jahanian · 16 years ago
  47. bb76773 80-cols. by Daniel Dunbar · 16 years ago
  48. ef2abfe Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. by Daniel Dunbar · 16 years ago
  49. 1bd885e fix volatile handling with ExtVectorElementExpr, so that we by Chris Lattner · 16 years ago
  50. 2140e90 introduce and use a new ExtVectorElementExpr::isArrow method, at Eli's suggestion by Chris Lattner · 16 years ago
  51. 73525de enhance ExtVectorElementExpr to allow V->xxyy to work like (*V).xxyy by Chris Lattner · 16 years ago
  52. 3c385e5 Add hook to add attributes to function declarations that we know by Douglas Gregor · 16 years ago
  53. 3e41d60 Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 16 years ago
  54. 5f2bfd4 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 16 years ago
  55. acfde80 Add support for generating block call expressions. by Anders Carlsson · 16 years ago
  56. 5b5c9ef Support IRgen of va_arg of structure as l-value. by Daniel Dunbar · 16 years ago
  57. f63aa3f Some refactoring of Ivar offset code gen. by Fariborz Jahanian · 16 years ago
  58. 9d9cc87 Add util Emit{LoadOf,StoreTo}Scalar methods to encapsulate conversion by Daniel Dunbar · 16 years ago
  59. 13e8173 Pull CodeGenFunction::GetUndefRValue() out of EmitUnsupportedRValue. by Daniel Dunbar · 16 years ago
  60. 598d3f6 ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  61. 45012a7 objc2's ir-gen for nonfragile ivar access. by Fariborz Jahanian · 16 years ago
  62. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  63. 88b5396 More ABI API cleanup. by Daniel Dunbar · 16 years ago
  64. bb36d33 ABI handling API changes. by Daniel Dunbar · 16 years ago
  65. 0bb2036 Refactored code gen for ivar access in preparation for by Fariborz Jahanian · 16 years ago
  66. 6fe7c8a Vector codegen improvements by Nate Begeman · 16 years ago
  67. 35c3329 Patch to implement code gen for aggrgate-valued property used by Fariborz Jahanian · 16 years ago
  68. 8fa73ed Implement EmitUnsupportedRValue to generate an appropriately typed RValue. by Daniel Dunbar · 16 years ago
  69. ce1d38b Give "unsupported" error on calls through block pointers instead of crashes. by Daniel Dunbar · 16 years ago
  70. 1a49af9 Add QualifiedDeclRefExpr, which retains additional source-location by Douglas Gregor · 16 years ago
  71. 6183a99 Add ASTContext::getBaseElementType and use it in CodeGenFunction::EmitArraySubscriptExpr. by Anders Carlsson · 16 years ago
  72. 8b33c08 Handle VLA indexing by Anders Carlsson · 16 years ago
  73. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  74. efc4c4b Removed a slot in ObjCMemRegExpr used in code gen which did not belong there. by Fariborz Jahanian · 16 years ago
  75. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  76. 670a62c Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  77. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  78. 43f4470 Implemented ir-gen for 'implicit' properties using the new AST nodes. by Fariborz Jahanian · 16 years ago
  79. 2ab1968 Fields of ivars of struct types are considered ivars by Fariborz Jahanian · 16 years ago
  80. d1cc804 Support generation of objc_assign_ivar for ivar write-barriers. by Fariborz Jahanian · 16 years ago
  81. 80b0b42 Added a test case for __weak field decls. Change SetVarDeclObjCAttribute by Fariborz Jahanian · 16 years ago
  82. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 16 years ago
  83. 0c43f26 More of objective-c's gc code-gen. Treat objective-c by Fariborz Jahanian · 16 years ago
  84. dbd32c2 Few more changes due to Daniel's feedback. by Fariborz Jahanian · 16 years ago
  85. ed3849b Fix redundant load of bit-fields on assignment (to get the updated by Daniel Dunbar · 16 years ago
  86. 5862650 Generate strong write barriers for __strong objects. by Fariborz Jahanian · 16 years ago
  87. 3e283e3 Patch for generation of weak write barriers for objc __weak objects. by Fariborz Jahanian · 16 years ago
  88. 6dc2317 Generate objc_read_weak for __weak objc loads. by Fariborz Jahanian · 16 years ago
  89. 6d657c4 Some basic support toward objective-c's GC code gen. by Fariborz Jahanian · 16 years ago
  90. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  91. f3edc2f Easy IRgen improvement for bitfields, don't emit x >> 0. by Daniel Dunbar · 16 years ago
  92. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago
  93. 961b03c Emit more descriptive unsupported error message on dot-syntax use of super. by Daniel Dunbar · 16 years ago
  94. 662b71e Lift CodeGenFunction::EmitPredefinedFunctioName out of EmitPredefinedLValue. by Daniel Dunbar · 16 years ago
  95. 29e0bcc Refactor some CodeGen functionality: by Daniel Dunbar · 16 years ago
  96. e3a09e6 Implement CodeGen support for the 'CXXConditionDeclExpr' expression node, which represents a 'condition' declaration, e.g: "if (int x=0) {...}". by Argyrios Kyrtzidis · 16 years ago
  97. 17b708d Move ABI specific code for functions / calls to CGCall.cpp: by Daniel Dunbar · 16 years ago
  98. 46f45b9 Change CodeGen to emit calls using (RValue,Type) list: by Daniel Dunbar · 16 years ago
  99. 0dbe227 Refactor parameter attribute handling: by Daniel Dunbar · 16 years ago
  100. 80e62c2 Implement codegen of aggregates as lvalues in binary expressions, by Daniel Dunbar · 16 years ago