1. bf36e25 Parse: add support for parsing CUDA kernel calls by Peter Collingbourne · 13 years ago
  2. 1b791d6 Lexer: add CUDA kernel call tokens by Peter Collingbourne · 13 years ago
  3. e08ce65 AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions by Peter Collingbourne · 13 years ago
  4. 14b6ba7 AST, Sema, Serialization: keep track of cudaConfigureCall by Peter Collingbourne · 13 years ago
  5. eb4c45b Do not emit AT_MIPS_linkage_name for Objective-C method static variable i. by Devang Patel · 13 years ago
  6. 92b97f2 Finish up the diagnostic client before we've torn down the ASTReader, by Douglas Gregor · 13 years ago
  7. 17d3fea Driver/Frontend: Wire up -mregparm=. by Daniel Dunbar · 13 years ago
  8. 086eb9f Non-void functions need to return some value. by Nick Lewycky · 13 years ago
  9. f8c7fdb Give these little helper functions definitions so that newer gccs stop by John McCall · 13 years ago
  10. 63c00d7 Remove vtables from the Stmt hierarchy; this was pretty easy as by John McCall · 13 years ago
  11. 6e108ce Emit debug info for objc_selector. by Devang Patel · 13 years ago
  12. a29bf41 When IRgen refers to a function declaration that is not a definition, by Douglas Gregor · 13 years ago
  13. 5f022d8 Convert RecordLayout::Size to CharUnits from bits. No changes to by Ken Dyck · 13 years ago
  14. d767d81 static analyzer: Further reduce the analyzer's memory usage when analyzing sqlite3 by 7-10% by recylcing "uninteresting" ExplodedNodes. by Ted Kremenek · 13 years ago
  15. 76a4021 NonTypeTemplateParmDecl is just a DeclaratorDecl, not a VarDecl. by John McCall · 13 years ago
  16. 570729e If an aggregate argument is passed indirectly because it has non trivial by Devang Patel · 13 years ago
  17. b7ff4c6 analyzer, retain/release checker: Remove hack where objects passed in message to 'self' are no longer tracked. by Ted Kremenek · 13 years ago
  18. 100f239 Update for API change. by Rafael Espindola · 13 years ago
  19. 332bb2a When checking the 'weak' and 'weakref' attributes, look for non-external by John McCall · 13 years ago
  20. b19c76e Fix an IRGen bug in property setter calls when by Fariborz Jahanian · 13 years ago
  21. 811d75e [analyzer] Move the files in lib/StaticAnalyzer to lib/StaticAnalyzer/Core. by Argyrios Kyrtzidis · 13 years ago
  22. a12a517 [analyzer] lib/StaticAnalyzer/Checkers/ExprEngineExperimentalChecks.cpp -> lib/StaticAnalyzer/Checkers/ExperimentalChecks.cpp by Argyrios Kyrtzidis · 13 years ago
  23. af1a933 [analyzer] lib/StaticAnalyzer/Checkers/ExprEngineExperimentalChecks.h -> lib/StaticAnalyzer/Checkers/ExperimentalChecks.h by Argyrios Kyrtzidis · 13 years ago
  24. 04291a7 [analyzer] lib/StaticAnalyzer/Checkers/ExprEngineInternalChecks.h -> lib/StaticAnalyzer/Checkers/InternalChecks.h by Argyrios Kyrtzidis · 13 years ago
  25. 4800a5c Split the serialized representation for the detailed preprocessing by Douglas Gregor · 13 years ago
  26. cc324ad AST: support for pre-arg expressions on CallExpr subclasses by Peter Collingbourne · 13 years ago
  27. d64e237 StmtPrinter: factor out arg printing code to PrintCallArgs by Peter Collingbourne · 13 years ago
  28. 09982ce Allow multiple -B prefixes. Patch by Joerg Sonnenberger. by Benjamin Kramer · 13 years ago
  29. f76b092 Clear the linkage cache recursively. Fixes PR8926. by John McCall · 13 years ago
  30. 651f86f In Sema::CheckShadow, get the DeclContext from the variable that we are checking by Argyrios Kyrtzidis · 13 years ago
  31. 1e52dfc Support for objextive-c++ use of property-dot syntax as receiver by Fariborz Jahanian · 13 years ago
  32. b6c2b3f Update the writing of the block-information block in the AST file by Douglas Gregor · 13 years ago
  33. d16c2cf Reorganize CodeGen{Function,Module} to eliminate the unfortunate by John McCall · 13 years ago
  34. 461c9c1 Extend the const capture optimization to C++ record types with no by John McCall · 13 years ago
  35. 5e6fcd4 Sema::MaybeBindToTemporary() shouldn't treat any expression returning by Douglas Gregor · 13 years ago
  36. 68cf1a5 Convert RecordLayout::NonVirtualAlign to CharUnits. No change in by Ken Dyck · 13 years ago
  37. da26379 dgregor accidentally killed this assert, but on investigation, it can fire by John McCall · 13 years ago
  38. 8348de3 Support for objc use of property-dot syntax as receiver by Fariborz Jahanian · 13 years ago
  39. bb699b0 When copy-capturing values for a nested capture, use a BlockDeclRefExpr. by John McCall · 13 years ago
  40. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 13 years ago
  41. 683564a pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed) by Anton Yartsev · 13 years ago
  42. 22df7b1 Fix self-host; if a thunk already exists and has available_externally linkage, we should change its linkage instead of asserting. by Anders Carlsson · 13 years ago
  43. 14e82fd When building with optimizations, emit thunks with available_externally linkage so devirtualized function calls can also be de-thunked. by Anders Carlsson · 13 years ago
  44. 84c49e4 Simplify thunks code. by Anders Carlsson · 13 years ago
  45. 0750800 Add a __has_feature check for default template arguments in function by Douglas Gregor · 13 years ago
  46. 8ef6c8c Improve our uniquing of file entries when files are re-saved or are by Douglas Gregor · 13 years ago
  47. f677ea3 Basic implementation of inherited constructors. Only generates declarations, and probably only works for very basic use cases. by Sebastian Redl · 13 years ago
  48. bbfd5ba Pass a 'ForVTable' flag to GetAddrOfThunk and pass it along to GetOrCreateLLVMFunction so that we by Anders Carlsson · 13 years ago
  49. 0ca1040 [analyzer] Fix a false positive of the 'self' initialization checker. by Argyrios Kyrtzidis · 13 years ago
  50. 1de34dd When the out-of-line definition differs from the declaration in the return type, by Argyrios Kyrtzidis · 13 years ago
  51. 1faa89f Re-land r124768, with a fix for PR9130. by Anders Carlsson · 13 years ago
  52. 09f57b9 Don't suggest -Wuninitialized fixits for uninitialized enum types. by Ted Kremenek · 13 years ago
  53. 8b78913 -Wselector should warn on implemented selectors only by Fariborz Jahanian · 13 years ago
  54. c6ac9c3 Assert during instantiation of blocks that we've captured everything that by John McCall · 13 years ago
  55. fc2bd7c Add better support for ARM EABI triples. Patch by Renato Golin! by Bob Wilson · 13 years ago
  56. 2843c19 Driver: Fix spurious warning (from -cc1) about unused -fapple-kext on C inputs. by Daniel Dunbar · 13 years ago
  57. 2f9f89c Improve our handling of the current instantiation for qualified by Douglas Gregor · 13 years ago
  58. 46ff303 Before checking bitfield initialization, make sure that neither the by Douglas Gregor · 13 years ago
  59. fdc13a0 When calling a bound pointer to member function, check the by Douglas Gregor · 13 years ago
  60. 461bf2e Tweak my fix for PR8748, and update the incorrect PR number in the test case. by Douglas Gregor · 13 years ago
  61. def0354 Implement proper (de-)serialization for explicit template argument by Douglas Gregor · 13 years ago
  62. 758afbc Fix a crash-on-invalid where we were trying to parse C++ constructs in by Douglas Gregor · 13 years ago
  63. 4ee2bb1 Downgrade error about attribute 'iboutlet' and 'ibaction' being applied to anything but a instance method to a warning. by Ted Kremenek · 13 years ago
  64. d89d86f Tighten up the semantics of default template arguments, per C++0x by Douglas Gregor · 13 years ago
  65. ee5d21f When a function template's template parameter has a default argument, by Douglas Gregor · 13 years ago
  66. 398c610 build: Add support for DISABLE_DEFAULT_STRICT_ALIASING, which does what one by Daniel Dunbar · 13 years ago
  67. 53bad4e minor refactoring of -fapple-kext stuff. by Fariborz Jahanian · 13 years ago
  68. fd0f89d What was I thinking? by Fariborz Jahanian · 13 years ago
  69. 142f9e9 -fapple-kext cannot have 'weak' visibility in this abi. by Fariborz Jahanian · 13 years ago
  70. 4814fb5 If any Fix-Its attached to a diagnostic have invalid source locations by Douglas Gregor · 13 years ago
  71. 2100fe9 Moved here from LLVM Clang's configuration options and related macros. by Oscar Fuentes · 13 years ago
  72. c2e20d0 [analyzer] Fix a crash until we can handle temporary struct objects properly. by Argyrios Kyrtzidis · 13 years ago
  73. afdf137 Add __has_feature() for each of the type traits by Douglas Gregor · 13 years ago
  74. 771c678 Clean up of -fapple-kext abi code. No change otherwise. by Fariborz Jahanian · 13 years ago
  75. 799ef66 Implement -Woverloaded-virtual. by Argyrios Kyrtzidis · 13 years ago
  76. 86a4d0d Teach SourceManager::getLocation() how to cope with a source file by Douglas Gregor · 13 years ago
  77. 26743b2 Capture a few implicit references to 'self'. by John McCall · 13 years ago
  78. 5808ce4 More capturing of 'this': implicit member expressions. Getting that by John McCall · 13 years ago
  79. 01de7a4 Revert 124768. by Rafael Espindola · 13 years ago
  80. 50ae3e3 Revert 124754 and 124760 as they made clang unusable in the presence of symbolic by Rafael Espindola · 13 years ago
  81. f704c61 Frontend: Switch -header-include-file output to use unbuffered raw_ostreams with by Daniel Dunbar · 13 years ago
  82. aedd9d5 Don't try to mark virtual members referenced for classes where the key function by Anders Carlsson · 13 years ago
  83. b9d4cb3 Improve the performance of filename canonicalization by avoiding by Douglas Gregor · 13 years ago
  84. 609e317 Based on user feedback, swap -Wuninitialized diagnostics to have the warning refer to the bad use, and the note to the variable declaration. by Ted Kremenek · 13 years ago
  85. 5abec14 -fapple-kext, elimination of all direct calls to virtual dtors. by Fariborz Jahanian · 13 years ago
  86. 0ce34c6 Emit debug info for template value parameters. by Devang Patel · 13 years ago
  87. aa596e8 Canonicalize path names in the file manager before performing a lookup by Douglas Gregor · 13 years ago
  88. fa275df Emit debug info for template type parameters. by Devang Patel · 13 years ago
  89. 322c29f clang: Add support for a CC_PRINT_HEADERS environment variable, which mirrors by Daniel Dunbar · 13 years ago
  90. b34d69b Frontend: Add -header-include-file option, for allowing saving header include by Daniel Dunbar · 13 years ago
  91. b376e5e Frontend: Add support (unused) for showing all "interesting" headers, not just by Daniel Dunbar · 13 years ago
  92. adf082e For gcc compatibility, size of a class which is zero by Fariborz Jahanian · 13 years ago
  93. 6159d0f Revert r124704, which uniqued code-completion strings. The space by Douglas Gregor · 13 years ago
  94. 8e50a96 Add NetBSD target support. Patch by Joerg Sonnenberger. by Benjamin Kramer · 13 years ago
  95. 668fdd8 Don't warn for -Wnon-virtual-dtor for dependent classes. by Argyrios Kyrtzidis · 13 years ago
  96. eef63e0 Frontend: Factor out header include dumping (-H) into its own preprocessor by Daniel Dunbar · 13 years ago
  97. 469a1eb An insomniac stab at making block declarations list the variables they close by John McCall · 13 years ago
  98. b2d11cc Turn on -momit-leaf-frame-pointer by default on all non-Darwin platforms. by Nick Lewycky · 13 years ago
  99. f7275cd Remove redundant check to not warn for warn_equality_with_extra_parens if we are in a macro. This is checked twice. by Ted Kremenek · 13 years ago
  100. e349d2c Unique code-completion strings. On Cocoa.h, this costs us about 4% in by Douglas Gregor · 13 years ago