1. 0c0d895 Handle padding in the constant CFString struct. Fixes PR3046. by Anders Carlsson · 17 years ago
  2. 0ef7c38 Codegen support for fastcall & stdcall CC. Patch by Ilya Okonsky! by Anton Korobeynikov · 17 years ago
  3. 825f6ea LinkageSpecDecl is c++ specific, move it to DeclCXX by Chris Lattner · 17 years ago
  4. 09d411e Don't run the verifier as part of IRgen, this is now down (per module) by Daniel Dunbar · 17 years ago
  5. 0a2da71 Add attribute always_inline support. by Daniel Dunbar · 17 years ago
  6. a70e1d7 Add option argument to GetAddrOfConstantString to use for name of by Daniel Dunbar · 17 years ago
  7. 6fc1f97 Change CGDebugInfo::setLocation to just ignore invalid locations. This by Daniel Dunbar · 17 years ago
  8. 18c2ec6 Add simple interface for protecting runtime functions from name by Daniel Dunbar · 17 years ago
  9. 9575eb3 Prefer llvm::Function::addFnAttr(...) to F->addAttribute(~0, ...). by Daniel Dunbar · 17 years ago
  10. 2bb6eb8 Now Attributes are divided in three groups by Devang Patel · 17 years ago
  11. a85a9ef Large mechanical patch. by Devang Patel · 17 years ago
  12. 3ad1f07 Move FunctionType conversion into CGCall.cpp: by Daniel Dunbar · 17 years ago
  13. 3ef2e85 Tweak CGCall functions again: by Daniel Dunbar · 17 years ago
  14. bccb068 Tweak CGCall functions: by Daniel Dunbar · 17 years ago
  15. 566a650 Fix a number of issues w.r.t. emission of global for functions and by Daniel Dunbar · 17 years ago
  16. a8f0205 Refactor parameter attribute handling: by Daniel Dunbar · 17 years ago
  17. 896d1e2 Set sext/zext on function result. - <rdar://problem/6156739> by Daniel Dunbar · 17 years ago
  18. f278700 Set function attributes (sext, zext, etc.) on Objective-C methods. by Daniel Dunbar · 17 years ago
  19. 49bddf7 Avoid superfluous errors regarding variable-length arrays (casts). by Daniel Dunbar · 17 years ago
  20. a7bbf56 codegen constant data as such. add QualType::isConstant() by Nuno Lopes · 17 years ago
  21. 952f473 Downgrade a number of FIXME asserts to ErrorUnsupported. - Notably VLAs by Daniel Dunbar · 17 years ago
  22. 6b57d43 Objective-C @synthesize support. by Daniel Dunbar · 17 years ago
  23. ad30be4 Use DenseMap on IdentifierInfo instead of StringMap. by Daniel Dunbar · 17 years ago
  24. dbdb951 NeXT: Clean up constant CFString handling. by Daniel Dunbar · 17 years ago
  25. ace3329 Add NeXT runtime support for generating methods. by Daniel Dunbar · 17 years ago
  26. 9503b78 Change WarnUnsupported to ErrorUnsupported (in name and in practice). by Daniel Dunbar · 17 years ago
  27. 27250d3 Clean up CodeGenModule interface. by Daniel Dunbar · 17 years ago
  28. ac93e47 Change CGObjCRuntime methods to take appropriate clang Decls. by Daniel Dunbar · 17 years ago
  29. b427822 Infinite loops considered harmful. - Thanks Thomas by Daniel Dunbar · 17 years ago
  30. 31fe9c3 Add GetAddrOfConstantCString method by Daniel Dunbar · 17 years ago
  31. 84bb85f Change ObjCRuntime GenerateProtocol[Ref] methods to take by Daniel Dunbar · 17 years ago
  32. 5f98285 Fix compilation warning with help from David Chisnall. by Mike Stump · 17 years ago
  33. 1be1df3 Add LangOptions::NeXTRuntime. by Daniel Dunbar · 17 years ago
  34. fc69bde Change CodeGenModule to only create ObjC runtime for ObjC files by Daniel Dunbar · 17 years ago
  35. 91692d9 Add -fexceptions to Driver by Daniel Dunbar · 17 years ago
  36. e0ad215 More #include cleaning by Daniel Dunbar · 17 years ago
  37. 64789f8 More #include cleaning by Daniel Dunbar · 17 years ago
  38. 8c85fac Add dummy Mac Objective-C runtime interface. by Daniel Dunbar · 17 years ago
  39. 3c670e1 Back out r54608 (inline string literals were getting an extra '\0') by Daniel Dunbar · 17 years ago
  40. 84985f8 Bug fix, inline string literals were getting an extra '\0'. by Daniel Dunbar · 17 years ago
  41. ced8914 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 17 years ago
  42. a31eaf7 Change CodeGen of global decls to key off of the name (instead of by Daniel Dunbar · 17 years ago
  43. 7c65b6c Refactored driver logic for CodeGen into LLVMCodeGenWriter. This ASTConsumer layers on top of LLVMCodeGen (another existing ASTConsumer) to emit bitcode files to disk. This layering takes this logic out of clang.cpp and puts it directly into the ASTConsumer interface. The benefit is that now --emit-llvm works with both serialized ASTs and regular source files. by Ted Kremenek · 17 years ago
  44. a1923f6 by Chris Lattner · 17 years ago
  45. dd2e9ca Support constructor and destructor attributes in CodeGen by Daniel Dunbar · 17 years ago
  46. 2188c53 Change CodeGenModule GlobalDeclMap to directly reference globals by Daniel Dunbar · 17 years ago
  47. 7bf5b3d Rework codegen emission of globals - No (intended) functionality change. by Daniel Dunbar · 17 years ago
  48. f7bacd3 Fix codegen of chained declarations by Daniel Dunbar · 17 years ago
  49. 0be0882 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 17 years ago
  50. 8bcb525 introduce a new ObjCList templated class and start moving by Chris Lattner · 17 years ago
  51. 578279d refactor more objc codegen interfaces to pass around selectors so by Chris Lattner · 17 years ago
  52. bcb3e86 indenting and other minor things. by Chris Lattner · 17 years ago
  53. 547907c give CreateObjCRuntime a full CGM so it can get whatever state it needs, by Chris Lattner · 17 years ago
  54. 7853438 implement the alias attirbute (in both Sema and Codegen) by Nuno Lopes · 17 years ago
  55. 54d9754 Emit debug information for global and static variables when -g is specified. by Sanjiv Gupta · 17 years ago
  56. fa94dff For setting attributes, don't assume there are ParamVarDecls available, by Eli Friedman · 17 years ago
  57. 9be4221 First cut at setting attributes for functions and calls; this puts us by Eli Friedman · 17 years ago
  58. cd5d08d Support for code generation of Objective-C top-level language constructs. by Anton Korobeynikov · 17 years ago
  59. 7008e9a PR1893: Fix up the type of tentative definitions of incomplete array by Eli Friedman · 17 years ago
  60. 43a0ce8 Allow the type of a global to be different from the type of its by Eli Friedman · 17 years ago
  61. 5dcae52 Always check that the definition of a function has the correct type. by Eli Friedman · 17 years ago
  62. b232e99 Add CodeGen support for alignment on globals, both for unusual natural by Eli Friedman · 17 years ago
  63. a7f4633 Tentative declarations are supposed to have common linkage, not weak. by Eli Friedman · 17 years ago
  64. 34d46aa The cache is working again; re-enable it. by Eli Friedman · 17 years ago
  65. a4d4e2f Add a more reliable check for whether a static declaration has already by Eli Friedman · 17 years ago
  66. 8f08a25 Emit memmove, not memcpy, for structure copies; this is unfortunately by Eli Friedman · 17 years ago
  67. 4751a3a Move getAccessedFieldNo out of lib/AST/Expr.cpp into by Dan Gohman · 17 years ago
  68. 725d2be Disable the function address cache; this doesn't have any ill effects, by Eli Friedman · 17 years ago
  69. 40e56a1 Added -g command line options to clang for generating source level debug information. This patch currently enables generation of line number debug information (stoppoints) and region begin/end debug information. The new files CGDebugInfo.h and CGDebugInfo.cpp implements the debug info manager class CGDebugInfo. by Sanjiv Gupta · 17 years ago
  70. 74bf555 Simplify FunctionDecl::AddRedeclaration a bit by using std::swap. by Chris Lattner · 17 years ago
  71. 25094a4 if a decl is both 'static' and weak or static and inline, its linkage by Chris Lattner · 17 years ago
  72. b033c4a Verify the whole module after codegen to catch silly IR bugs. by Chris Lattner · 17 years ago
  73. c56ff16 remove the 'unused static' diagnostic from codegen. This should be by Chris Lattner · 17 years ago
  74. 91f5201 Fix PR2236 Add test Implement feedback from Chris re: PR1998 by Nate Begeman · 17 years ago
  75. ad320b6 Only generate code for static functions and global variables that are actually used. by Nate Begeman · 17 years ago
  76. 8a70417 Generate code for annotation attributes. by Nate Begeman · 17 years ago
  77. 52da5c7 Add support to module codegen for adding and emitting annotations by Nate Begeman · 17 years ago
  78. 72a6ebc Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
  79. 815e2c1 tracking API changes arising from r49277 by Gabor Greif · 17 years ago
  80. c61e9f8 some cleanups on top of David's patch. There are still two by Chris Lattner · 17 years ago
  81. b326b17 Add initial support for objc codegen for methods, ivars, and the by Chris Lattner · 17 years ago
  82. a18c12e simplify code by using the variadic StructType::get method. by Chris Lattner · 17 years ago
  83. be1a7a0 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from CodeGen/CodeGenModule.cpp]
  84. 753d259 add initial support for generating an llvm.globalctors list. Patch by David Chisnall by Chris Lattner · 17 years ago
  85. dc6262e Propagate calling convention information to function declarations and CallInst by Nate Begeman · 17 years ago
  86. 461a6c5 Fix a fixme by allowing pointers in different address spaces to have by Chris Lattner · 17 years ago
  87. 8cd0e93 remove the source location arguments to various target query methods. by Chris Lattner · 17 years ago
  88. 402b337 Add a bunch of attributes, patch by Nuno Lopes. by Chris Lattner · 17 years ago
  89. cbfb551 Add codegen support for ObjC message expressions with the GNU runtime. by Chris Lattner · 17 years ago
  90. e5bef73 Implement CodeGenModule::getMemSetFn method. by Lauro Ramos Venancio · 18 years ago
  91. b38c074 A global without initializer must be emitted as weak. Fix Olden/bh test. by Lauro Ramos Venancio · 18 years ago
  92. a6dcce3 Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 18 years ago
  93. 9ec3ca2 sink more of the type related code into CodeGenTypes. by Chris Lattner · 18 years ago
  94. 1b22f8b rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 18 years ago
  95. 0db0699 Relax an assertion, fixing PR1968 by Chris Lattner · 18 years ago
  96. 2a72bb3 Add experimental support for address space qualified types. Address space by Christopher Lamb · 18 years ago
  97. ed430e9 fix codegen on static variables which have multiple decl nodes. These by Chris Lattner · 18 years ago
  98. d76cead Factor out the constant generation into its own file. by Anders Carlsson · 18 years ago
  99. 1cbb276 by Steve Naroff · 18 years ago
  100. c4e28e4 Support checking and codegen of constant vector globals by Nate Begeman · 18 years ago