1. 0d504c1 Remove unneeded EncodingRecordTypes argument to getObjCEncodingForType. by Daniel Dunbar · 16 years ago
  2. ee5a700 Adjust calls to APFloat conversion for new interface. by Dale Johannesen · 16 years ago
  3. 90df4b6 Avoid superfluous errors regarding variable-length arrays (casts). by Daniel Dunbar · 16 years ago
  4. 662174c8 Downgrade a number of FIXME asserts to ErrorUnsupported. - Notably VLAs by Daniel Dunbar · 16 years ago
  5. 85c59ed Add special "property reference" CodeGen::LValue type for emitting by Daniel Dunbar · 16 years ago
  6. 9c3fc70 Initial support for Obj-C dot-syntax for getters. by Daniel Dunbar · 16 years ago
  7. d1d66bc Change another is-a-pointer check to check in terms of LLVM type. by Daniel Dunbar · 16 years ago
  8. 270cc66 Do is-a-pointer checks in terms of LLVM types in by Daniel Dunbar · 16 years ago
  9. 7267f78 Add CodeGen support for CXXZeroInitValueExpr. by Argyrios Kyrtzidis · 16 years ago
  10. 0a04d77 Implement Obj-C ivar references to aggregates. by Daniel Dunbar · 16 years ago
  11. 8f2926b Trim CGObjCRuntime::GenerateMessageSend[Super] by Daniel Dunbar · 16 years ago
  12. ed7c618 Move all Obj-C runtime interaction into CodeGenFunction. by Daniel Dunbar · 16 years ago
  13. 54d1909 Add CodeGen support for AddrLabelExpr in initializers. by Daniel Dunbar · 16 years ago
  14. 488e993 Change WarnUnsupported to ErrorUnsupported (in name and in practice). by Daniel Dunbar · 16 years ago
  15. af2f62c Change ObjCRuntime GenerateProtocol[Ref] methods to take by Daniel Dunbar · 16 years ago
  16. 2271118 Drop Sender from GenerateMessageSend* by Daniel Dunbar · 16 years ago
  17. 98c5ead Protocol related tweaks by Daniel Dunbar · 16 years ago
  18. a008db1 Add @selector(...) codegen support. by Daniel Dunbar · 16 years ago
  19. 208ff5e Change CodeGenModule to only create ObjC runtime for ObjC files by Daniel Dunbar · 16 years ago
  20. de7fb84 More #include cleaning - Remove internal uses of AST.h by Daniel Dunbar · 16 years ago
  21. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  22. 85e3568 update to make IRBuilder API change. by Chris Lattner · 16 years ago
  23. 8c6f57c Fix CodeGen of pointer arithmetic in compound assignment statements. by Daniel Dunbar · 16 years ago
  24. 820b033 Bug fix, CodeGen of (void*) - (void*) was broken. - <rdar://problem/6122967> by Daniel Dunbar · 16 years ago
  25. 0ffb125 Add CodeGen support for indirect goto. by Daniel Dunbar · 16 years ago
  26. 9619662 remove uses of QualType::getCanonicalType() from codegen for PR2189 by Chris Lattner · 16 years ago
  27. 91d723d implement codegen support for labels at the end of stmtexprs. by Chris Lattner · 16 years ago
  28. 345f720 minor tidying, no functionality change. by Chris Lattner · 16 years ago
  29. 7a66d7b Generate vector compares in codegen by Nate Begeman · 16 years ago
  30. f31627f Fix a codegen crash on: by Chris Lattner · 16 years ago
  31. 8ee6a63 Add note to check what __alignof__ a function type should be. by Daniel Dunbar · 16 years ago
  32. 9140845 Prevent codegen crash on sizeof(<function type>), a gcc extension. by Daniel Dunbar · 16 years ago
  33. b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
  34. 9384c76 avoid a lot of unneeded selector processing work by passing around by Chris Lattner · 16 years ago
  35. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 16 years ago
  36. 108f55d fix crash when codegening 'cond ? lhs : call-to-void-func()' by Nuno Lopes · 16 years ago
  37. 20ff310 Support for code generation of Objective-C top-level language constructs. by Anton Korobeynikov · 16 years ago
  38. ec2c126 Fix an extremely subtle bug with pointer comparisons: they have to be by Eli Friedman · 16 years ago
  39. 1849128 Fix for PR2001. I'm not really fond of it, but it is correct (unless by Eli Friedman · 16 years ago
  40. 856226c Backout of codegen-based fix to PR2334; this has been fixed differently by Eli Friedman · 16 years ago
  41. 145c083 Patch for PR2334, and a similar ObjC bug. by Eli Friedman · 16 years ago
  42. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
  43. 06e863f Add codegen support for block-level compound literals. by Eli Friedman · 16 years ago
  44. 25ddea7 implement a fixme, add support for ++/-- on long double. by Chris Lattner · 16 years ago
  45. 59138ba use simplified ConstantFP:get method. by Chris Lattner · 16 years ago
  46. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  47. 50b3674 update to follow mainline llvm API change. by Chris Lattner · 17 years ago
  48. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  49. 984d0b4 tracking API changes arising from r49277 by Gabor Greif · 17 years ago
  50. 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
  51. c8aa5f1 Codegen assignment to self correctly, patch by David Chisnall! by Chris Lattner · 17 years ago
  52. bdcd637 add a common base class "PointerLikeType" for PointerType and ReferenceType, by Chris Lattner · 17 years ago
  53. ce5605e some cleanups on top of David's patch. There are still two by Chris Lattner · 17 years ago
  54. 391d77a Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 17 years ago
  55. 36b6a0a simplify the clang codegen by using the new Builder.CreateStructGEP method. by Chris Lattner · 17 years ago
  56. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from CodeGen/CGExprScalar.cpp]
  57. 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 17 years ago
  58. 2b94fe3 Add codegen support for ObjC message expressions with the GNU runtime. by Chris Lattner · 17 years ago
  59. a269ebf implement codegen support for sizeof(void), fixing PR2080. by Chris Lattner · 17 years ago
  60. 19a1d7c implement codegen support for aggregates casted to void. by Chris Lattner · 17 years ago
  61. 3b1ae00 minor tweak to anders patch: (only) ocu vectors support splatting, but by Chris Lattner · 17 years ago
  62. 79b67f3 Only OCU vectors can be splatted. by Anders Carlsson · 17 years ago
  63. 6860f3c Fix PR1921 by promoting negative indices to intptrty. by Chris Lattner · 17 years ago
  64. 67295d0 Implement first round of feedback on __builtin_overload by Nate Begeman · 17 years ago
  65. 5193b8a Make sure to emit all the arguments to a function call. This fixes the by Eli Friedman · 17 years ago
  66. 356916e Fix a bug where CodeGen would attempt to erase an instruction that was by Eli Friedman · 17 years ago
  67. 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 17 years ago
  68. f6884ac Correctly handle scalars in braces. by Anders Carlsson · 17 years ago
  69. 7d6b46d Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 17 years ago
  70. e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
  71. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  72. c89bf69 fix long lines. by Chris Lattner · 17 years ago
  73. 8f92528 Fix a crash reported by Seo Sanghyeon. by Chris Lattner · 17 years ago
  74. 4119d1a Allow implicit casts during arithmetic for OCUVector operations by Nate Begeman · 17 years ago
  75. b3ab8dc Allow codegen of vector fdiv by Nate Begeman · 17 years ago
  76. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  77. b5ce097 No need to do work that the folding builder does for us. by Anders Carlsson · 17 years ago
  78. 9bb947a Remove broken assert from CodeGen. Better check is done in Sema. by Seo Sanghyeon · 17 years ago
  79. 222d2c8 Turns out the LLVMFoldingBuilder can fold InsertElement. Knowing this, we can get rid of our special casing of constants when creating vectors. by Anders Carlsson · 17 years ago
  80. 6086bbd We now support all MMX intrinsics. SSE intrinsics are next. by Anders Carlsson · 17 years ago
  81. a9e6372 Fix a codegen crash on test/CodeGen/cast.c, reported by Keith. by Chris Lattner · 17 years ago
  82. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  83. 6aad91a Added missing inclusion of stdarg.h. Now CGExprScalar.cpp by Ted Kremenek · 17 years ago
  84. cc23aca Add EmitShuffleVector helper method. by Anders Carlsson · 17 years ago
  85. 7019a9e Implement CodeGen for vectors. Don't create unnecessary conversion instructions if the value to be converted is a constant. by Anders Carlsson · 17 years ago
  86. ec86b97 Ignore typedefs in pointer arithmetic codegen. by Seo Sanghyeon · 17 years ago
  87. dc4d280 convert the rest of the stderr users in codegen to use diagnostics. by Chris Lattner · 17 years ago
  88. 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
  89. a21ddb3 Fix sema support for the gnu ?: expression with a by Chris Lattner · 17 years ago
  90. e7579b5 Implement codegen of CXX Bool by Nate Begeman · 17 years ago
  91. 50b5a30 Fix a typo that prevented pointer-to-int conversions from working. by Anders Carlsson · 17 years ago
  92. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  93. 03f7c03 Remove commented out line. by Devang Patel · 17 years ago
  94. 85f9bce Add (partial) support for @encode. by Anders Carlsson · 17 years ago
  95. f86206f Fix "strbuf += stufflen;" crash. by Devang Patel · 17 years ago
  96. 27437ca Add a new ChooseExpr::isConditionTrue method to unify some code. by Chris Lattner · 17 years ago
  97. a83cc33 Handle non-constant initializers. by Devang Patel · 17 years ago
  98. 35634f5 Visit CompoundLiteralExpr and InitListExpr by Devang Patel · 17 years ago
  99. 7b66000 Updated VC++ build system. by Hartmut Kaiser · 17 years ago
  100. ec0550f by Steve Naroff · 17 years ago