1. f146684 fix CreateTempAlloca to not set a name on the alloca for temporaries by Chris Lattner · 15 years ago
  2. e21c4b8 simplify and comment some code better. Make BindRuntimeGlobals by Chris Lattner · 15 years ago
  3. 40f9292 fix the more complex cases by actually codegen'ing the right expr :) by Chris Lattner · 16 years ago
  4. 75dfeda add codegen support for casting an element to a union. by Chris Lattner · 16 years ago
  5. c3953a6 teach codegen to handle noop casts as lvalues. by Chris Lattner · 16 years ago
  6. 7976932 Minor cleanup for choose expressions: add a helper that returns the by Eli Friedman · 16 years ago
  7. dab514f Improved ABI compliance for __block variables. No testcases yet as we by Mike Stump · 16 years ago
  8. 31937a5 Push checking down, also, give the user a hit as to which part of the by Mike Stump · 16 years ago
  9. a99038c First cut CodeGen support for __block variables. by Mike Stump · 16 years ago
  10. eaf2bb8 first wave of fixes for @encode sema support. This is part of PR3648. by Chris Lattner · 16 years ago
  11. 207c521 We should not generate __weak write barrier on indirect reference by Fariborz Jahanian · 16 years ago
  12. 44baa8a More objc gc work. Match gcc's treatment of ivar access by Fariborz Jahanian · 16 years ago
  13. 643887a local array of objects are non-gc'able. by Fariborz Jahanian · 16 years ago
  14. 4f676ed Handle case of none gc'able objects regardless of their type. by Fariborz Jahanian · 16 years ago
  15. dd7b897 Shorten; no functionality change. by Daniel Dunbar · 16 years ago
  16. c0ef9f5 Set call attribute for direct calls (i.e. noreturn). by Daniel Dunbar · 16 years ago
  17. 4f54526 More objc gc's ir-gen fixes. by Fariborz Jahanian · 16 years ago
  18. a223cca More objc's gc ir-gen stuff. by Fariborz Jahanian · 16 years ago
  19. 167fdc1 Generate the conservative objc gc's API for now. by Fariborz Jahanian · 16 years ago
  20. c1debf3 Some code simplification. ir gen for gc'able array of objects in objc. by Fariborz Jahanian · 16 years ago
  21. 6ec3668 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 16 years ago
  22. 4fd83ea Some refactoring and simplificaiotn of objc's gc ir gen. by Fariborz Jahanian · 16 years ago
  23. 5934e75 Start generating gc'able code using the new objc gc type attributes. by Fariborz Jahanian · 16 years ago
  24. ba372b8 Cleanup objc's gc attributes code no longer needed. by Fariborz Jahanian · 16 years ago
  25. bb76773 80-cols. by Daniel Dunbar · 16 years ago
  26. ef2abfe Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. by Daniel Dunbar · 16 years ago
  27. 1bd885e fix volatile handling with ExtVectorElementExpr, so that we by Chris Lattner · 16 years ago
  28. 2140e90 introduce and use a new ExtVectorElementExpr::isArrow method, at Eli's suggestion by Chris Lattner · 16 years ago
  29. 73525de enhance ExtVectorElementExpr to allow V->xxyy to work like (*V).xxyy by Chris Lattner · 16 years ago
  30. 3c385e5 Add hook to add attributes to function declarations that we know by Douglas Gregor · 16 years ago
  31. 3e41d60 Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 16 years ago
  32. 5f2bfd4 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 16 years ago
  33. acfde80 Add support for generating block call expressions. by Anders Carlsson · 16 years ago
  34. 5b5c9ef Support IRgen of va_arg of structure as l-value. by Daniel Dunbar · 16 years ago
  35. f63aa3f Some refactoring of Ivar offset code gen. by Fariborz Jahanian · 16 years ago
  36. 9d9cc87 Add util Emit{LoadOf,StoreTo}Scalar methods to encapsulate conversion by Daniel Dunbar · 16 years ago
  37. 13e8173 Pull CodeGenFunction::GetUndefRValue() out of EmitUnsupportedRValue. by Daniel Dunbar · 16 years ago
  38. 598d3f6 ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  39. 45012a7 objc2's ir-gen for nonfragile ivar access. by Fariborz Jahanian · 16 years ago
  40. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  41. 88b5396 More ABI API cleanup. by Daniel Dunbar · 16 years ago
  42. bb36d33 ABI handling API changes. by Daniel Dunbar · 16 years ago
  43. 0bb2036 Refactored code gen for ivar access in preparation for by Fariborz Jahanian · 16 years ago
  44. 6fe7c8a Vector codegen improvements by Nate Begeman · 16 years ago
  45. 35c3329 Patch to implement code gen for aggrgate-valued property used by Fariborz Jahanian · 16 years ago
  46. 8fa73ed Implement EmitUnsupportedRValue to generate an appropriately typed RValue. by Daniel Dunbar · 16 years ago
  47. ce1d38b Give "unsupported" error on calls through block pointers instead of crashes. by Daniel Dunbar · 16 years ago
  48. 1a49af9 Add QualifiedDeclRefExpr, which retains additional source-location by Douglas Gregor · 16 years ago
  49. 6183a99 Add ASTContext::getBaseElementType and use it in CodeGenFunction::EmitArraySubscriptExpr. by Anders Carlsson · 16 years ago
  50. 8b33c08 Handle VLA indexing by Anders Carlsson · 16 years ago
  51. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  52. efc4c4b Removed a slot in ObjCMemRegExpr used in code gen which did not belong there. by Fariborz Jahanian · 16 years ago
  53. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  54. 670a62c Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  55. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  56. 43f4470 Implemented ir-gen for 'implicit' properties using the new AST nodes. by Fariborz Jahanian · 16 years ago
  57. 2ab1968 Fields of ivars of struct types are considered ivars by Fariborz Jahanian · 16 years ago
  58. d1cc804 Support generation of objc_assign_ivar for ivar write-barriers. by Fariborz Jahanian · 16 years ago
  59. 80b0b42 Added a test case for __weak field decls. Change SetVarDeclObjCAttribute by Fariborz Jahanian · 16 years ago
  60. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 16 years ago
  61. 0c43f26 More of objective-c's gc code-gen. Treat objective-c by Fariborz Jahanian · 16 years ago
  62. dbd32c2 Few more changes due to Daniel's feedback. by Fariborz Jahanian · 16 years ago
  63. ed3849b Fix redundant load of bit-fields on assignment (to get the updated by Daniel Dunbar · 16 years ago
  64. 5862650 Generate strong write barriers for __strong objects. by Fariborz Jahanian · 16 years ago
  65. 3e283e3 Patch for generation of weak write barriers for objc __weak objects. by Fariborz Jahanian · 16 years ago
  66. 6dc2317 Generate objc_read_weak for __weak objc loads. by Fariborz Jahanian · 16 years ago
  67. 6d657c4 Some basic support toward objective-c's GC code gen. by Fariborz Jahanian · 16 years ago
  68. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  69. f3edc2f Easy IRgen improvement for bitfields, don't emit x >> 0. by Daniel Dunbar · 16 years ago
  70. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago
  71. 961b03c Emit more descriptive unsupported error message on dot-syntax use of super. by Daniel Dunbar · 16 years ago
  72. 662b71e Lift CodeGenFunction::EmitPredefinedFunctioName out of EmitPredefinedLValue. by Daniel Dunbar · 16 years ago
  73. 29e0bcc Refactor some CodeGen functionality: by Daniel Dunbar · 16 years ago
  74. 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
  75. 17b708d Move ABI specific code for functions / calls to CGCall.cpp: by Daniel Dunbar · 16 years ago
  76. 46f45b9 Change CodeGen to emit calls using (RValue,Type) list: by Daniel Dunbar · 16 years ago
  77. 0dbe227 Refactor parameter attribute handling: by Daniel Dunbar · 16 years ago
  78. 80e62c2 Implement codegen of aggregates as lvalues in binary expressions, by Daniel Dunbar · 16 years ago
  79. 7f8ea5c Add Objective-C property setter support. by Daniel Dunbar · 16 years ago
  80. 19cd87e Refactor handling of calls: by Daniel Dunbar · 16 years ago
  81. 85c59ed Add special "property reference" CodeGen::LValue type for emitting by Daniel Dunbar · 16 years ago
  82. 6ba82a4 Support __PRETTY_FUNCTION__ and friends in Obj-C methods. by Daniel Dunbar · 16 years ago
  83. 29b7e50 Make code generation of ivar ref exprs more like member exprs. by Anders Carlsson · 16 years ago
  84. 0a04d77 Implement Obj-C ivar references to aggregates. by Daniel Dunbar · 16 years ago
  85. 14c80b7 NeXT: Fix message sends which return structures. by Daniel Dunbar · 16 years ago
  86. 8f2926b Trim CGObjCRuntime::GenerateMessageSend[Super] by Daniel Dunbar · 16 years ago
  87. 488e993 Change WarnUnsupported to ErrorUnsupported (in name and in practice). by Daniel Dunbar · 16 years ago
  88. 6143293 Add GetAddrOfConstantCString method by Daniel Dunbar · 16 years ago
  89. af2f62c Change ObjCRuntime GenerateProtocol[Ref] methods to take by Daniel Dunbar · 16 years ago
  90. 208ff5e Change CodeGenModule to only create ObjC runtime for ObjC files by Daniel Dunbar · 16 years ago
  91. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  92. c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
  93. de7fb84 More #include cleaning - Remove internal uses of AST.h by Daniel Dunbar · 16 years ago
  94. 1e04976 Back out r54608 (inline string literals were getting an extra '\0') by Daniel Dunbar · 16 years ago
  95. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  96. 10e3ded Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
  97. c63a1f2 by Chris Lattner · 16 years ago
  98. 05d2fb4 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
  99. bd012ff Rework codegen emission of globals - No (intended) functionality change. by Daniel Dunbar · 16 years ago
  100. 9619662 remove uses of QualType::getCanonicalType() from codegen for PR2189 by Chris Lattner · 16 years ago