1. ea04175 Even more inline asm codegen fixes. by Anders Carlsson · 16 years ago
  2. 4efe459 simple implementation of __builtin_alloca by Nate Begeman · 16 years ago
  3. 2abd25f Improvements to inline asm code generation. by Anders Carlsson · 16 years ago
  4. 7be3d01 Add some binops. by Anders Carlsson · 16 years ago
  5. f39a421 More improvements to inline asm CG. by Anders Carlsson · 16 years ago
  6. cad3ab6 Append input argument to args vector. by Anders Carlsson · 16 years ago
  7. fb1aeb8 Add code generation for inline asm statements. by Anders Carlsson · 16 years ago
  8. d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 16 years ago
  9. af31913 Change the key of CGRecordLayouts from being an llvm type* to being a decl*. LLVM by Chris Lattner · 16 years ago
  10. c4b23a5 Relax an assertion, fixing PR1968 by Chris Lattner · 16 years ago
  11. 4c4635c by Devang Patel · 16 years ago
  12. eae1560 Cleanup InitListExpr code generation code. by Devang Patel · 16 years ago
  13. 0ded75b Fix memory corruption from the type map being modified while a reference by Eli Friedman · 16 years ago
  14. 5bfc1a7 Keep track of padding fields. by Devang Patel · 16 years ago
  15. ebb97e9 Add experimental support for address space qualified types. Address space by Christopher Lamb · 16 years ago
  16. 3b1ae00 minor tweak to anders patch: (only) ocu vectors support splatting, but by Chris Lattner · 16 years ago
  17. 4957378 fix codegen on static variables which have multiple decl nodes. These by Chris Lattner · 16 years ago
  18. 79b67f3 Only OCU vectors can be splatted. by Anders Carlsson · 16 years ago
  19. 478547c Generate correct code for __builtin_huge_val by Anders Carlsson · 16 years ago
  20. f7682b0 Implement __builtin_huge_val. by Anders Carlsson · 16 years ago
  21. 0e82d72 Implement review feedback. Use getAsPointerType instead of cast<PointerType>. by Lauro Ramos Venancio · 16 years ago
  22. 796ef3d Remainder of the __builtin_overload feedback by Nate Begeman · 16 years ago
  23. 6860f3c Fix PR1921 by promoting negative indices to intptrty. by Chris Lattner · 16 years ago
  24. 5bfe18c getLLVMFieldNo can't be called before emitting the base value. by Lauro Ramos Venancio · 16 years ago
  25. 8df106e A pointer to an opaque type is an "opaque type definition". by Lauro Ramos Venancio · 16 years ago
  26. 67295d0 Implement first round of feedback on __builtin_overload by Nate Begeman · 16 years ago
  27. 01e3c9e fix a problem reported by Eli, caused by not keeping bool as i1 by Chris Lattner · 16 years ago
  28. db6ed17 move some constructors out of line and fix indentation in ObjCAtThrowStmt::getSourceRange. by Chris Lattner · 16 years ago
  29. 5193b8a Make sure to emit all the arguments to a function call. This fixes the by Eli Friedman · 16 years ago
  30. 47fb697 Handle incomplete struct initializer. by Devang Patel · 16 years ago
  31. 356916e Fix a bug where CodeGen would attempt to erase an instruction that was by Eli Friedman · 16 years ago
  32. 5a1deb8 Implement __builtin_offsetof. by Anders Carlsson · 16 years ago
  33. ce6237e Handle binary or in constant expressions. by Anders Carlsson · 16 years ago
  34. a3881fc Correctly handle constants that refer to enums. by Anders Carlsson · 16 years ago
  35. f6884ac Correctly handle scalars in braces. by Anders Carlsson · 16 years ago
  36. 84005b4 Tweaks to EmitLValue in CGExprConstant. Patch by Eli Friedman. by Anders Carlsson · 16 years ago
  37. e3d3b7d Add CodeGen for AddrOf in constant initializers. Original patch by Eli Friedman. by Anders Carlsson · 16 years ago
  38. 3b1d57b Factor out the constant generation into its own file. by Anders Carlsson · 16 years ago
  39. d6326c6 by Steve Naroff · 16 years ago
  40. d47d4f5 Support checking and codegen of constant vector globals by Nate Begeman · 16 years ago
  41. 7d6b46d Problem with ObjC's type-encoding of nested structs causing infinit recursion. by Fariborz Jahanian · 16 years ago
  42. 6553982 Fix a typo. by Lauro Ramos Venancio · 16 years ago
  43. a0c5d0e Implement bitfield write. by Lauro Ramos Venancio · 16 years ago
  44. 3b8c22d Implement bitfield read. by Lauro Ramos Venancio · 16 years ago
  45. 9e18d3e Fix two bugs in bitfield codegen. by Lauro Ramos Venancio · 16 years ago
  46. 2c46ce8 Simplify the bitfield codegen. by Lauro Ramos Venancio · 16 years ago
  47. a46b759 Assert that the type of the cast is equal to the _unqualified_ type of the subexpression. Fixes a problem spotted by Nuno Lopes. by Anders Carlsson · 16 years ago
  48. eed5058 Match change in EmitCallExpr by Nate Begeman · 17 years ago
  49. 104a8c0 Fix for EmitCallExpr changed in OverloadExpr patch by Nate Begeman · 17 years ago
  50. e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
  51. e4707ff Add codegen upport for implicit casts to aggregate exprs. by Anders Carlsson · 17 years ago
  52. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
  53. c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 17 years ago
  54. 19009e6 implement proper support for _Bool in memory, which is usually i8, not i1. by Chris Lattner · 17 years ago
  55. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  56. c89bf69 fix long lines. by Chris Lattner · 17 years ago
  57. 8f92528 Fix a crash reported by Seo Sanghyeon. by Chris Lattner · 17 years ago
  58. 4119d1a Allow implicit casts during arithmetic for OCUVector operations by Nate Begeman · 17 years ago
  59. b3ab8dc Allow codegen of vector fdiv by Nate Begeman · 17 years ago
  60. 17930d9 implement codegen support for most unary operators when by Chris Lattner · 17 years ago
  61. 6298b8c remove attribution from makefiles. by Chris Lattner · 17 years ago
  62. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  63. 22c940e Enable CodeGen for member expressions based on call expressions returning aggregate types. This enables expressions like 'foo().member.submember'. by Christopher Lamb · 17 years ago
  64. d3ba3f4 Make MemberExpr code safe w.r.t. address spaces. by Christopher Lamb · 17 years ago
  65. b5ce097 No need to do work that the folding builder does for us. by Anders Carlsson · 17 years ago
  66. 9bb947a Remove broken assert from CodeGen. Better check is done in Sema. by Seo Sanghyeon · 17 years ago
  67. ad6ebd6 String literal in aggregate expression by Seo Sanghyeon · 17 years ago
  68. 3c40085 Convert opaque type when struct definition is seen. by Devang Patel · 17 years ago
  69. dd6ecdb Keep track of llvm struct size while adding fields. by Devang Patel · 17 years ago
  70. fe23e21 Implement codegen for ordered comparison builtins. by Chris Lattner · 17 years ago
  71. 2b9d2ca local static vars are globals also. This fixes a testcase reported by Seo. by Chris Lattner · 17 years ago
  72. 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
  73. 7acda7c introduce a new CodeGenModule::getIntrinsic method, which wraps by Chris Lattner · 17 years ago
  74. c569249 Patch to implemented objective-c's dynamic object pointer qualified with by Fariborz Jahanian · 17 years ago
  75. 55352a2 Make the insertion point with an explicit new instead of the builder. by Chris Lattner · 17 years ago
  76. 0113edd add a hack so that codegen doesn't abort on missing sema of initializers, now by Chris Lattner · 17 years ago
  77. ddc23f3 Update to use new PointerType::getUnqual() api. by Christopher Lamb · 17 years ago
  78. cc8b7f9 Start generating SSE intrinsics. by Anders Carlsson · 17 years ago
  79. 6086bbd We now support all MMX intrinsics. SSE intrinsics are next. by Anders Carlsson · 17 years ago
  80. 2929cfa Simplify the vector code. Add more shift intrinsics. by Anders Carlsson · 17 years ago
  81. 9b73b39 Array subscription in aggregate expression by Seo Sanghyeon · 17 years ago
  82. 7777bb2 Implement dereference operator in aggregate expression by Seo Sanghyeon · 17 years ago
  83. 0502613 minor cleanups by Chris Lattner · 17 years ago
  84. 1feedd8 simplify some code. by Chris Lattner · 17 years ago
  85. 5dc043d Add assert to detect incomplete implementation work. by Devang Patel · 17 years ago
  86. 1426fec builtin id 0 is invalid, don't use a slot for it. by Chris Lattner · 17 years ago
  87. ab6c94c fix off-by-one error. by Chris Lattner · 17 years ago
  88. 9c728dc TargetInfo no longer includes a reference to SourceManager. by Ted Kremenek · 17 years ago
  89. a9e6372 Fix a codegen crash on test/CodeGen/cast.c, reported by Keith. by Chris Lattner · 17 years ago
  90. fe2419a Match union field type when member expression is u->x by Devang Patel · 17 years ago
  91. 7a9d49f Mega-patch: ripped SourceManager out of Diagnostic/DiagnosticClient. Now by Ted Kremenek · 17 years ago
  92. 382c643 Refactor bit-field handling code into a separate method. by Devang Patel · 17 years ago
  93. 8e7b692 fix a build issue with non-apple-gcc-4.0 compilers. by Chris Lattner · 17 years ago
  94. db83230 Generate more builtins. by Anders Carlsson · 17 years ago
  95. 4e4ee21 Generate code for some more intrinsics. by Anders Carlsson · 17 years ago
  96. df5eb71 Reimplement support for strings that initialize global inits now that by Chris Lattner · 17 years ago
  97. b8b1e28 Separate access field number is not required. by Devang Patel · 17 years ago
  98. 15dbf79 Beautify comment. by Devang Patel · 17 years ago
  99. 6e8df73 Add support to share llvm fields for bit-fields. by Devang Patel · 17 years ago
  100. 6aad91a Added missing inclusion of stdarg.h. Now CGExprScalar.cpp by Ted Kremenek · 17 years ago