1. c63a1f2 by Chris Lattner · 16 years ago
  2. 05d2fb4 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
  3. bd012ff Rework codegen emission of globals - No (intended) functionality change. by Daniel Dunbar · 16 years ago
  4. 9619662 remove uses of QualType::getCanonicalType() from codegen for PR2189 by Chris Lattner · 16 years ago
  5. b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
  6. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  7. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 16 years ago
  8. 1e692ac Basic support for volatile loads and stores. Stores the volatile by Eli Friedman · 16 years ago
  9. ff4a2d9 First cut at setting attributes for functions and calls; this puts us by Eli Friedman · 16 years ago
  10. bfe08e0 Minor cleanup to use the ConvertTypeForMem helper. by Eli Friedman · 16 years ago
  11. 1e86b34 Rearrange EmitLValueForField a bit to work properly for _Bool bitfields by Eli Friedman · 16 years ago
  12. d79a726 Change uses of llvm::Type::isFirstClassType to use the new by Dan Gohman · 16 years ago
  13. 4f8d123 Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 16 years ago
  14. 788d571 Remove an unnecessary/buggy if check. Ran into this with some other by Eli Friedman · 16 years ago
  15. 922696f Fix the emission of expressions like char a[10] = "asdf"; previously, by Eli Friedman · 16 years ago
  16. 316bb1b Fix support for _Bool bitfields. The issue is that the bitfield width by Eli Friedman · 16 years ago
  17. 06e863f Add codegen support for block-level compound literals. by Eli Friedman · 16 years ago
  18. 3b8d116 Remove AST dependency on VMCore by switching ExtVectorElementExpr off Constant. by Nate Begeman · 16 years ago
  19. 8a99764 Extend vector member references to include {.hi, .lo, .e, .o} which return a by Nate Begeman · 16 years ago
  20. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 16 years ago
  21. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 16 years ago
  22. 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
  23. c8aa5f1 Codegen assignment to self correctly, patch by David Chisnall! by Chris Lattner · 17 years ago
  24. ce5605e some cleanups on top of David's patch. There are still two by Chris Lattner · 17 years ago
  25. 391d77a Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 17 years ago
  26. 36b6a0a simplify the clang codegen by using the new Builder.CreateStructGEP method. by Chris Lattner · 17 years ago
  27. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from CodeGen/CGExpr.cpp]
  28. ec9426c Propagate calling convention information to function declarations and CallInst by Nate Begeman · 17 years ago
  29. fea90b8 Implement extern block var. by Lauro Ramos Venancio · 17 years ago
  30. 3c2b317 Remove useless parameter from isConstantSizeType. by Eli Friedman · 17 years ago
  31. d254f00 Adjust for the API change to APInt::getBitsSet. by Dan Gohman · 17 years ago
  32. 472778e Expose the logic for field address codegen; it is needed for aggregate by Eli Friedman · 17 years ago
  33. d957aa0 Simplify bitfield codegen. Fix codegen of struct { short a[3]; int b:15; }. by Lauro Ramos Venancio · 17 years ago
  34. 01e3c9e fix a problem reported by Eli, caused by not keeping bool as i1 by Chris Lattner · 17 years ago
  35. 5193b8a Make sure to emit all the arguments to a function call. This fixes the by Eli Friedman · 17 years ago
  36. 6553982 Fix a typo. by Lauro Ramos Venancio · 17 years ago
  37. a0c5d0e Implement bitfield write. by Lauro Ramos Venancio · 17 years ago
  38. 3b8c22d Implement bitfield read. by Lauro Ramos Venancio · 17 years ago
  39. 104a8c0 Fix for EmitCallExpr changed in OverloadExpr patch by Nate Begeman · 17 years ago
  40. e2ce1d9 Implement basic overload support via a new builtin, __builtin_overload. by Nate Begeman · 17 years ago
  41. fa28b30 Fix the type of predefined identifiers like __func__. Patch by Eli Friedman! by Chris Lattner · 17 years ago
  42. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  43. 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
  44. d3ba3f4 Make MemberExpr code safe w.r.t. address spaces. by Christopher Lamb · 17 years ago
  45. 2b9d2ca local static vars are globals also. This fixes a testcase reported by Seo. by Chris Lattner · 17 years ago
  46. ddc23f3 Update to use new PointerType::getUnqual() api. by Christopher Lamb · 17 years ago
  47. fe2419a Match union field type when member expression is u->x by Devang Patel · 17 years ago
  48. 9418d31 Add assert to flag incomplete bit-field support. by Devang Patel · 17 years ago
  49. 12f65f6 fix logic for member expr codegen. by Chris Lattner · 17 years ago
  50. 9cd4fe4 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 17 years ago
  51. dc4d280 convert the rest of the stderr users in codegen to use diagnostics. by Chris Lattner · 17 years ago
  52. 3e47be5 fix a bug handling typedefs in member expr codegen. Patch by Seo Sanghyeon by Chris Lattner · 17 years ago
  53. 2202bce Fix a codegen crash on void ?: reported by Oliver by Chris Lattner · 17 years ago
  54. 45e8cbd Implement support for -fwritable-strings and make the code generator by Chris Lattner · 17 years ago
  55. 7da36f6 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
  56. e9b8c0a Fix 80 col violations. by Devang Patel · 17 years ago
  57. abad06c Codegen union member references. by Devang Patel · 17 years ago
  58. 0a96118 Handle non LValue base expressions. by Devang Patel · 17 years ago
  59. 126a856 Handle foo()->a = 42; by Devang Patel · 17 years ago
  60. 0e63f6b check base type. by Devang Patel · 17 years ago
  61. 977f14e Use isUnionType() predicate. by Devang Patel · 17 years ago
  62. 655bf3d untabify by Devang Patel · 17 years ago
  63. b9b00ad Handle simple struct member expr. by Devang Patel · 17 years ago
  64. c7229c3 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  65. b1776cb fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  66. 8e74c93 by Steve Naroff · 17 years ago
  67. 419ea7e When dumping out errors about unsupported stuff, emit loc info. by Chris Lattner · 17 years ago
  68. 9b65551 Generalize RValue to handle complex better, generalize EmitCompoundStmt to by Chris Lattner · 17 years ago
  69. c5e940f Implement codegen support for lowering "library builtins" like __builtin_isinf by Chris Lattner · 17 years ago
  70. 1d40060 remove some ugly code now that implicit defs are being generated in this case, thanks Steve! by Chris Lattner · 17 years ago
  71. d8d1936 remove dead code by Chris Lattner · 17 years ago
  72. 1e4d21e eliminate EmitAnyExpr, inlining it and simplifying it into its only caller. by Chris Lattner · 17 years ago
  73. 660ac12 eliminate use of EmitAnyExpr. by Chris Lattner · 17 years ago
  74. 9069fa2 remove ConvertScalarValueToBool. by Chris Lattner · 17 years ago
  75. 190dbe2 be slightly more volatile correct by Chris Lattner · 17 years ago
  76. 10b00cf Omit EmitConversion by Chris Lattner · 17 years ago
  77. abe6719 implicit casts take care of this code, remove it now. by Chris Lattner · 17 years ago
  78. 3707b25 refactor scalar conversions out into CGExprScalar.cpp by Chris Lattner · 17 years ago
  79. 7013c8c tolerate unimplemented codegen better by Chris Lattner · 17 years ago
  80. 1f1ded9 Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  81. 7f02f72 completely refactor codegen of scalar expressions out into its own CGExprScalar.cpp file. by Chris Lattner · 17 years ago
  82. 4f5d414 stub out complex -> bool conversion. by Chris Lattner · 17 years ago
  83. 23b1cdb implement passing of complex and aggregates through call args. by Chris Lattner · 17 years ago
  84. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  85. 46d7d9f move EmitLoadOfComplex/EmitStoreOfComplex into ComplexExprEmitter. by Chris Lattner · 17 years ago
  86. 756a4d8 implement comma for complex. by Chris Lattner · 17 years ago
  87. 4034edb and/or/xor are invalid for complex, even integer complex apparently. by Chris Lattner · 17 years ago
  88. 32e32e7 simplify code slightly by Chris Lattner · 17 years ago
  89. 58dee10 reimplement support for complex comparisons, add support for integer complex compares. by Chris Lattner · 17 years ago
  90. 2823c19 reimplement complex mul by Chris Lattner · 17 years ago
  91. ee755f9 reimplement addition of complex numbers. by Chris Lattner · 17 years ago
  92. 7016a70 Fix array->pointer decay. This unbreaks test/CodeGen/array.c by Chris Lattner · 17 years ago
  93. 022012e Add support for code generation of builtins. by Anders Carlsson · 17 years ago
  94. 2324512 Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  95. 883f6a7 start splitting out aggregate value computation from EmitExpr into EmitAggExpr. by Chris Lattner · 17 years ago
  96. cf60cd2 fix a codegen bug handling ocuvector element exprs. by Chris Lattner · 17 years ago
  97. cc666af implement initial codegen for aggregate return functions. This implements by Chris Lattner · 17 years ago
  98. 461766a Fix a bug handling function -> pointer decay and avoid emitting a noop bitcast. by Chris Lattner · 17 years ago
  99. 6c21616 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago
  100. d4f0802 now that implicit conversions are explicit, we can eliminate by Chris Lattner · 17 years ago