1. 3c3c454 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 17 years ago
  2. 7300779 Add CodeGen support for the nodebug attribute. by Anders Carlsson · 17 years ago
  3. 3556bc7 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 17 years ago
  4. 7fbcf9c Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes. by Daniel Dunbar · 17 years ago
  5. c2d3715 Remove the last remnants of the Obj-C EH stack code. by Anders Carlsson · 17 years ago
  6. 60c4c40 Add DidCallStackSave variable to CodeGenFunction. by Anders Carlsson · 17 years ago
  7. 8be6340 Reuse case destinations. by Anders Carlsson · 17 years ago
  8. 98720f0 Always check if we can remove branch fixups, even if the cleanup stack is empty. by Anders Carlsson · 17 years ago
  9. 32fffb7 Misc fixes to the cleanup stack code. by Anders Carlsson · 17 years ago
  10. df27419 More cleanup stack work, PopCleanupBlock now returns a struct with the switch block and end block. by Anders Carlsson · 17 years ago
  11. e75ae4d Split some functions up by Anders Carlsson · 17 years ago
  12. 459ee36 CleanupScope needs to push the cleanup block in its destructor by Anders Carlsson · 17 years ago
  13. 9b39979 Implement support for branch fixups. by Anders Carlsson · 17 years ago
  14. ed536bc More cleanup stack work. by Anders Carlsson · 17 years ago
  15. e7de352 When emitting blocks, keep track of which cleanup scope they have. Minor fixes and cleanup. by Anders Carlsson · 17 years ago
  16. 883fa55 Add support for emitting cleanup blocks. Make EmitCompoundStatement emit cleanup blocks if necessary by Anders Carlsson · 17 years ago
  17. 9c5b2a4 Add plumbing for the cleanup stack. by Anders Carlsson · 17 years ago
  18. 88ad911 Fixup goto codegen in and around VLAs. by Mike Stump · 17 years ago
  19. 8f30de9 Follow Eli's advice and store the VLA size with the native size_t type. Fixes PR3491. by Anders Carlsson · 17 years ago
  20. 706059f Add CodeGenFunction::ConvertTypeForMem forwarding function. by Daniel Dunbar · 17 years ago
  21. 34bda88 Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 17 years ago
  22. 6ee022b More ABI API cleanup. by Daniel Dunbar · 17 years ago
  23. 924f4ea Pull EmitReturnBlock out of FinishFunction and catch unified return by Daniel Dunbar · 17 years ago
  24. f5874e5 Skip emission of final return block if possible (e.g., functions with by Daniel Dunbar · 17 years ago
  25. 8f5e878 Slight cleanup, and fix for va_arg on architectures where va_list is a struct. by Eli Friedman · 17 years ago
  26. 9689124 Block pointer types are not aggregate types. by Daniel Dunbar · 17 years ago
  27. ef2f7df Handle typedefs to VLAs (Emit the size expr when we encounter the typedef by Anders Carlsson · 17 years ago
  28. 21cecd4 Make sure to generate code for arguments that have a variably modified type. by Anders Carlsson · 17 years ago
  29. d976761 Change EmitVLASize to take a QualType that must be a variably modified type. by Anders Carlsson · 17 years ago
  30. f860e02 Split up emitting of VLA sizes and getting the size of a VLA. by Anders Carlsson · 17 years ago
  31. 32aa0c2 Add map of VLA types and their sizes by Anders Carlsson · 17 years ago
  32. 90d85f3 Change more code over to using the new Expr::Evaluate by Anders Carlsson · 17 years ago
  33. d120b9e Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 17 years ago
  34. ea3c6ab An expression is not foldable if it can't be fully evaluated. Fixes PR3060 by Anders Carlsson · 17 years ago
  35. 24afd4a Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 17 years ago
  36. ef06966 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 17 years ago
  37. 6e3a10c Normalize many BasicBlock names. by Daniel Dunbar · 17 years ago
  38. 1493702 Quick fix for crash in IRgen when we can tryEvaluate a condition to by Daniel Dunbar · 17 years ago
  39. ab81c63 Handle ?: in EmitBranchOnBoolExpr. by Daniel Dunbar · 17 years ago
  40. cfbfe91 Handle Unary ! in EmitBranchOnBoolExpr, so that we can efficiently by Chris Lattner · 17 years ago
  41. 3d6606b Move EmitBranchOnBoolExpr and ConstantFoldsToSimpleInteger to by Chris Lattner · 17 years ago
  42. 5aa22bc Rework IRgen invariant w.r.t. current insert point. by Daniel Dunbar · 17 years ago
  43. 03f7ae1 Emit debug region end in unified return block. by Daniel Dunbar · 17 years ago
  44. 3f73d0d short circuit && and || when possible. This substantially reduces by Chris Lattner · 17 years ago
  45. 42bd06a Remove CodeGenFunction::StartBlock. by Daniel Dunbar · 17 years ago
  46. 72f9655 Centralize basic block creation in CodeGenFunction::createBasicBlock. by Daniel Dunbar · 17 years ago
  47. 285611e Implement lowering of va_arg in clang directly. (This is 32-bit X86 only for now). by Anders Carlsson · 17 years ago
  48. 09d411e Don't run the verifier as part of IRgen, this is now down (per module) by Daniel Dunbar · 17 years ago
  49. 54968bf Debug info bug fix, function start wasn't getting generated correctly by Daniel Dunbar · 17 years ago
  50. 6fc1f97 Change CGDebugInfo::setLocation to just ignore invalid locations. This by Daniel Dunbar · 17 years ago
  51. 7a57b8d Simplify code to emit the unified return block and move it to the end by Daniel Dunbar · 17 years ago
  52. 55dd2bb Print current function on verification failures. by Daniel Dunbar · 17 years ago
  53. 75d8673 Make sure to store the exception in the catch parameter. by Anders Carlsson · 17 years ago
  54. fc1a9c4 Move ABI specific code for functions / calls to CGCall.cpp: by Daniel Dunbar · 17 years ago
  55. 9681683 Factor CodeGenFunction::StartFunction out of GenerateCode and StartObjCMethod. by Daniel Dunbar · 17 years ago
  56. 9fb751f Use a unified return block. by Daniel Dunbar · 17 years ago
  57. 49bddf7 Avoid superfluous errors regarding variable-length arrays (casts). by Daniel Dunbar · 17 years ago
  58. 82b0d0c Stub out CodeGenFunction::EmitObjCForCollectionStmt. by Anders Carlsson · 17 years ago
  59. 6b57d43 Objective-C @synthesize support. by Daniel Dunbar · 17 years ago
  60. 769e730 Do typechecking and codegen for K&R-style function declarations by Eli Friedman · 17 years ago
  61. 9503b78 Change WarnUnsupported to ErrorUnsupported (in name and in practice). by Daniel Dunbar · 17 years ago
  62. e0ad215 More #include cleaning by Daniel Dunbar · 17 years ago
  63. 64789f8 More #include cleaning by Daniel Dunbar · 17 years ago
  64. eee5cd1 More #include cleaning - Remove internal uses of AST.h by Daniel Dunbar · 17 years ago
  65. 8ccfa80 Avoid creating dummy block when no indirect gotos are present. by Daniel Dunbar · 17 years ago
  66. 879788d Add CodeGen support for indirect goto. by Daniel Dunbar · 17 years ago
  67. 7bf5b3d Rework codegen emission of globals - No (intended) functionality change. by Daniel Dunbar · 17 years ago
  68. dad8551 Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 17 years ago
  69. 1d340eb Fixed bugzilla bug# 2489. by Sanjiv Gupta · 17 years ago
  70. 8c7c6a1 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 17 years ago
  71. 2e63054 Basic support for volatile loads and stores. Stores the volatile by Eli Friedman · 17 years ago
  72. 9be4221 First cut at setting attributes for functions and calls; this puts us by Eli Friedman · 18 years ago
  73. cd5d08d Support for code generation of Objective-C top-level language constructs. by Anton Korobeynikov · 18 years ago
  74. 93eb825 Generate subprogram debug info with -g. by Sanjiv Gupta · 18 years ago
  75. 9bc7c8d Make debugging information usable. This is barebones, but it makes -g by Eli Friedman · 18 years ago
  76. 4751a3a Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 18 years ago
  77. 7a19067 remove a stray printout by Chris Lattner · 18 years ago
  78. 74bf555 Simplify FunctionDecl::AddRedeclaration a bit by using std::swap. by Chris Lattner · 18 years ago
  79. 25094a4 if a decl is both 'static' and weak or static and inline, its linkage by Chris Lattner · 18 years ago
  80. 72a6ebc Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 18 years ago
  81. 815e2c1 tracking API changes arising from r49277 by Gabor Greif · 18 years ago
  82. 6e6a597 Codegen assignment to self correctly, patch by David Chisnall! by Chris Lattner · 18 years ago
  83. a05f7d2 simplify some code by using PointerLikeType. by Chris Lattner · 18 years ago
  84. c61e9f8 some cleanups on top of David's patch. There are still two by Chris Lattner · 18 years ago
  85. b326b17 Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 18 years ago
  86. be1a7a0 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 18 years ago[Renamed from CodeGen/CodeGenFunction.cpp]
  87. 8c83f08 Update to reflect changes in parameter attribute api. by Chris Lattner · 18 years ago
  88. d75d28b Add fastcall/stdcall attribute support by Nate Begeman · 18 years ago
  89. 8cd0e93 remove the source location arguments to various target query methods. by Chris Lattner · 18 years ago
  90. 0b3357e fix codegen support for functions that are nothrow and noreturn. by Chris Lattner · 18 years ago
  91. 402b337 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 18 years ago
  92. 934fb02 Implement codegen for the following static var init. by Lauro Ramos Venancio · 18 years ago
  93. 7b2543e Change the key of CGRecordLayouts from being an llvm type* to being a decl*. LLVM by Chris Lattner · 18 years ago
  94. 959e5be Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
  95. 40715f0 Make the insertion point with an explicit new instead of the builder. by Chris Lattner · 18 years ago
  96. cf9c9d0 warn about unhandled initializers instead of crashing on them. by Chris Lattner · 18 years ago
  97. 1a3c1e2 Handle global variable definitions which change the type of a definition, such as: by Chris Lattner · 18 years ago
  98. ca92981 remove the alloca insertion point inst, which is an internal helper. by Chris Lattner · 18 years ago
  99. 0e4755d implement codegen for functions whose function body type don't match by Chris Lattner · 18 years ago
  100. e8f4963 convert the rest of the stderr users in codegen to use diagnostics. by Chris Lattner · 18 years ago