1. e9bfe6d Implement codegen of CXX Bool by Nate Begeman · 17 years ago
  2. 07f44dc Clean up types, removing some casts. Patch contributed by Cedric Venet. by Chris Lattner · 17 years ago
  3. 25e6d7b Add assert for the case that is not handled. struct { char a; short b:2; }; by Devang Patel · 17 years ago
  4. c64fa03 Keep track of beginning offset for the bit field that does not start at byte boundry. by Devang Patel · 17 years ago
  5. be12234 Stay within 80 columns. by Devang Patel · 17 years ago
  6. 0a52b81 Start struct bit field laout work. This is far from complete. by Devang Patel · 17 years ago
  7. edf4e23 Generate code for member exprs. by Anders Carlsson · 17 years ago
  8. 7a78e43 Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
  9. 9be009e Put constant CFStrings in the __DATA,__cfstring section. by Anders Carlsson · 17 years ago
  10. 783e143 Stub out codegen for __builtin_constant_p. Remove any implicit cast exprs in the call to __builtin___CFStringMakeConstantString. by Anders Carlsson · 17 years ago
  11. 9f5bf52 Remove unnecessary method. by Devang Patel · 17 years ago
  12. 9889c1a start adding pading fields. by Devang Patel · 17 years ago
  13. 44db38f Fix a typo that prevented pointer-to-int conversions from working. by Anders Carlsson · 17 years ago
  14. e3575e6 Refactor code into a separate method. by Devang Patel · 17 years ago
  15. 0ae1541 Handle function calls that return aggregate expressions. by Anders Carlsson · 17 years ago
  16. 125e584 Check whether next slot meets field type's alignment requirements. by Devang Patel · 17 years ago
  17. 5a61ca5 Keep track of field offsets during structure layout. Take 2. by Devang Patel · 17 years ago
  18. a8fccb8 Take 2. by Devang Patel · 17 years ago
  19. 32e20f9 Initialize MemCpyFn by Devang Patel · 17 years ago
  20. 07e8232 temporarily revert devang's patch to link in the llvm codegen etc. by Chris Lattner · 17 years ago
  21. 6e05ca9 Keep track of field offsets during structure layout. by Devang Patel · 17 years ago
  22. 2f1a2fc Make target info available to clang code generator. by Devang Patel · 17 years ago
  23. 2d9b34b Avoid unnecessary PATypeHolder copy. by Devang Patel · 17 years ago
  24. 5bf7202 __real__ and __imag__ can be lvalues. Add support to ast and codegen for them. by Chris Lattner · 17 years ago
  25. 08a10cc Refactor code into a separate method. by Devang Patel · 17 years ago
  26. 0f2a8fb Fix 80 col violations. by Devang Patel · 17 years ago
  27. 2c6e283 Use by Devang Patel · 17 years ago
  28. ce6c837 Remove commented out line. by Devang Patel · 17 years ago
  29. a1ace4a Add RecordOrganizer::layoutUnionFields() by Devang Patel · 17 years ago
  30. 83eab63 Insetead of assert() just emit an error message for by Devang Patel · 17 years ago
  31. 36f07d8 Add (partial) support for @encode. by Anders Carlsson · 17 years ago
  32. 4043840 Generate code for __builtin_classify_type. by Anders Carlsson · 17 years ago
  33. 9b1ca9e Codegen union member references. by Devang Patel · 17 years ago
  34. 2b24fd9 Handle non LValue base expressions. by Devang Patel · 17 years ago
  35. 2ecd901 by Devang Patel · 17 years ago
  36. ddde6d5 Codegen array initializers. by Devang Patel · 17 years ago
  37. 8b5f530 Codegen global array initializers. by Devang Patel · 17 years ago
  38. 0401180 Fix "strbuf += stufflen;" crash. by Devang Patel · 17 years ago
  39. f3e2d53 Document ConvertNewType() method and make it a private method. by Devang Patel · 17 years ago
  40. bd2c278 Cache llvm::Type through PATypeHolder. by Devang Patel · 17 years ago
  41. f624cd2 Add a new ChooseExpr::isConditionTrue method to unify some code. by Chris Lattner · 17 years ago
  42. 1bd623e Remove unused #includes by Devang Patel · 17 years ago
  43. 9dd3e2b Handle foo()->a = 42; by Devang Patel · 17 years ago
  44. ec0da44 Move RecordOrganizer into CodeGenTypes.cpp by Devang Patel · 17 years ago
  45. 32c3983 Handle non-constant initializers. by Devang Patel · 17 years ago
  46. 01ab130 Visit CompoundLiteralExpr and InitListExpr by Devang Patel · 17 years ago
  47. 29c1309 by Devang Patel · 17 years ago
  48. 93ca245 check base type. by Devang Patel · 17 years ago
  49. b3e16ba Add notes. by Devang Patel · 17 years ago
  50. 6478e4b Use isUnionType() predicate. by Devang Patel · 17 years ago
  51. 30f6f13 untabify by Devang Patel · 17 years ago
  52. 68c1010 Fixed a strange construct, please review. by Hartmut Kaiser · 17 years ago
  53. 317c716 Handle nested structs. typdef struct A { int i; struct A *next; } A by Devang Patel · 17 years ago
  54. 41b6625 Handle simple struct member expr. by Devang Patel · 17 years ago
  55. aebd83f Begin struct layout work. by Devang Patel · 17 years ago
  56. ff08d2c Updated VC++ build system. by Hartmut Kaiser · 17 years ago
  57. 855d78d Generate code for static variables that don't have initializers. Also, report an error if a static initializer is not constant. by Anders Carlsson · 17 years ago
  58. 85f0dc5 by Steve Naroff · 17 years ago
  59. 3676033 Add code generation and sema checking for __builtin_va_arg. by Anders Carlsson · 17 years ago
  60. 8884245 Fix an incorrect assertion. by Anders Carlsson · 17 years ago
  61. cebb8d6 Generate code for va_start and va_end. by Anders Carlsson · 17 years ago
  62. 706f844 Recognize while(1) and avoid extra blocks. by Devang Patel · 17 years ago
  63. 716d02c Recognize "do {} while (0)" idiom and avoid extra basic blocks. by Devang Patel · 17 years ago
  64. 638b64c Use LLVMFoldingBuilder by Devang Patel · 17 years ago
  65. 74f3535 Use const& for RHS. by Devang Patel · 17 years ago
  66. bc37238 Fix comment. Describe what it is, instead of how it is used. by Devang Patel · 17 years ago
  67. c04aff1 Added a new class for Interfaces qualified by protocol list. by Fariborz Jahanian · 17 years ago
  68. 3289bca Rename FileVariable -> FileVar for consistency with its class name, by Chris Lattner · 17 years ago
  69. 347ca32 Code gen case statement ranges. by Devang Patel · 17 years ago
  70. 2fd1c65 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  71. cf9dbf2 Support case statement ranges. by Devang Patel · 17 years ago
  72. e58e080 switch statement code gen. by Devang Patel · 17 years ago
  73. 9729936 Do not codegen dummy block. Dummy block is an empty block with no predecessors. by Devang Patel · 17 years ago
  74. 7f29876 further apfloat'ize the front-end, allowing codegen to pass by Chris Lattner · 17 years ago
  75. 1d2b461 fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  76. 2591e1b by Steve Naroff · 17 years ago
  77. cb59747 by Steve Naroff · 17 years ago
  78. b2a7dab update to match llvm mainline api by Chris Lattner · 17 years ago
  79. b0e17eb adjust to a change in the LLVM APIs, this is still very hackish until by Chris Lattner · 17 years ago
  80. 1aef621 When dumping out errors about unsupported stuff, emit loc info. by Chris Lattner · 17 years ago
  81. 7c6f0c7 Fixed compilation on Windows. by Hartmut Kaiser · 17 years ago
  82. 7f6f4a4 Updated calls to CreateGEP to new interface in LLVM mainline. by Ted Kremenek · 17 years ago
  83. a96e0d8 eliminate some VC++ warnings, patch contributed by Hartmut Kaiser by Chris Lattner · 17 years ago
  84. bab0bfb add stmtexpr support for aggregates by Chris Lattner · 17 years ago
  85. 987b0f1 add support for complex stmtexpr's by Chris Lattner · 17 years ago
  86. e24c4cf Generalize RValue to handle complex better, generalize EmitCompoundStmt to by Chris Lattner · 17 years ago
  87. ea6cdd7 implement code generation for scalar stmt expressions. by Chris Lattner · 17 years ago
  88. 02c60f5 Implement codegen support for lowering "library builtins" like __builtin_isinf by Chris Lattner · 17 years ago
  89. ab862cc add the ability to get the llvm function corresponding to a library builtin. by Chris Lattner · 17 years ago
  90. 83c1301 by Steve Naroff · 17 years ago
  91. cdbc647 remove some ugly code now that implicit defs are being generated in this case, thanks Steve! by Chris Lattner · 17 years ago
  92. 90a018d Change EnumDecl to store its corresponding integer type by Chris Lattner · 17 years ago
  93. 759d8f6 teach codegen to lay out enum types. by Chris Lattner · 17 years ago
  94. 41b1fca move EmitAggregateCopy into AggExprEmitter by Chris Lattner · 17 years ago
  95. 246d965 remove dead code by Chris Lattner · 17 years ago
  96. dabc276 remove dead protos by Chris Lattner · 17 years ago
  97. 35055b8 eliminate EmitAnyExpr, inlining it and simplifying it into its only caller. by Chris Lattner · 17 years ago
  98. b06c8dd eliminate use of EmitAnyExpr. by Chris Lattner · 17 years ago
  99. 6197a23 implement a fixme by Chris Lattner · 17 years ago
  100. 9c9f4bb Implement compound assignment operators whose LHS is scalar but RHS is complex. by Chris Lattner · 17 years ago