1. 01e3c9e fix a problem reported by Eli, caused by not keeping bool as i1 by Chris Lattner · 17 years ago
  2. 5193b8a Make sure to emit all the arguments to a function call. This fixes the by Eli Friedman · 17 years ago
  3. 6553982 Fix a typo. by Lauro Ramos Venancio · 17 years ago
  4. a0c5d0e Implement bitfield write. by Lauro Ramos Venancio · 17 years ago
  5. 3b8c22d Implement bitfield read. by Lauro Ramos Venancio · 17 years ago
  6. 104a8c0 Fix for EmitCallExpr changed in OverloadExpr patch by Nate Begeman · 17 years ago
  7. e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
  8. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
  9. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  10. 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
  11. d3ba3f4 Make MemberExpr code safe w.r.t. address spaces. by Christopher Lamb · 17 years ago
  12. 2b9d2ca local static vars are globals also. This fixes a testcase reported by Seo. by Chris Lattner · 17 years ago
  13. ddc23f3 Update to use new PointerType::getUnqual() api. by Christopher Lamb · 17 years ago
  14. fe2419a Match union field type when member expression is u->x by Devang Patel · 17 years ago
  15. 9418d31 Add assert to flag incomplete bit-field support. by Devang Patel · 17 years ago
  16. 12f65f6 fix logic for member expr codegen. by Chris Lattner · 17 years ago
  17. 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 17 years ago
  18. dc4d280 convert the rest of the stderr users in codegen to use diagnostics. by Chris Lattner · 17 years ago
  19. 3e47be5 fix a bug handling typedefs in member expr codegen. Patch by Seo Sanghyeon by Chris Lattner · 17 years ago
  20. 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
  21. 45e8cbd Implement support for -fwritable-strings and make the code generator by Chris Lattner · 17 years ago
  22. 7da36f6 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
  23. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  24. abad06c Codegen union member references. by Devang Patel · 17 years ago
  25. 0a96118 Handle non LValue base expressions. by Devang Patel · 17 years ago
  26. 126a856 Handle foo()->a = 42; by Devang Patel · 17 years ago
  27. 0e63f6b check base type. by Devang Patel · 17 years ago
  28. 977f14e Use isUnionType() predicate. by Devang Patel · 17 years ago
  29. 655bf3d untabify by Devang Patel · 17 years ago
  30. b9b00ad Handle simple struct member expr. by Devang Patel · 17 years ago
  31. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  32. b1776cb fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  33. 8e74c93 by Steve Naroff · 17 years ago
  34. 419ea7e When dumping out errors about unsupported stuff, emit loc info. by Chris Lattner · 17 years ago
  35. 9b65551 Generalize RValue to handle complex better, generalize EmitCompoundStmt to by Chris Lattner · 17 years ago
  36. c5e940f Implement codegen support for lowering "library builtins" like __builtin_isinf by Chris Lattner · 17 years ago
  37. 1d40060 remove some ugly code now that implicit defs are being generated in this case, thanks Steve! by Chris Lattner · 17 years ago
  38. d8d1936 remove dead code by Chris Lattner · 17 years ago
  39. 1e4d21e eliminate EmitAnyExpr, inlining it and simplifying it into its only caller. by Chris Lattner · 17 years ago
  40. 660ac12 eliminate use of EmitAnyExpr. by Chris Lattner · 17 years ago
  41. 9069fa2 remove ConvertScalarValueToBool. by Chris Lattner · 17 years ago
  42. 190dbe2 be slightly more volatile correct by Chris Lattner · 17 years ago
  43. 10b00cf Omit EmitConversion by Chris Lattner · 17 years ago
  44. abe6719 implicit casts take care of this code, remove it now. by Chris Lattner · 17 years ago
  45. 3707b25 refactor scalar conversions out into CGExprScalar.cpp by Chris Lattner · 17 years ago
  46. 7013c8c tolerate unimplemented codegen better by Chris Lattner · 17 years ago
  47. 1f1ded9 Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  48. 7f02f72 completely refactor codegen of scalar expressions out into its own CGExprScalar.cpp file. by Chris Lattner · 17 years ago
  49. 4f5d414 stub out complex -> bool conversion. by Chris Lattner · 17 years ago
  50. 23b1cdb implement passing of complex and aggregates through call args. by Chris Lattner · 17 years ago
  51. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  52. 46d7d9f move EmitLoadOfComplex/EmitStoreOfComplex into ComplexExprEmitter. by Chris Lattner · 17 years ago
  53. 756a4d8 implement comma for complex. by Chris Lattner · 17 years ago
  54. 4034edb and/or/xor are invalid for complex, even integer complex apparently. by Chris Lattner · 17 years ago
  55. 32e32e7 simplify code slightly by Chris Lattner · 17 years ago
  56. 58dee10 reimplement support for complex comparisons, add support for integer complex compares. by Chris Lattner · 17 years ago
  57. 2823c19 reimplement complex mul by Chris Lattner · 17 years ago
  58. ee755f9 reimplement addition of complex numbers. by Chris Lattner · 17 years ago
  59. 7016a70 Fix array->pointer decay. This unbreaks test/CodeGen/array.c by Chris Lattner · 17 years ago
  60. 022012e Add support for code generation of builtins. by Anders Carlsson · 17 years ago
  61. 2324512 Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  62. 883f6a7 start splitting out aggregate value computation from EmitExpr into EmitAggExpr. by Chris Lattner · 17 years ago
  63. cf60cd2 fix a codegen bug handling ocuvector element exprs. by Chris Lattner · 17 years ago
  64. cc666af implement initial codegen for aggregate return functions. This implements by Chris Lattner · 17 years ago
  65. 461766a Fix a bug handling function -> pointer decay and avoid emitting a noop bitcast. by Chris Lattner · 17 years ago
  66. 6c21616 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago
  67. d4f0802 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago
  68. 94f05e3 Implement codegen for __builtin_choose_expr. For example: by Chris Lattner · 17 years ago
  69. 30bf3ae implement codegen support for __builtin_types_compatible_p by Chris Lattner · 17 years ago
  70. 6481a57 Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElementExpr respectively. This is for consistency with other expr nodes end with *Expr. by Chris Lattner · 17 years ago
  71. 7e6b51b implement codegen for multidest ocuvector expressions, like: by Chris Lattner · 17 years ago
  72. 017d6aa add codegen support for storing into a single-element ocu lvalue, such as: by Chris Lattner · 17 years ago
  73. 34cdc86 refactor handling of ocuvector lvalue->rvalue codegen into its own method. by Chris Lattner · 17 years ago
  74. 5cc2e45 In the common case where we are shuffling a vector, emit an by Chris Lattner · 17 years ago
  75. 3b12612 Add support for scalar-returning element accesses like V.x by Chris Lattner · 17 years ago
  76. 46ea8eb implement lvalue to rvalue conversion for ocuvector components. We can now compile stuff by Chris Lattner · 17 years ago
  77. 349aaec add support for codegen of an OCUVectorComponent as an lvalue. by Chris Lattner · 17 years ago
  78. bf98651 update this to build with LLVM ToT by Chris Lattner · 17 years ago
  79. 2274266 Implement code generation for __func__, __FUNCTION__ and __PRETTY_FUNCTION__ by Anders Carlsson · 17 years ago
  80. 5e3fbe5 implement codegen support for sizeof/alignof by Chris Lattner · 17 years ago
  81. 99e0d79 Add a hack (mirroring llvm-gcc) to pointer difference codegen to compile: by Chris Lattner · 17 years ago
  82. 590b664 Refactor code so that isIntegerConstantExpr has an ASTContext available. by Chris Lattner · 17 years ago
  83. d5e0d98 add FIXME and un-XFAIL test by Gabor Greif · 17 years ago
  84. d2d2a11 A significant refactoring of the type size stuff to also by Chris Lattner · 17 years ago
  85. 06c8d96 add a fixme by Chris Lattner · 17 years ago
  86. 4db18f2 implement _Complex * == and != by Gabor Greif · 17 years ago
  87. a7674d8 Move getSize() out of type, into ASTContext, where it has target info, and by Chris Lattner · 17 years ago
  88. d07eb3b implement codegen support for implicit casts. by Chris Lattner · 17 years ago
  89. b0a721a "Codegen for Character Literals and Conditional Operator by Chris Lattner · 17 years ago
  90. fa7c645 "Someone typed "PtrToInt" where they meant "IntToPtr". by Chris Lattner · 17 years ago
  91. 8b9023b Implement codegen for + and - with pointers. Patch contributed by Keith Bauer. by Chris Lattner · 17 years ago
  92. 5727479 implement codegen support for pre/post inc/dec. by Chris Lattner · 17 years ago
  93. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago