1. c1debf3 Some code simplification. ir gen for gc'able array of objects in objc. by Fariborz Jahanian · 16 years ago
  2. 6ec3668 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 16 years ago
  3. 4fd83ea Some refactoring and simplificaiotn of objc's gc ir gen. by Fariborz Jahanian · 16 years ago
  4. 5934e75 Start generating gc'able code using the new objc gc type attributes. by Fariborz Jahanian · 16 years ago
  5. ba372b8 Cleanup objc's gc attributes code no longer needed. by Fariborz Jahanian · 16 years ago
  6. bb76773 80-cols. by Daniel Dunbar · 16 years ago
  7. ef2abfe Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. by Daniel Dunbar · 16 years ago
  8. 1bd885e fix volatile handling with ExtVectorElementExpr, so that we by Chris Lattner · 16 years ago
  9. 2140e90 introduce and use a new ExtVectorElementExpr::isArrow method, at Eli's suggestion by Chris Lattner · 16 years ago
  10. 73525de enhance ExtVectorElementExpr to allow V->xxyy to work like (*V).xxyy by Chris Lattner · 16 years ago
  11. 3c385e5 Add hook to add attributes to function declarations that we know by Douglas Gregor · 16 years ago
  12. 3e41d60 Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 16 years ago
  13. 5f2bfd4 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 16 years ago
  14. acfde80 Add support for generating block call expressions. by Anders Carlsson · 16 years ago
  15. 5b5c9ef Support IRgen of va_arg of structure as l-value. by Daniel Dunbar · 16 years ago
  16. f63aa3f Some refactoring of Ivar offset code gen. by Fariborz Jahanian · 16 years ago
  17. 9d9cc87 Add util Emit{LoadOf,StoreTo}Scalar methods to encapsulate conversion by Daniel Dunbar · 16 years ago
  18. 13e8173 Pull CodeGenFunction::GetUndefRValue() out of EmitUnsupportedRValue. by Daniel Dunbar · 16 years ago
  19. 598d3f6 ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  20. 45012a7 objc2's ir-gen for nonfragile ivar access. by Fariborz Jahanian · 16 years ago
  21. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  22. 88b5396 More ABI API cleanup. by Daniel Dunbar · 16 years ago
  23. bb36d33 ABI handling API changes. by Daniel Dunbar · 16 years ago
  24. 0bb2036 Refactored code gen for ivar access in preparation for by Fariborz Jahanian · 16 years ago
  25. 6fe7c8a Vector codegen improvements by Nate Begeman · 16 years ago
  26. 35c3329 Patch to implement code gen for aggrgate-valued property used by Fariborz Jahanian · 16 years ago
  27. 8fa73ed Implement EmitUnsupportedRValue to generate an appropriately typed RValue. by Daniel Dunbar · 16 years ago
  28. ce1d38b Give "unsupported" error on calls through block pointers instead of crashes. by Daniel Dunbar · 16 years ago
  29. 1a49af9 Add QualifiedDeclRefExpr, which retains additional source-location by Douglas Gregor · 16 years ago
  30. 6183a99 Add ASTContext::getBaseElementType and use it in CodeGenFunction::EmitArraySubscriptExpr. by Anders Carlsson · 16 years ago
  31. 8b33c08 Handle VLA indexing by Anders Carlsson · 16 years ago
  32. 86f1940 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  33. efc4c4b Removed a slot in ObjCMemRegExpr used in code gen which did not belong there. by Fariborz Jahanian · 16 years ago
  34. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  35. 670a62c Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  36. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  37. 43f4470 Implemented ir-gen for 'implicit' properties using the new AST nodes. by Fariborz Jahanian · 16 years ago
  38. 2ab1968 Fields of ivars of struct types are considered ivars by Fariborz Jahanian · 16 years ago
  39. d1cc804 Support generation of objc_assign_ivar for ivar write-barriers. by Fariborz Jahanian · 16 years ago
  40. 80b0b42 Added a test case for __weak field decls. Change SetVarDeclObjCAttribute by Fariborz Jahanian · 16 years ago
  41. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 16 years ago
  42. 0c43f26 More of objective-c's gc code-gen. Treat objective-c by Fariborz Jahanian · 16 years ago
  43. dbd32c2 Few more changes due to Daniel's feedback. by Fariborz Jahanian · 16 years ago
  44. ed3849b Fix redundant load of bit-fields on assignment (to get the updated by Daniel Dunbar · 16 years ago
  45. 5862650 Generate strong write barriers for __strong objects. by Fariborz Jahanian · 16 years ago
  46. 3e283e3 Patch for generation of weak write barriers for objc __weak objects. by Fariborz Jahanian · 16 years ago
  47. 6dc2317 Generate objc_read_weak for __weak objc loads. by Fariborz Jahanian · 16 years ago
  48. 6d657c4 Some basic support toward objective-c's GC code gen. by Fariborz Jahanian · 16 years ago
  49. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  50. f3edc2f Easy IRgen improvement for bitfields, don't emit x >> 0. by Daniel Dunbar · 16 years ago
  51. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago
  52. 961b03c Emit more descriptive unsupported error message on dot-syntax use of super. by Daniel Dunbar · 16 years ago
  53. 662b71e Lift CodeGenFunction::EmitPredefinedFunctioName out of EmitPredefinedLValue. by Daniel Dunbar · 16 years ago
  54. 29e0bcc Refactor some CodeGen functionality: by Daniel Dunbar · 16 years ago
  55. 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
  56. 17b708d Move ABI specific code for functions / calls to CGCall.cpp: by Daniel Dunbar · 16 years ago
  57. 46f45b9 Change CodeGen to emit calls using (RValue,Type) list: by Daniel Dunbar · 16 years ago
  58. 0dbe227 Refactor parameter attribute handling: by Daniel Dunbar · 16 years ago
  59. 80e62c2 Implement codegen of aggregates as lvalues in binary expressions, by Daniel Dunbar · 16 years ago
  60. 7f8ea5c Add Objective-C property setter support. by Daniel Dunbar · 16 years ago
  61. 19cd87e Refactor handling of calls: by Daniel Dunbar · 16 years ago
  62. 85c59ed Add special "property reference" CodeGen::LValue type for emitting by Daniel Dunbar · 16 years ago
  63. 6ba82a4 Support __PRETTY_FUNCTION__ and friends in Obj-C methods. by Daniel Dunbar · 16 years ago
  64. 29b7e50 Make code generation of ivar ref exprs more like member exprs. by Anders Carlsson · 16 years ago
  65. 0a04d77 Implement Obj-C ivar references to aggregates. by Daniel Dunbar · 16 years ago
  66. 14c80b7 NeXT: Fix message sends which return structures. by Daniel Dunbar · 16 years ago
  67. 8f2926b Trim CGObjCRuntime::GenerateMessageSend[Super] by Daniel Dunbar · 16 years ago
  68. 488e993 Change WarnUnsupported to ErrorUnsupported (in name and in practice). by Daniel Dunbar · 16 years ago
  69. 6143293 Add GetAddrOfConstantCString method by Daniel Dunbar · 16 years ago
  70. af2f62c Change ObjCRuntime GenerateProtocol[Ref] methods to take by Daniel Dunbar · 16 years ago
  71. 208ff5e Change CodeGenModule to only create ObjC runtime for ObjC files by Daniel Dunbar · 16 years ago
  72. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  73. c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
  74. de7fb84 More #include cleaning - Remove internal uses of AST.h by Daniel Dunbar · 16 years ago
  75. 1e04976 Back out r54608 (inline string literals were getting an extra '\0') by Daniel Dunbar · 16 years ago
  76. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  77. 10e3ded Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
  78. c63a1f2 by Chris Lattner · 16 years ago
  79. 05d2fb4 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
  80. bd012ff Rework codegen emission of globals - No (intended) functionality change. by Daniel Dunbar · 16 years ago
  81. 9619662 remove uses of QualType::getCanonicalType() from codegen for PR2189 by Chris Lattner · 16 years ago
  82. b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
  83. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  84. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 16 years ago
  85. 1e692ac Basic support for volatile loads and stores. Stores the volatile by Eli Friedman · 16 years ago
  86. ff4a2d9 First cut at setting attributes for functions and calls; this puts us by Eli Friedman · 16 years ago
  87. bfe08e0 Minor cleanup to use the ConvertTypeForMem helper. by Eli Friedman · 16 years ago
  88. 1e86b34 Rearrange EmitLValueForField a bit to work properly for _Bool bitfields by Eli Friedman · 16 years ago
  89. d79a726 Change uses of llvm::Type::isFirstClassType to use the new by Dan Gohman · 16 years ago
  90. 4f8d123 Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 16 years ago
  91. 788d571 Remove an unnecessary/buggy if check. Ran into this with some other by Eli Friedman · 16 years ago
  92. 922696f Fix the emission of expressions like char a[10] = "asdf"; previously, by Eli Friedman · 16 years ago
  93. 316bb1b Fix support for _Bool bitfields. The issue is that the bitfield width by Eli Friedman · 16 years ago
  94. 06e863f Add codegen support for block-level compound literals. by Eli Friedman · 16 years ago
  95. 3b8d116 Remove AST dependency on VMCore by switching ExtVectorElementExpr off Constant. by Nate Begeman · 16 years ago
  96. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 16 years ago
  97. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  98. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
  99. 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
  100. c8aa5f1 Codegen assignment to self correctly, patch by David Chisnall! by Chris Lattner · 17 years ago