1. 4f718b4 fix the two xfails I added with a previous patch by making ObjC interface by Chris Lattner · 17 years ago
  2. 52e809a move trivial forwarding function inline. by Chris Lattner · 17 years ago
  3. 8ff34a6 Implement code generation of namespaces and add mangling tests. by Anders Carlsson · 17 years ago
  4. c3a4893 Add Target hooks for IRgen of [cf]string literals. by Daniel Dunbar · 17 years ago
  5. 4494c0a Change UsedArray to be a vector of WeakVH to fix a dangling pointer problem that occurs when by Chris Lattner · 17 years ago
  6. fea1a66 remove some obsolete comments, use an AssertingVH. by Chris Lattner · 17 years ago
  7. 404adca Finish off semantic analysis for regparm, and remove the warning. Also by Eli Friedman · 17 years ago
  8. 9770343 Besides the warning, issue unsupported diagnostics in by Fariborz Jahanian · 17 years ago
  9. f04a756 most of this is plumbing to get CompileOptions down into by Chris Lattner · 17 years ago
  10. e6247a2 switch getBuiltinLibFunction to use the new GetOrCreateLLVMFunction by Chris Lattner · 17 years ago
  11. 89a5b4e emit aliases as the definitions fly by, don't bother deferring until by Chris Lattner · 17 years ago
  12. 9b011e6 make alias definition logic more similar to functions/globals. by Chris Lattner · 17 years ago
  13. 1313754 fix PR3200 by making alias emission use the new infrastructure. Fold by Chris Lattner · 17 years ago
  14. aea1aee pull "runtime globals" into the same framework as other functions/global variables. by Chris Lattner · 17 years ago
  15. b7cee97 fix a fixme: non-proto struct returning function definitions should be compiled by Chris Lattner · 17 years ago
  16. 68306b3 set function/global names with setName instead of passing the name into the by Chris Lattner · 17 years ago
  17. ca27732 Issue error if variables are defined inside an objc class, category or protocol. by Fariborz Jahanian · 17 years ago
  18. 38837f9 now that all the decl reference and creation stuff is going through two by Chris Lattner · 17 years ago
  19. 5dd030f fix a crash that could occur when a variable declaration became a by Chris Lattner · 17 years ago
  20. a698493 simplify and cleanup global variable creation stuff to all go through one by Chris Lattner · 17 years ago
  21. d26784e simplify management of llvm::Function creation to all go through by Chris Lattner · 17 years ago
  22. e28718c code cleanups, rename EmitForwardFunctionDefinition -> by Chris Lattner · 17 years ago
  23. 8af0e26 fix several problems with asm renaming, by pulling it into the mangling code: by Chris Lattner · 17 years ago
  24. 23afd5b add some fixmes by Chris Lattner · 17 years ago
  25. 0b50625 reduce redundant calls of getMangledName. by Chris Lattner · 17 years ago
  26. 7e5888f simplify some more code. by Chris Lattner · 17 years ago
  27. 535998b simplify and comment some code better. Make BindRuntimeGlobals by Chris Lattner · 17 years ago
  28. 08b05eb random code cleanups. by Chris Lattner · 17 years ago
  29. 71fc581 remove obviously dead code: you can't bitcast a pointer to "Ty" (a function type). by Chris Lattner · 17 years ago
  30. c3a2648 avoid making constant folding logic eliminate obviously dead bitcasts, speeding up PR3810 by Chris Lattner · 17 years ago
  31. daa199c Add a fast path to CodeGenModule::getMangledName for almost all C functions, by Chris Lattner · 17 years ago
  32. 36acae4 IRgen support for alias of global variable. - PR3818. by Daniel Dunbar · 17 years ago
  33. 2c7de6d objc: Implemented variables declared in class interface by Fariborz Jahanian · 17 years ago
  34. 78c33cc Adjust for linkage name change. by Duncan Sands · 17 years ago
  35. 9aa5c26 Correct for change of this name in LLVM. by Duncan Sands · 17 years ago
  36. edf953c Backout r66408, we don't want handling of globals to rely on the by Daniel Dunbar · 17 years ago
  37. 7de82e3 Be sure to never create two functions with the same name, instead arrange to by Mike Stump · 17 years ago
  38. dc8d1c6 Make constant emission for @encode use the common string emission code. by Eli Friedman · 17 years ago
  39. 36dbf22 Fixup our uses of various linkages to match how llvm now works. I think they are all by Mike Stump · 17 years ago
  40. f8fa6e1 (LLVM svn up) Generalize RuntimeFunctions to RuntimeGlobals and add by Daniel Dunbar · 17 years ago
  41. 80f5f99 IRgen support for weak_import. by Daniel Dunbar · 17 years ago
  42. 947cb1d Don't mangle names of local variables. by Daniel Dunbar · 17 years ago
  43. 040f4db Make IRGen compatible with declaring a function with incomplete by Eli Friedman · 17 years ago
  44. d6d0ebe Move more of the blocks code up and out. by Mike Stump · 17 years ago
  45. 1f010b5 Move more of blocks codegen out of CodeGenModule and into the by Mike Stump · 17 years ago
  46. 7cbac84 Support "asm" renaming of external symbols. - PR3698. by Daniel Dunbar · 17 years ago
  47. a47bb8e Don't set nounwind on functions when in using the new Obj-C ABI. by Daniel Dunbar · 17 years ago
  48. 72cdb96 simplify some code. by Chris Lattner · 17 years ago
  49. 42f56fa Initialize NSConcreteStackBlock by Anders Carlsson · 17 years ago
  50. 96b7a15 Fix PR3612. We ensure that we add builtins to the GlobalDeclMap and by Mike Stump · 17 years ago
  51. 175b73f Minor cleanup: use getDeclAlignInBytes helper. by Eli Friedman · 17 years ago
  52. 1403222 fix some sema problems with wide strings and hook up basic codegen for them. by Chris Lattner · 17 years ago
  53. c5d3263 first wave of fixes for @encode sema support. This is part of PR3648. by Chris Lattner · 17 years ago
  54. 9fe0411 Emit extern_weak when needed. - PR3629. by Daniel Dunbar · 17 years ago
  55. 442959a Initialize the Init variable to something reasonable when we emit an by Eli Friedman · 17 years ago
  56. 2157eec Add irgen support for the noinline attribute. by Anders Carlsson · 17 years ago
  57. 3f19784 Don't emit K&R unprototyped function definitions as varargs. by Daniel Dunbar · 17 years ago
  58. 3d78d3d Emission of global variable initialializer was broken in rare by Daniel Dunbar · 17 years ago
  59. 3c3c454 Address Chris's comments regarding C++ name mangling. by Douglas Gregor · 17 years ago
  60. 7b7f4f4 Add anti-FIXME. by Daniel Dunbar · 17 years ago
  61. f8eb23b Simplify. by Daniel Dunbar · 17 years ago
  62. 1fa246d Make it possible for builtins to expression FILE* arguments, so that by Douglas Gregor · 17 years ago
  63. 411889e Implicitly declare certain C library functions (malloc, strcpy, memmove, by Douglas Gregor · 17 years ago
  64. 0c79d78 Simplify predicate. by Daniel Dunbar · 17 years ago
  65. 375da3f IRgen support for attribute used. - PR3566 by Daniel Dunbar · 17 years ago
  66. f3482b3 Pull MayDeferGeneration out of EmitGlobal. by Daniel Dunbar · 17 years ago
  67. 21f3cf7 Rename EmitStatics (etc) to EmitDeferred; provide basic infrastructure by Daniel Dunbar · 17 years ago
  68. 92ea888 Let the backend unique these. by Mike Stump · 17 years ago
  69. 075329c Move DescriptorUniqueCount into CGM. by Mike Stump · 17 years ago
  70. ef2c82f Move GlobalUniqueCount up into CGM. by Mike Stump · 17 years ago
  71. 0dffa46 Move GenericBlockLiteralType into CGM. by Mike Stump · 17 years ago
  72. 95e5480 Move BlockDescriptorType into CGM. by Mike Stump · 17 years ago
  73. 3556bc7 Add basic support for C++ name mangling according to the Itanium C++ by Douglas Gregor · 17 years ago
  74. 1f1cd39 Add a very basic implemenation of global blocks. This needs to be cleaned up. by Anders Carlsson · 17 years ago
  75. 9750972 Support __attribute__(section(<name>)) by Daniel Dunbar · 17 years ago
  76. c5ba491 Use 'compile' instead of 'codegen' when reporting error to user. by Daniel Dunbar · 17 years ago
  77. 9bae865 Add -femit-all-decls codegen option. by Daniel Dunbar · 17 years ago
  78. 34bda88 Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 17 years ago
  79. 6ee022b More ABI API cleanup. by Daniel Dunbar · 17 years ago
  80. ebbb8f3 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 17 years ago
  81. d037481 Use NonFragileABI as name of new Next abi. More comments for the new meta-data. by Fariborz Jahanian · 17 years ago
  82. 48543f5 Refactoring ObjC Next's runtime classes in preparation for the new ObjC's abi. by Fariborz Jahanian · 17 years ago
  83. 18c8dc0 more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 17 years ago
  84. 3a80fc0 Bug fix, __private_extern__ globals were always introducing a definition. by Daniel Dunbar · 17 years ago
  85. 2ac4cd3 Objc's compatibility-alias semantics and code gen issue fix. by Fariborz Jahanian · 17 years ago
  86. e299eb4 Silence a GCC warning by Sebastian Redl · 17 years ago
  87. 2e427d5 Fix the bug that would cause Python to crash at startup. by Anders Carlsson · 17 years ago
  88. b27a870 Add full dllimport / dllexport support: both sema checks and codegen. by Anton Korobeynikov · 17 years ago
  89. 8acb727 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 17 years ago
  90. 91dd9d3 Support for implementation of property in the case where by Fariborz Jahanian · 17 years ago
  91. b217601 Fix a serious null termination bug found by David Chisnall! by Chris Lattner · 17 years ago
  92. 689bba8 If a global var decl has an initializer, make sure to always set its linkage to external. by Anders Carlsson · 17 years ago
  93. 271d4c2 Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 17 years ago
  94. e73302f reapply the (corrected) patch to use the new llvm intrinsics for memcpy/memmove etc. by Chris Lattner · 17 years ago
  95. 39f22ce temporarily revert Sangiv's patch. by Chris Lattner · 17 years ago
  96. 5936516 mem[cpy,set,move] intrinsics are now overloaded. by Sanjiv Gupta · 17 years ago
  97. e6b8531 Pointer width for PIC16 is 16 bits. Modify getMemCpy, getMemMove and getMemSet accordingly. by Sanjiv Gupta · 17 years ago
  98. fc1543e Discard unused runtime function declarations (for readability). by Daniel Dunbar · 17 years ago
  99. 6948ae6 This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 17 years ago
  100. b034e28 Change the diagnostics interface to take an array of pointers to by Chris Lattner · 17 years ago