1. 09be81b Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 16 years ago
  2. cb3beaf Fix <rdar://problem/6552648> error: redefinition of 'XCElementAnchorDelegate' as different kind of symbol. by Steve Naroff · 16 years ago
  3. 1075a16 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 16 years ago
  4. 48a8732 Bring operator name lookup (as required for C++ operator overloading) by Douglas Gregor · 16 years ago
  5. 4646f9c Fix our semantic analysis of by Douglas Gregor · 16 years ago
  6. 99473cd Handle demotion of coerced arguments (as in void a(x) short x; { ... }). by Daniel Dunbar · 16 years ago
  7. 778ae21 Implement handling of file entry/exit notifications from GNU by Chris Lattner · 16 years ago
  8. d0ff602 make getFileCharacteristic linetable aware. line markers that by Chris Lattner · 16 years ago
  9. 7bf7851 propagate linemarker flags down into the the line table, currently by Chris Lattner · 16 years ago
  10. 1a2fbe4 replace gimpy linear search with svelte binary search ;-) by Chris Lattner · 16 years ago
  11. a8884e8 Remove dead code. by Zhongxing Xu · 16 years ago
  12. f137754 make my atrocious linear search at least search in the order that is by Chris Lattner · 16 years ago
  13. aabd322 add comment by Chris Lattner · 16 years ago
  14. 74ae2d9 add the difference in the line marker phys line number and the by Chris Lattner · 16 years ago
  15. 6f9fa5a add really really trivial #line support, where #line now makes every by Chris Lattner · 16 years ago
  16. 2d89c56 lower the interface to getLineNumber like we did for by Chris Lattner · 16 years ago
  17. e79fc85 make SM::getColumnNumber take a predecomposed FileID/offset, which by Chris Lattner · 16 years ago
  18. d83141af Update passing of _Bool values to match what function was declared to take. by Daniel Dunbar · 16 years ago
  19. dac2992 Change construction of common ObjC functions to use CGCall by Daniel Dunbar · 16 years ago
  20. fa45efd build per-fid linetable entries. by Chris Lattner · 16 years ago
  21. aa1da4a Initial implementation of argument dependent lookup (a.k.a. ADL, by Douglas Gregor · 16 years ago
  22. 7e88116 Some function stub added for new abi messaging. by Fariborz Jahanian · 16 years ago
  23. 903041b Use CGCall infrastructure to call enumeration mutation function. by Daniel Dunbar · 16 years ago
  24. 711e8dd Several new declarations for objc2 nonfragile abi messaging. by Fariborz Jahanian · 16 years ago
  25. 93ba373 Fix return type for calls to objc_setProperty. by Daniel Dunbar · 16 years ago
  26. 4ce351b Use ConvertTypeForMem when creating alloca for scalar argument. by Daniel Dunbar · 16 years ago
  27. 706059f Add CodeGenFunction::ConvertTypeForMem forwarding function. by Daniel Dunbar · 16 years ago
  28. 6256b2b more plumbing for #line propagation. Use happy bit #3 out of FileInfo :) by Chris Lattner · 16 years ago
  29. b06739c stub out basic #line handling calls. by Chris Lattner · 16 years ago
  30. b94f56c GNUStep fast enumeration. Patch by David Chisnall. by Fariborz Jahanian · 16 years ago
  31. b02f5f2 silence some warnings. by Chris Lattner · 16 years ago
  32. 0c9da21 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 16 years ago
  33. 015bc8e x86_64 ABI: Initial implementation of ABI compliant parameter passing. by Daniel Dunbar · 16 years ago
  34. 362c895 When looking for a tag name via unqualified name lookup, only look in by Douglas Gregor · 16 years ago
  35. 7a7be65 Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 16 years ago
  36. 33fa581 ABI handling: Implement coercion for argument types (in addition to by Daniel Dunbar · 16 years ago
  37. c912eb7 ir-gen for nonfragile ivar bitfield access (objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  38. f7fd8e5 Targets that don't have stack use global address space for parameters. by Sanjiv Gupta · 16 years ago
  39. e45fbce Minor objc2 bug fix. by Fariborz Jahanian · 16 years ago
  40. e840ccd Fixed the typo in comment. by Sanjiv Gupta · 16 years ago
  41. 917d7c6 reclaim my precious bit in FileInfo by ensuring that ContentCache objects by Chris Lattner · 16 years ago
  42. 8dedb84 switch SourceManager from using an std::map and std::list of by Chris Lattner · 16 years ago
  43. 749e36b Change ABIInfo to compute information for a full signature at a time by Daniel Dunbar · 16 years ago
  44. eec0262 Remove ABIArgInfo::Default kind, ABI is now responsible for specifying by Daniel Dunbar · 16 years ago
  45. b1a60c0 Add ABIArgInfo::Direct kind, which passes arguments using whatever the by Daniel Dunbar · 16 years ago
  46. 5b7ac65 Add two FIXMEs. by Daniel Dunbar · 16 years ago
  47. 7707199 Always use CGFunctionInfo to access ABI information. by Daniel Dunbar · 16 years ago
  48. e92e0ab Move ABIArgInfo into CGFunctionInfo, computed on creation. by Daniel Dunbar · 16 years ago
  49. d283e63 Move ABIInfo/ABIArgInfo classes into ABIInfo.h by Daniel Dunbar · 16 years ago
  50. 2d87eb0 Simplify the way in which we inject the names of tag definitions and by Douglas Gregor · 16 years ago
  51. 5534392 objc2's ir-gen for nonfragile ivar access. by Fariborz Jahanian · 16 years ago
  52. dcf19d1 Memoize CGFunctionInfo construction. by Daniel Dunbar · 16 years ago
  53. 677b3f4 Formatting fix. by Mike Stump · 16 years ago
  54. 0b37ca8 Change CGFunctionInfo args iterator to not include the return type. by Daniel Dunbar · 16 years ago
  55. 469fc9a Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 16 years ago
  56. 34bda88 Thread CGFunctionInfo construction through CodeGenTypes. by Daniel Dunbar · 16 years ago
  57. 7dd5422 emit diagnostic when casting a ptr to a small int when doing static initialization (addresses Eli's comments I believe) by Nuno Lopes · 16 years ago
  58. 5ba3b26 fix TryToFixInvalidVariablyModifiedType to reject negative array sizes by Nuno Lopes · 16 years ago
  59. d917639 Steve set me straight on this one. GCC was right, EDG was wrong: the by Douglas Gregor · 16 years ago
  60. 6ee022b More ABI API cleanup. by Daniel Dunbar · 16 years ago
  61. 8b57e21 Clean up indentation. by Ted Kremenek · 16 years ago
  62. 9fc15a8 ABI handling API changes. by Daniel Dunbar · 16 years ago
  63. bd4b085 Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 16 years ago
  64. 4337afe Refactored code gen for ivar access in preparation for by Fariborz Jahanian · 16 years ago
  65. 8437991 Shuffle some functions around, no functionality change. by Daniel Dunbar · 16 years ago
  66. 725e066 Change the ObjC type encoding for block pointer types to "@?" (for consistency with GCC). by Steve Naroff · 16 years ago
  67. 36b378e Add FIXME. by Daniel Dunbar · 16 years ago
  68. 538a4c2 Check value-initializations that occur when an initializer list by Douglas Gregor · 16 years ago
  69. 347e093 allow cast from array to int to be considered as constant by Nuno Lopes · 16 years ago
  70. 6283006 fix PR3459: improve compatibility with gcc when checking for constant exprs by Nuno Lopes · 16 years ago
  71. c021c7f Fix for PR3447: use padded sizes for computations on struct/union constants. by Eli Friedman · 16 years ago
  72. 5ec32e9 Remove unused overload of GetFunctionType. by Daniel Dunbar · 16 years ago
  73. 1c8d1ba Initialize CGFunctionInfo isVariadic bit correctly. by Daniel Dunbar · 16 years ago
  74. 2d6ecb2 Use target alignment API to set objc2's meta-data alignment. by Fariborz Jahanian · 16 years ago
  75. 3a1add5 Err, unbreak my previous "no functionality change commit", will fix properly later. by Daniel Dunbar · 16 years ago
  76. ebbb8f3 Kill off CGCallInfo, always use CGFunctionInfo for encapsulating by Daniel Dunbar · 16 years ago
  77. 677e38f Add sema support for the cleanup attribute. by Anders Carlsson · 16 years ago
  78. 7c89159 class meta-data belong to __objc_data section (in objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  79. 51dcacb Recognize class's visibility attribute and set its linkage by Fariborz Jahanian · 16 years ago
  80. 64b132f x86_64 ABI: Retool classification to compute lo & hi classifications by Daniel Dunbar · 16 years ago
  81. 28617a0 Missed another mis-alignment of an objc2 meta-data. by Fariborz Jahanian · 16 years ago
  82. b206cc4 Improve our handling of the second step in a user-defined conversion by Douglas Gregor · 16 years ago
  83. 355ed05 Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 16 years ago
  84. f00a1fa Setting correct alignent for objc2 meta-data. by Fariborz Jahanian · 16 years ago
  85. 2a2dce3 x86_64 ABI: Fix more thinkos, straddling computation for complex was by Daniel Dunbar · 16 years ago
  86. 09f078c Upgrade the "excess elements in array initializer" warning to an by Douglas Gregor · 16 years ago
  87. d45210d Implement and test aggregate initialization in C++. Major changes: by Douglas Gregor · 16 years ago
  88. 5b2f550 add imag_info section and data (for objc2 nonfragile abi). by Fariborz Jahanian · 16 years ago
  89. acf7dbd x86_64 ABI: Fix thinko in prev commit, 64-bit vectors should have SSE by Daniel Dunbar · 16 years ago
  90. b79cdbe Fix horrible non-termination bug in LiveVariables. The issue was that by Ted Kremenek · 16 years ago
  91. 11c93dd Generate list of implemented classes and categories in their by Fariborz Jahanian · 16 years ago
  92. cdf91e8 x86_64 ABI: Pass <1 x double> in memory. This is arguably wrong, but by Daniel Dunbar · 16 years ago
  93. 4281e62 Move method out-of-line. by Ted Kremenek · 16 years ago
  94. 5d13ab1 Code gen. for @protocol expression in the new nonfragile abi. by Fariborz Jahanian · 16 years ago
  95. 5655595 Remove testing -use-x86_64-abi option; current implementation is by Daniel Dunbar · 16 years ago
  96. e413f53 x86_64 ABI: Split small vectors which cross an eightbyte boundary. Down to 33/500 return type failures. by Daniel Dunbar · 16 years ago
  97. 68c1e19 " Attached is a patch for TextDiagnosticPrinter that adds an optional by Chris Lattner · 16 years ago
  98. e7ef500 Switch Type::isAggregateType to use the C++ definition of "aggregate by Douglas Gregor · 16 years ago
  99. d309f57 Make sure to cast the VLA size of array to the type of size_t. Fixes PR3442. by Anders Carlsson · 16 years ago
  100. 965f5d7 Simplify/cleanup r63219 (based on Chris review). by Steve Naroff · 16 years ago