1. 63df2ae Cleanup some dead code. by Mike Stump · 15 years ago
  2. 62d399e As Ted suggested, record the callsite information with the StackFrameContext. by Zhongxing Xu · 15 years ago
  3. bfbcefb Enhance dataflow analyses to recognize branch statements in the CFG used as hooks for the initialization of condition variables. by Ted Kremenek · 15 years ago
  4. 4e6f8ee Don't set hidden for a non-external symbol as that would make it extenal. by Mike Stump · 15 years ago
  5. 0faa516 Fix for bug 5691. by David Chisnall · 15 years ago
  6. 598278b Inter-procedural analysis: now we can return from the callee. by Zhongxing Xu · 15 years ago
  7. 6281213 Fix bug I just introduced in ForStmt::child_end() where we could iterate off into garbage values. by Ted Kremenek · 15 years ago
  8. 919f066 Teach GRExprEngine to handle the initialization of the condition variable of a ForStmt. by Ted Kremenek · 15 years ago
  9. 58b87fe Add CFG support for the initializer of the condition variable of a ForStmt. by Ted Kremenek · 15 years ago
  10. f0d975f Coelesce 'DoDestroy()' methods in Stmt.cpp, and modify the child_iterator returned by ForStmt to include the initializer of the condition variable. by Ted Kremenek · 15 years ago
  11. 4ec010a CFG tweak: in a WhileStmt, the condition variable initializer is evaluated every time the condition is checked. by Ted Kremenek · 15 years ago
  12. c8f76f5 Fix recent regression caught by g++.old-deja/g++.mike/eh19.C. by Mike Stump · 15 years ago
  13. 4c508a1 Teach GRExprEngine to handle the initialization of the condition variable of a WhileStmt. by Ted Kremenek · 15 years ago
  14. 7652546 Add CFG support for the initializer of the condition variable of a WhileStmt. by Ted Kremenek · 15 years ago
  15. 7d02b8c Modify WhileStmt::child_begin()/child_end() to include the initializer for the condition variable. by Ted Kremenek · 15 years ago
  16. fcfb503 Teach GRExprEngine to handle the initialization of the condition variable of a SwitchStmt. by Ted Kremenek · 15 years ago
  17. 6b501eb Add CFG support for the initializer of the condition variable of a SwitchStmt. by Ted Kremenek · 15 years ago
  18. a3be0ea Modify SwitchStmt::child_begin()/child_end() to include the initializer for the condition variable. by Ted Kremenek · 15 years ago
  19. cb1c77f support the warn_unused_result in C++ class methods by Nuno Lopes · 15 years ago
  20. f75b830 allow the noreturn attribute to be used in class methods by Nuno Lopes · 15 years ago
  21. 35628d1 Add StmtIterator support for iterating over both the condition by Ted Kremenek · 15 years ago
  22. 8a69366 Tidy up FindSubExprAssignments to not deference the child_iterator multiple times. by Ted Kremenek · 15 years ago
  23. 036aed1 When we see a CXXDefaultArgExpr during template instantiation, rebuild by Douglas Gregor · 15 years ago
  24. 8d9fb9b Fix regression found by g++.dg/eh/alias1.C. by Mike Stump · 15 years ago
  25. b03f630 Increase StmtIterator size by one pointer (separating out the Stmt** from the union including Decl* and Decl**). by Ted Kremenek · 15 years ago
  26. f28c687 Mangle block pointer types. Fixes PR5858. by Anders Carlsson · 15 years ago
  27. 154fe98 There is no such thing as typeinfo for a cv-qualified type. Assert by Douglas Gregor · 15 years ago
  28. ff12788 More cleanup/refactoring of the rewrite. by Fariborz Jahanian · 15 years ago
  29. 0ad57fb simplify my previous patch. by Chris Lattner · 15 years ago
  30. 998eab1 fix opencl extvector element extraction on rvalues. We previously by Chris Lattner · 15 years ago
  31. 917f143 comment tweak by Chris Lattner · 15 years ago
  32. 73e437b Some cleanup and refactoring of rewriter. by Fariborz Jahanian · 15 years ago
  33. bbfd68d Tidy up ~ASTContext a bit by turning orphan compound statements into by Ted Kremenek · 15 years ago
  34. 765ccba Diagnose the use of incomplete types in C++ typeid expressions by Douglas Gregor · 15 years ago
  35. f57f207 Remove cv-qualifiers from the argument to typeid by Douglas Gregor · 15 years ago
  36. d25d1b5 This patch concludes rewriteing of __block variables to allow by Fariborz Jahanian · 15 years ago
  37. 9e85c74 Mangle template template parameters. Fixes PR5861. by Anders Carlsson · 15 years ago
  38. bbf37e2 Removed a FIXME comment. by Fariborz Jahanian · 15 years ago
  39. ec878f2 More rewriting of __block variables. by Fariborz Jahanian · 15 years ago
  40. 6633522 fix the microsoft "charify" extension to return the charified token by Chris Lattner · 15 years ago
  41. a3b089e switch -Werror/-Wfatal-errors error conditions to use diagnostics instead by Chris Lattner · 15 years ago
  42. 29f89f6 Fix the overflow calculation in Sema::CheckTemplateArgument to be a bit more by Eli Friedman · 15 years ago
  43. 65222e8 When using a default function argument for a function template (or by Douglas Gregor · 15 years ago
  44. 49ac8e6 Remove RewriteBlocks. It has been superseded by RewriteObjC by Kovarththanan Rajaratnam · 15 years ago
  45. 2550d70 move a few more symbols to .rodata/.data.rel.ro by Nuno Lopes · 15 years ago
  46. e1a5c17 Fix DISABLE_SMART_POINTERS build by Douglas Gregor · 15 years ago
  47. c5143c5 Add support for handling initializers in RewriteObjC::RewriteByRefVar(). by Steve Naroff · 15 years ago
  48. 60fd3db Register call inliner as the last checker. by Zhongxing Xu · 15 years ago
  49. 3ff8481 Migrate the call inliner to the Checker interface. by Zhongxing Xu · 15 years ago
  50. e7809d4 Add 'DeclStmt::DoDestroy()' which doesn't actually recurse over its child expressions (via StmtIterator), as those expressions are owned by the Decls and Types (which are destroyed elsewhere). This fixes a crasher reported in <rdar://problem/7487294>. by Ted Kremenek · 15 years ago
  51. cb74d72 For inter-procedural analysis, predecessor node may be in another function. by Zhongxing Xu · 15 years ago
  52. 61dfbec Add CFG support for the condition variable that can appear in IfStmts in C++ mode. by Ted Kremenek · 15 years ago
  53. 604d939 Suppress dead store warnings involving objects initialized with CXXExprTemporaries. by Ted Kremenek · 15 years ago
  54. e59df87 Add stack trace pretty printing in GRExprEngine::VisitLValue(). by Ted Kremenek · 15 years ago
  55. e383768 Fix CXXConstructExpr::getSourceRange() to not include the source ranges of CXXDefaultArgExprs when computing its range (since these expressions have no source range, and using them will make the encompassing range invalid). by Ted Kremenek · 15 years ago
  56. fee667f Update for the intrinsic changes in llvm: the object size intrinsic by Eric Christopher · 15 years ago
  57. c8be365 Teach GRExprEngine::VisitLValue to ignore CXXExprWithTempories (for now). by Ted Kremenek · 15 years ago
  58. 5bbc8e7 Fix PR 5857. When casting from a symbolic region to an integer back to a pointer value, we were not correctly layering the correct ElementRegion on the original SymbolicRegion. by Ted Kremenek · 15 years ago
  59. 775f2eb Remove CharUnits::toString() to eliminate dependence on <string>. by Ken Dyck · 15 years ago
  60. 52b08f2 Patch to do more rewrite of __block variables. Still WIP. by Fariborz Jahanian · 15 years ago
  61. b7e996e Eliminate a completely unnecessary buffer copy when parsing float literals. by John McCall · 15 years ago
  62. 7931c93 Teach GRExprEngine::VisitLValue that we don't handle CXXZeroInitValueExprs yet. by Ted Kremenek · 15 years ago
  63. 077a40d Also treat the type of the subexpression as a pointer in GRExprEngine::VisitCast when the expression is handled as an lvalue. by Ted Kremenek · 15 years ago
  64. 73ba9a6 Driver: Fix '... -O4 -O0 ...', which was generating bitcode. by Daniel Dunbar · 15 years ago
  65. 1bda434 Driver: Drop ToolChain::getHost() by Daniel Dunbar · 15 years ago
  66. 44e067b Set a member's access specifier even if it doesn't match the previous specifier. by John McCall · 15 years ago
  67. 949bdb4 Add basic support for analyzing CastExprs as lvalues. by Ted Kremenek · 15 years ago
  68. 2a17af0 Objective-C methods can be variadic, too. Who knew. by Douglas Gregor · 15 years ago
  69. baecfed Switch Sema::CreateOverloadedUnaryOp over to InitializationSequence. by Douglas Gregor · 15 years ago
  70. f857798 warn when attribute warn_unused_result is applied to void functions. by Nuno Lopes · 15 years ago
  71. 6e790ab Allow the first parameter of operator new to be a cv-qualified by Douglas Gregor · 15 years ago
  72. f360138 Driver: When linking, don't warn about unused arguments which are obviously only by Daniel Dunbar · 15 years ago
  73. e663c72 implement -W[no-]fatal-errors, patch by Christian Adåker! by Chris Lattner · 15 years ago
  74. f2a5539 Make sure that reinterpret_cast gets a CastKind on all successful by Douglas Gregor · 15 years ago
  75. 323c310 Add using shadow decls to the "instantiated locals" map, fixing PR5847. by John McCall · 15 years ago
  76. 90f9382 Switch Sema::AddCXXDirectInitializerToDecl over to InitializationSequence by Douglas Gregor · 15 years ago
  77. 38ac4f5 Add transfer functions support for visiting an Objective-C message expression as an lvalue when the return type is a C++ reference. by Ted Kremenek · 15 years ago
  78. 5affb53 ARM: Remove a FIXME, it's not actually more complicated than that. by Daniel Dunbar · 15 years ago
  79. 4c2458a Switch parameter passing for overloaded binary operators to by Douglas Gregor · 15 years ago
  80. 9123666 Serialize the NoReturn bit on FunctionTypes for precompiled headers by Douglas Gregor · 15 years ago
  81. b4debae Enter the scope of an initializer for direct-initialization as well as by Douglas Gregor · 15 years ago
  82. 5b5ad84 When transforming a C++ "new" expression that was not explicitly given by Douglas Gregor · 15 years ago
  83. a188ff2 Switch parameter-passing for calls via function pointers (where we by Douglas Gregor · 15 years ago
  84. d6542d8 Switch InitializedEntity from TypeLoc down to just QualTypes, since we don't use the location information but we did spend a bunch of time building faked-up TypeLocs by Douglas Gregor · 15 years ago
  85. bdc601b Move the implementation of ASTContext::getTypeSizeInChars() to the .cpp file to by Ken Dyck · 15 years ago
  86. aa03731 Switch initialization of parameters in a call over to by Douglas Gregor · 15 years ago
  87. 8257d41 Make sure that we mangle overloaded operators that are member functions correctly, giving them the correct arity. by Anders Carlsson · 15 years ago
  88. fc4020a Work around PR5514. by Anders Carlsson · 15 years ago
  89. 813b70d fix a bug handling the gnu ?: extension. Patch by Storlek on IRC, by Chris Lattner · 15 years ago
  90. 1f24032 When we simply return a retained member expression when instantiating, we must also mark the member decl as referenced. by Anders Carlsson · 15 years ago
  91. bba48cb Zap CheckInitializerTypes. by Eli Friedman · 15 years ago
  92. 4a2c19b Switch default arguments over to InitializationSequence. by Eli Friedman · 15 years ago
  93. 0854462 Switch compound literals over to InitializationSequence. by Eli Friedman · 15 years ago
  94. a91eb54 Switch file-scope assignment initialization over to InitializationSequence. by Eli Friedman · 15 years ago
  95. 4971ff8 x86_64: Structures with no fields but which have padding should be classified as by Daniel Dunbar · 15 years ago
  96. 1c7c3fb Centralize the emission/suppression/delay of diagnostics describing runtime before in the new function Sema::DiagRuntimeBehavior, addressing one of Chris' comments. by Douglas Gregor · 15 years ago
  97. a236a55 Stop diagnosing the use of inner classes as friends. ddunbar asked whether by John McCall · 15 years ago
  98. 1be6b46 Template code for rewrite of __block variables - wip. by Fariborz Jahanian · 15 years ago
  99. 9e9199d Eliminate the ASTContext argument to CXXConstructorDecl::isCopyConstructor, since the context is available in the Decl by Douglas Gregor · 15 years ago
  100. 0d6d12b When converting from a type to itself or one of its base classes via a by Douglas Gregor · 15 years ago