1. 0dd9e88 Add some more documentation. Also reflowed comments to 80 col. by Mike Stump · 15 years ago
  2. cc89920 Reuse case destinations. by Anders Carlsson · 15 years ago
  3. ad9d00e Always check if we can remove branch fixups, even if the cleanup stack is empty. by Anders Carlsson · 15 years ago
  4. 48de101 Add a simplified EmitJumpThroughFinally and use it in CGObjC in preparation of making it use the cleanup stack. by Anders Carlsson · 15 years ago
  5. 46831a9 Misc fixes to the cleanup stack code. by Anders Carlsson · 15 years ago
  6. 225b16d When we're at the stack depth we want, there isn't anything to do. by Mike Stump · 15 years ago
  7. ec9771d Wire up break and continue processing to the new stack depth adjuster. by Mike Stump · 16 years ago
  8. bb66f9f More cleanup stack work, PopCleanupBlock now returns a struct with the switch block and end block. by Anders Carlsson · 16 years ago
  9. d66a9f9 Split some functions up by Anders Carlsson · 16 years ago
  10. 6fc5591 CleanupScope needs to push the cleanup block in its destructor by Anders Carlsson · 16 years ago
  11. 1093c2c Implement support for branch fixups. by Anders Carlsson · 16 years ago
  12. 87eaf17 More cleanup stack work. by Anders Carlsson · 16 years ago
  13. bd6fa3d When emitting blocks, keep track of which cleanup scope they have. Minor fixes and cleanup. by Anders Carlsson · 16 years ago
  14. 69c68b7 Emit a cleanup block for the cleanup attribute by Anders Carlsson · 16 years ago
  15. c71c845 Add support for emitting cleanup blocks. Make EmitCompoundStatement emit cleanup blocks if necessary by Anders Carlsson · 16 years ago
  16. 0d5c685 Add a simple RAII object, to be used for pushing a cleanup entry and make the insertion point be the cleanup block. by Anders Carlsson · 16 years ago
  17. 3e9da66 Ensure we track all the stack depths for all break and continue points by Mike Stump · 16 years ago
  18. 6ccc476 Add plumbing for the cleanup stack. by Anders Carlsson · 16 years ago
  19. 273558f Split the exception object out into its own stack. by Anders Carlsson · 16 years ago
  20. 190d00e Simplify the Objective-C exception handling. by Anders Carlsson · 16 years ago
  21. 20926c6 Format for 80-cols. by Mike Stump · 16 years ago
  22. 501af1f Ensure that we don't miscodegen if vlas creap into the top of the for. by Mike Stump · 16 years ago
  23. 72cac2c Arrange to have the correct StackDepth for while statements. by Mike Stump · 16 years ago
  24. 16b1620 Fit into 80-col. by Mike Stump · 16 years ago
  25. 36a2ada Fixup goto codegen in and around VLAs. by Mike Stump · 16 years ago
  26. 386621f Set load/store alignment when doing ABI coercions. by Daniel Dunbar · 16 years ago
  27. f8e58d0 When making dummy file entries, the directory name should also be non-empty. by Daniel Dunbar · 16 years ago
  28. 169c7f8 Fixed an objc2 nonfragile-abi code gen bug. by Fariborz Jahanian · 16 years ago
  29. 7a06aae objc2's nonfragile abi API for messages sent to 'super'. by Fariborz Jahanian · 16 years ago
  30. 56b8001 Use 'compile' instead of 'codegen' when reporting error to user. by Daniel Dunbar · 16 years ago
  31. 0e81f4b objc2's nonfragile-abi - API selection for when receiver is a class by Fariborz Jahanian · 16 years ago
  32. 96f2147 Follow Eli's advice and store the VLA size with the native size_t type. Fixes PR3491. by Anders Carlsson · 16 years ago
  33. 1a6b368 More objc2's API chanes. by Fariborz Jahanian · 16 years ago
  34. c170852 #ifdef'out out objc2 API selection which is not done in gcc (unlike by Fariborz Jahanian · 16 years ago
  35. 2fbf2f5 Implement Direct ABIInfo semantics. by Daniel Dunbar · 16 years ago
  36. 2969a02 Simplify test for whether we need an alloca to hold an indirect return by Daniel Dunbar · 16 years ago
  37. 1f74598 Implement ABI Indirect sematics for arguments. by Daniel Dunbar · 16 years ago
  38. 11e383a Merge ABIInfo StructRet/ByVal into Indirect. by Daniel Dunbar · 16 years ago
  39. 13e8173 Pull CodeGenFunction::GetUndefRValue() out of EmitUnsupportedRValue. by Daniel Dunbar · 16 years ago
  40. a6f80ef Reapply Daniel's patch to match up with llvm 63765. by Dale Johannesen · 16 years ago
  41. 3170c93 x86-32: Use Ignore to avoid passing empty structs (instead of Expand). by Daniel Dunbar · 16 years ago
  42. ca00882 Honor ByVal alignment. Patch by Nate Begeman! by Daniel Dunbar · 16 years ago
  43. ef16378 This patch generates messaging code for objc2's non-fragile abi. by Fariborz Jahanian · 16 years ago
  44. 497a856 Initialize alignment field for ByVal ABIInfo correctly. by Daniel Dunbar · 16 years ago
  45. 35e67d4 Unbreak CGFunctionInfo::Profile method and reenable caching of ABI information. by Daniel Dunbar · 16 years ago
  46. a9b6634 Chase LLVM TOT in circles (i.e., revert r63773 to match revert of r63765). by Daniel Dunbar · 16 years ago
  47. 6f7279b Add ABIArgInfo::dump() by Daniel Dunbar · 16 years ago
  48. 90350b6 Use correct signature for calling enumeration mutation function. by Daniel Dunbar · 16 years ago
  49. 747f06a Temporarily disable caching of ABI results; this is going horribly by Daniel Dunbar · 16 years ago
  50. d604c40 Add -femit-all-decls codegen option. by Daniel Dunbar · 16 years ago
  51. 4b5f0a4 Add asserts that the function signature matches the other arguments provide by Daniel Dunbar · 16 years ago
  52. 42c9ffd (llvm up) Update for intrinsic lookup changes. by Daniel Dunbar · 16 years ago
  53. 83a8a75 Some early code for objc2's nonfragile abi messaging. by Fariborz Jahanian · 16 years ago
  54. b3716ef Patch fixes messaging for GNU runtime. Patch by David Chisnall by Fariborz Jahanian · 16 years ago
  55. 8b29a38 Handle demotion of coerced arguments (as in void a(x) short x; { ... }). by Daniel Dunbar · 16 years ago
  56. 30fc933 lower the interface to getLineNumber like we did for by Chris Lattner · 16 years ago
  57. be395f6 Update passing of _Bool values to match what function was declared to take. by Daniel Dunbar · 16 years ago
  58. 34c94a2 Change construction of common ObjC functions to use CGCall by Daniel Dunbar · 16 years ago
  59. 4655112 Some function stub added for new abi messaging. by Fariborz Jahanian · 16 years ago
  60. 2b2105e Use CGCall infrastructure to call enumeration mutation function. by Daniel Dunbar · 16 years ago
  61. 2e4672b Several new declarations for objc2 nonfragile abi messaging. by Fariborz Jahanian · 16 years ago
  62. e4be5a6 Fix return type for calls to objc_setProperty. by Daniel Dunbar · 16 years ago
  63. 5a1be6e Use ConvertTypeForMem when creating alloca for scalar argument. by Daniel Dunbar · 16 years ago
  64. 8b1a343 Add CodeGenFunction::ConvertTypeForMem forwarding function. by Daniel Dunbar · 16 years ago
  65. 660af74 GNUStep fast enumeration. Patch by David Chisnall. by Fariborz Jahanian · 16 years ago
  66. 59e5a0e x86_64 ABI: Initial implementation of ABI compliant parameter passing. by Daniel Dunbar · 16 years ago
  67. 89c9d8e ABI handling: Implement coercion for argument types (in addition to by Daniel Dunbar · 16 years ago
  68. 598d3f6 ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  69. 45206ec Targets that don't have stack use global address space for parameters. by Sanjiv Gupta · 16 years ago
  70. 07da367 Minor objc2 bug fix. by Fariborz Jahanian · 16 years ago
  71. ecb6b0e Fixed the typo in comment. by Sanjiv Gupta · 16 years ago
  72. 6bad265 Change ABIInfo to compute information for a full signature at a time by Daniel Dunbar · 16 years ago
  73. 0bcc521 Remove ABIArgInfo::Default kind, ABI is now responsible for specifying by Daniel Dunbar · 16 years ago
  74. 46327aa Add ABIArgInfo::Direct kind, which passes arguments using whatever the by Daniel Dunbar · 16 years ago
  75. 5251afa Add two FIXMEs. by Daniel Dunbar · 16 years ago
  76. b225be4 Always use CGFunctionInfo to access ABI information. by Daniel Dunbar · 16 years ago
  77. 88c2fa9 Move ABIArgInfo into CGFunctionInfo, computed on creation. by Daniel Dunbar · 16 years ago
  78. 9eb5c6d Move ABIInfo/ABIArgInfo classes into ABIInfo.h by Daniel Dunbar · 16 years ago
  79. 45012a7 objc2's ir-gen for nonfragile ivar access. by Fariborz Jahanian · 16 years ago
  80. 40a6be6 Memoize CGFunctionInfo construction. by Daniel Dunbar · 16 years ago
  81. a0a99e0 Change CGFunctionInfo args iterator to not include the return type. by Daniel Dunbar · 16 years ago
  82. 541b63b Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  83. 88b5396 More ABI API cleanup. by Daniel Dunbar · 16 years ago
  84. bb36d33 ABI handling API changes. by Daniel Dunbar · 16 years ago
  85. 0bb2036 Refactored code gen for ivar access in preparation for by Fariborz Jahanian · 16 years ago
  86. 275e10d Shuffle some functions around, no functionality change. by Daniel Dunbar · 16 years ago
  87. 9a82b52 Add FIXME. by Daniel Dunbar · 16 years ago
  88. 7f5221b Fix for PR3447: use padded sizes for computations on struct/union constants. by Eli Friedman · 16 years ago
  89. 36b5f5e Remove unused overload of GetFunctionType. by Daniel Dunbar · 16 years ago
  90. 6f6b036 Initialize CGFunctionInfo isVariadic bit correctly. by Daniel Dunbar · 16 years ago
  91. 09796d6 Use target alignment API to set objc2's meta-data alignment. by Fariborz Jahanian · 16 years ago
  92. 21a4f62 Err, unbreak my previous "no functionality change commit", will fix properly later. by Daniel Dunbar · 16 years ago
  93. 725ad31 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 16 years ago
  94. dd0db2a class meta-data belong to __objc_data section (in objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  95. cf55516 Recognize class's visibility attribute and set its linkage by Fariborz Jahanian · 16 years ago
  96. c450357 x86_64 ABI: Retool classification to compute lo & hi classifications by Daniel Dunbar · 16 years ago
  97. fdbe11d Missed another mis-alignment of an objc2 meta-data. by Fariborz Jahanian · 16 years ago
  98. 014858b Setting correct alignent for objc2 meta-data. by Fariborz Jahanian · 16 years ago
  99. cdf920e x86_64 ABI: Fix more thinkos, straddling computation for complex was by Daniel Dunbar · 16 years ago
  100. 0f6610e add imag_info section and data (for objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago