1. 8f2926b Trim CGObjCRuntime::GenerateMessageSend[Super] by Daniel Dunbar · 16 years ago
  2. 2eecaab Move [LR]Value into CGValue.h - No (intended) functional change. by Daniel Dunbar · 16 years ago
  3. c8ef551 NeXT: Emit property metadata (classes, protocols, categories). by Daniel Dunbar · 16 years ago
  4. 86e253a NeXT: Emit category metadata. by Daniel Dunbar · 16 years ago
  5. e1b29ef Add preliminary (and probably broken) codegen support for C++ static initializers. by Anders Carlsson · 16 years ago
  6. dbc9337 NeXT: Emit [meta]class protocol references. by Daniel Dunbar · 16 years ago
  7. 27f9d77 Preliminary support for Obj-C classes in NeXT runtime. by Daniel Dunbar · 16 years ago
  8. ed7c618 Move all Obj-C runtime interaction into CodeGenFunction. by Daniel Dunbar · 16 years ago
  9. 0835a3c Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastExpr and ExplicitCastExpr derive from a common base class (CastExpr): by Argyrios Kyrtzidis · 16 years ago
  10. b7ec246 Add NeXT runtime support for generating methods. by Daniel Dunbar · 16 years ago
  11. 54d1909 Add CodeGen support for AddrLabelExpr in initializers. by Daniel Dunbar · 16 years ago
  12. 488e993 Change WarnUnsupported to ErrorUnsupported (in name and in practice). by Daniel Dunbar · 16 years ago
  13. ddb2a3d Change ObjCRuntime::LookupClass -> GetClass, and now takes the by Daniel Dunbar · 16 years ago
  14. 41071de Clean up CodeGenModule interface. by Daniel Dunbar · 16 years ago
  15. 7ded7f4 Change CGObjCRuntime methods to take appropriate clang Decls. by Daniel Dunbar · 16 years ago
  16. 9d9b09c Infinite loops considered harmful. - Thanks Thomas by Daniel Dunbar · 16 years ago
  17. 32442bb Update some isIntegerConstantExpr uses to use by Daniel Dunbar · 16 years ago
  18. 6143293 Add GetAddrOfConstantCString method by Daniel Dunbar · 16 years ago
  19. 6efc0c5 Implement Obj-C protocol metadata generation for NeXT. by Daniel Dunbar · 16 years ago
  20. af2f62c Change ObjCRuntime GenerateProtocol[Ref] methods to take by Daniel Dunbar · 16 years ago
  21. 4e2d7d0 Emit OBJC_MODULE_INFO and OBJC_SYMBOLS metadata by Daniel Dunbar · 16 years ago
  22. 2271118 Drop Sender from GenerateMessageSend* by Daniel Dunbar · 16 years ago
  23. 2bedbf8 Drop Sender from GenerateMessageSend* by Daniel Dunbar · 16 years ago
  24. 98c5ead Protocol related tweaks by Daniel Dunbar · 16 years ago
  25. a008db1 Add @selector(...) codegen support. by Daniel Dunbar · 16 years ago
  26. 259d93d Add NeXT support for (simple) message sends. by Daniel Dunbar · 16 years ago
  27. bbce49b Add ObjC constant string support for NeXT. by Daniel Dunbar · 16 years ago
  28. 0d8a13d Fix compilation warning with help from David Chisnall. by Mike Stump · 16 years ago
  29. f77ac86 Add LangOptions::NeXTRuntime. by Daniel Dunbar · 16 years ago
  30. 208ff5e Change CodeGenModule to only create ObjC runtime for ObjC files by Daniel Dunbar · 16 years ago
  31. 6379a7a Add -fexceptions to Driver by Daniel Dunbar · 16 years ago
  32. 58bf610 Update for IRBuilder template change (update LLVM!) by Daniel Dunbar · 16 years ago
  33. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  34. c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
  35. de7fb84 More #include cleaning - Remove internal uses of AST.h by Daniel Dunbar · 16 years ago
  36. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  37. c17a4d3 Add dummy Mac Objective-C runtime interface. by Daniel Dunbar · 16 years ago
  38. 1e04976 Back out r54608 (inline string literals were getting an extra '\0') by Daniel Dunbar · 16 years ago
  39. 9ca8bb0 Fix crash during initialization of a bitfield which followed a zero by Daniel Dunbar · 16 years ago
  40. ec5c2a7 Bug fix, inline string literals were getting an extra '\0'. by Daniel Dunbar · 16 years ago
  41. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  42. d7549e7 80 cols by Nico Weber · 16 years ago
  43. afef76e Handle BuiltinType::WChar inside CodeGenTypes::ConvertNewType(). by Argyrios Kyrtzidis · 16 years ago
  44. 85e3568 update to make IRBuilder API change. by Chris Lattner · 16 years ago
  45. 159346a ParseAST now conditionally deletes the passed ASTConsumer. by Ted Kremenek · 16 years ago
  46. 8239713 Fix EmitNullInitializationToLValue for bitfield lvalues. - PR2643 by Daniel Dunbar · 16 years ago
  47. 10e3ded Fix bitfield accesses which straddle the boundary of the underlying type. by Daniel Dunbar · 16 years ago
  48. 8c6f57c Fix CodeGen of pointer arithmetic in compound assignment statements. by Daniel Dunbar · 16 years ago
  49. a735ad8 Implement GNU asm-label extension support in CodeGen. This fixes by Daniel Dunbar · 16 years ago
  50. 3c827a7 Change CodeGen of global decls to key off of the name (instead of by Daniel Dunbar · 16 years ago
  51. 588b1f0 Remove excess #include. by Ted Kremenek · 16 years ago
  52. 815c78f 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 · 16 years ago
  53. 820b033 Bug fix, CodeGen of (void*) - (void*) was broken. - <rdar://problem/6122967> by Daniel Dunbar · 16 years ago
  54. 76526a5 Avoid creating dummy block when no indirect gotos are present. by Daniel Dunbar · 16 years ago
  55. 0ffb125 Add CodeGen support for indirect goto. by Daniel Dunbar · 16 years ago
  56. c63a1f2 by Chris Lattner · 16 years ago
  57. 6bfed7e Support constructor and destructor attributes in CodeGen by Daniel Dunbar · 16 years ago
  58. 05d2fb4 Fix a regression I introduced in r54107: by Chris Lattner · 16 years ago
  59. c500451 Updated to match new atomic names (to enable overloading for pointers to by Mon P Wang · 16 years ago
  60. f9eede1 Fix implicit initialization of structures. by Daniel Dunbar · 16 years ago
  61. 9986eab Change CodeGenModule GlobalDeclMap to directly reference globals by Daniel Dunbar · 16 years ago
  62. bd012ff Rework codegen emission of globals - No (intended) functionality change. by Daniel Dunbar · 16 years ago
  63. 58a7a26 Fix codegen of chained declarations by Daniel Dunbar · 16 years ago
  64. d394cc6 Fix a bug in my previous patch, CGF is not valid for constants outside a function by Chris Lattner · 16 years ago
  65. 9619662 remove uses of QualType::getCanonicalType() from codegen for PR2189 by Chris Lattner · 16 years ago
  66. b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
  67. 91d723d implement codegen support for labels at the end of stmtexprs. by Chris Lattner · 16 years ago
  68. 345f720 minor tidying, no functionality change. by Chris Lattner · 16 years ago
  69. 1e9660e Fix rdar://6103124, the only dummy blocks are ones without names. Named blocks by Chris Lattner · 16 years ago
  70. abfaf99 X86 builtin fixes by Nate Begeman · 16 years ago
  71. 7a66d7b Generate vector compares in codegen by Nate Begeman · 16 years ago
  72. 69ce1df Move comment to match style by Nate Begeman · 16 years ago
  73. 16f2357 Rework codegen of case ranges by Daniel Dunbar · 16 years ago
  74. 4efde8d Fix EmitCaseStmtRange to ignore empty ranges by Daniel Dunbar · 16 years ago
  75. 9a847f5 don't depend on the result of CreateNeg to be a binop by Chris Lattner · 16 years ago
  76. f31627f Fix a codegen crash on: by Chris Lattner · 16 years ago
  77. 8ee6a63 Add note to check what __alignof__ a function type should be. by Daniel Dunbar · 16 years ago
  78. 9140845 Prevent codegen crash on sizeof(<function type>), a gcc extension. by Daniel Dunbar · 16 years ago
  79. 1caae95 Implement bzero, memset, memmove builtins. by Daniel Dunbar · 16 years ago
  80. 4493f79 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 16 years ago
  81. 14ecaef Kill an unused variable warning by Daniel Dunbar · 16 years ago
  82. 780f329 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 16 years ago
  83. a933c3c Add __builtin_powi[fl] support by Daniel Dunbar · 16 years ago
  84. 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 16 years ago
  85. 04b2900 Implement ffs, parity, and popcount builtins. + test case by Daniel Dunbar · 16 years ago
  86. 1565e03 don't pass in null as the Name for GenerateClassStructure, by Chris Lattner · 16 years ago
  87. 6c5df7f Add support shufpd by Mon P Wang · 16 years ago
  88. 1f3846e Fix for codegen crash on multibit bool bitfield initialization by Daniel Dunbar · 16 years ago
  89. ca33f79 remove CGObjCEtoile until it compiles. by Chris Lattner · 16 years ago
  90. 6a705f0 Codegen support for __builtin_stdarg_start by Chris Lattner · 16 years ago
  91. af99417 Fixed bugzilla bug# 2489. by Sanjiv Gupta · 16 years ago
  92. 21cb712 Remove removed header. by Bill Wendling · 16 years ago
  93. b7cfe88 Make a few related changes: by Chris Lattner · 16 years ago
  94. 58cbd06 Add missing include file (due to a file splitting in llvm). by Cedric Venet · 16 years ago
  95. a421007 refactor more objc codegen interfaces to pass around selectors so by Chris Lattner · 16 years ago
  96. fba6763 indenting and other minor things. by Chris Lattner · 16 years ago
  97. d002cc6 refactor interface to GenerateClassStructure to avoid converting a by Chris Lattner · 16 years ago
  98. 5e7dcc6 remove the old getSelector implementation, which removes some by Chris Lattner · 16 years ago
  99. 9384c76 avoid a lot of unneeded selector processing work by passing around by Chris Lattner · 16 years ago
  100. 42ba3e7 use cheaper/simpler getselector call for @selector exprs. by Chris Lattner · 16 years ago