1. 08c6357 Some code refactoring per Daniel's feedback. by Fariborz Jahanian · 15 years ago
  2. 7b3817d Whoops, did not mean to check this in. by Anders Carlsson · 15 years ago
  3. 4257bc6 More work on the constant struct builder. We now try to layout all constant structs but throw away the result. by Anders Carlsson · 15 years ago
  4. 4a28d5d Update for LLVM API change. by Owen Anderson · 15 years ago
  5. 7caa682 Template instantiation for static data members that are defined out-of-line. by Douglas Gregor · 15 years ago
  6. 0eb7cff Fixes broken test by accident. by Fariborz Jahanian · 15 years ago
  7. 7252f51 More Sema check for constructor's member initializer along by Fariborz Jahanian · 15 years ago
  8. cad9f41 In the "use of floating point variable as loop counter" check, check by Ted Kremenek · 15 years ago
  9. 1172751 Have 'clang --analyze' run syntactic static analysis security checks. by Ted Kremenek · 15 years ago
  10. bf91650 Fix 80-col violations, reflow a few comments and zap some extra by Mike Stump · 15 years ago
  11. 5602719 Fix a release build warning. by Anders Carlsson · 15 years ago
  12. 50b8eea More work toward initialization of objects in constructors. by Fariborz Jahanian · 15 years ago
  13. f242b1b Allow front-end 'isa' access on object's of type 'id'. by Steve Naroff · 15 years ago
  14. fc514ab Don't use getLLVMFieldNo for bitfields when constructing the ivar layout maps for GC. by Anders Carlsson · 15 years ago
  15. 4c98efd Check in a half finished new constant struct builder (Obviously not used yet). by Anders Carlsson · 15 years ago
  16. 309a436 Fix declaration of obc_enumerationMutation function, for GNU runtime. by Daniel Dunbar · 15 years ago
  17. fadc9ea Add doxygen comments and simplify expression. by Ted Kremenek · 15 years ago
  18. 941fde8 Introduce a new variant type 'TryResult' to represent the result of by Ted Kremenek · 15 years ago
  19. e3e643f Add getDecl() to CallGraph and CallGraphNode. by Zhongxing Xu · 15 years ago
  20. 6d8f56f Constify methods. by Zhongxing Xu · 15 years ago
  21. 8c4859a Test commit: make a little stub routine for semantic checking of main(). by John McCall · 15 years ago
  22. 3a92d6d Enable the '-warn-security-syntactic' checker option by default. by Ted Kremenek · 15 years ago
  23. 5f28a1e Implement new warning for functions declared 'noreturn' when they fall off the end. by Mike Stump · 15 years ago
  24. 728d7cd Get rid of the size parameter to AppendField. No functionality change. by Anders Carlsson · 15 years ago
  25. 3111218 Mark destructor of Checker virtual. by Ted Kremenek · 15 years ago
  26. 9c09b88 We now do complete semantic checking for unions by Douglas Gregor · 15 years ago
  27. 75b451e Update C++ status to reflect progress on out-of-line definitions of class template members by Douglas Gregor · 15 years ago
  28. 5e03f9e This patch fixes the implementations of the __has_trivial_destructor by Douglas Gregor · 15 years ago
  29. 70ee975 Output UTF-16 string literals independent of host byte order. by Daniel Dunbar · 15 years ago
  30. 87595e4 Diagnose when base classes and members to be intialized by Fariborz Jahanian · 15 years ago
  31. 00998a0 Refactor and push the evaluation as late as possible. by Mike Stump · 15 years ago
  32. 1d55291 Factor out map lookup for CFString constants. by Daniel Dunbar · 15 years ago
  33. 94ae95f Don't just store the field/bit field info one field, do it for all fields in the union. by Anders Carlsson · 15 years ago
  34. 79a1411 Some cleanups suggested by Daniel. by Mike Stump · 15 years ago
  35. efcbb15 Implement: <rdar://problem/6335715> rule request: gets() buffer overflow by Ted Kremenek · 15 years ago
  36. 177d4d8 Fix another thinko. by Anders Carlsson · 15 years ago
  37. 5abeb52 Add comments. by Ted Kremenek · 15 years ago
  38. 8baf86d Refine checking and diagnostics for use of floating point variable as a counter. by Ted Kremenek · 15 years ago
  39. faaec22 Correct a thinko in bitfield layout code. Fixes PR4611. by Anders Carlsson · 15 years ago
  40. ec586e7 Simplify, NFC. by Daniel Dunbar · 15 years ago
  41. dfaf4b3 Switch the driver back to always using clang-cc by default (for C++, and by Daniel Dunbar · 15 years ago
  42. 2a3856a Simplify. by Daniel Dunbar · 15 years ago
  43. 4b5584b We don't need to keep track of the packed alignment, just whether the struct is packed or not. Fixes PR4610. by Anders Carlsson · 15 years ago
  44. 8330cee Move the LLVM field number for bit fields into the BitFieldInfo structure, since it's meaning is completely different than for non-bit fields. by Anders Carlsson · 15 years ago
  45. bd1099e Clean up the ActOnTag action, so that there is only a single entry by Douglas Gregor · 15 years ago
  46. f6c4bc0 Unbreak the CMake build by Douglas Gregor · 15 years ago
  47. 56a5d80 Add two nodes to the call graph: by Zhongxing Xu · 15 years ago
  48. 16a705f Add template specializations to view the call graph in dot format. by Zhongxing Xu · 15 years ago
  49. f785643 constify methods. by Zhongxing Xu · 15 years ago
  50. b85bca2 Add getter methods. by Zhongxing Xu · 15 years ago
  51. 25c155a Add newline at EOF. by Daniel Dunbar · 15 years ago
  52. 42719fc Shield clang from LLVM API changes, until the dust settles. by Daniel Dunbar · 15 years ago
  53. 527e542 Fix test case, which has a control-reaches-end-of-non-void warning that was by Daniel Dunbar · 15 years ago
  54. 1f15e76 Use llvm::BitVector instead of managing memory by hand. by Daniel Dunbar · 15 years ago
  55. cfc6758 Set field info for unions. by Anders Carlsson · 15 years ago
  56. 20d6d04 Use arrays as union padding. Also, since the resulting struct will always contain a single element and either a single i8 element or an array of i8s, there's no reason to use a packed struct. by Anders Carlsson · 15 years ago
  57. 3629255 Revert r76831, there are many Analyzer test failures on multiple platforms. by Daniel Dunbar · 15 years ago
  58. 2cc8f17 Handle zero width bit fields in unions correctly (by ignoring them). by Anders Carlsson · 15 years ago
  59. 5a6e398 Implement union layout support. by Anders Carlsson · 15 years ago
  60. 45372a6 Check in CGRecordLayoutBuilder which is a reimplementation of the record layout code. (Yay, no more packed structs unless absolutely necessary). We currently don't use the layouts being built but that will change when the new code is mature enough :) by Anders Carlsson · 15 years ago
  61. f1c8380 These IRgen improvements have been done. by Daniel Dunbar · 15 years ago
  62. dbfb5f8 Add initial implementation of checking for uses of floating point as a loop counter. by Ted Kremenek · 15 years ago
  63. a4e7056 Add instance predicate method to match static method. by Ted Kremenek · 15 years ago
  64. 7a2d953 Add 'previsit' Checker pass for ObjCMessageExprs. by Ted Kremenek · 15 years ago
  65. 4084c30 Remove a bunch of FIXME's related to ObjC type checking. by Steve Naroff · 15 years ago
  66. d7b27e1 Add constructor used to initialize base/member in by Fariborz Jahanian · 15 years ago
  67. 10e975c Fix case, apparently some people still build on case sensitive filesystems. by Mike Stump · 15 years ago
  68. b1682c5 Add warning for falling off the end of a function that should return a by Mike Stump · 15 years ago
  69. 7cdbc58 Implement support for out-of-line definitions of the class members of class by Douglas Gregor · 15 years ago
  70. 6016cb2 Fix test breakage. by Eli Friedman · 15 years ago
  71. ba1e898 Change Preprocessor to keep a copy of LangOptions instead of reference, like ASTContext. by Argyrios Kyrtzidis · 15 years ago
  72. 0979d80 Improve CFG support for C++ throw expressions. by Mike Stump · 15 years ago
  73. f0549e2 Prep for new warning. by Mike Stump · 15 years ago
  74. 5f85e17 Refactor 'PostStmt' and 'PreStmt' to subclass a common parent 'StmtPoint'. by Ted Kremenek · 15 years ago
  75. de99a45 Slight code reorganization to allow instantiating post-inc/dec. by Eli Friedman · 15 years ago
  76. 27eeb5e Calls to Sema::MatchTemplateParametersToScopeSpecifier should not depend on the order of evaluation of their arguments to be correct. by Douglas Gregor · 15 years ago
  77. 6621bcf Use SaveAndRestore in 'clang/Analysis/Support/SaveAndRestore.h' by Ted Kremenek · 15 years ago
  78. 67afec1 Add AssumeDual method. by Ted Kremenek · 15 years ago
  79. c26a8b0 Migrate the path-sensitive checking of 'nonnull' arguments over to the new by Ted Kremenek · 15 years ago
  80. d33133c Fix the parsing of default arguments for inline member function definitions. by Eli Friedman · 15 years ago
  81. bd04878 Make 'SaveAndRestore' and friends reusable classes in libAnalysis. by Ted Kremenek · 15 years ago
  82. 5a5d98b Add support for registering 'Checker' objects with GRExprEngine. by Ted Kremenek · 15 years ago
  83. 29e543c Add new 'Checker' and 'CheckerVisitor' classes, which represent a more powerful by Ted Kremenek · 15 years ago
  84. e01ac57 Add support for 'PreStmt' program points to GRCoreEngine and GRStmtNodeBuilder. by Ted Kremenek · 15 years ago
  85. cdd4f17 Add 'PreStmt' program point. This will be used to represent checking for by Ted Kremenek · 15 years ago
  86. cc2c6eb Implement operator= for ExplodedNodeSet. by Ted Kremenek · 15 years ago
  87. f290e0d Fix the problems with template argument deduction and array types for by Douglas Gregor · 15 years ago
  88. cd0c073 Make -Wreturn-type be part of -Wmost and therefore -Wall. by Mike Stump · 15 years ago
  89. 2aef06d Fix some memory allocation/deallocation issues by Douglas Gregor · 15 years ago
  90. ab22c43 Fix a nasty little use-after-free bug. by Eli Friedman · 15 years ago
  91. b084a05 Canonicalize the types produced by template argument deduction. by Douglas Gregor · 15 years ago
  92. aa26650 Improved on performance of the algorithm for proper ordering of by Fariborz Jahanian · 15 years ago
  93. 1f618a0 Slighty more testing for template argument deduction with array arguments by Douglas Gregor · 15 years ago
  94. 9e9fae4 Improve template argument deduction for array types, so that a parameter by Douglas Gregor · 15 years ago
  95. 3ef84e1 Prep for new warning. by Mike Stump · 15 years ago
  96. 8e1fab2 Use isa instead of dyn_cast for conditionals. by Mike Stump · 15 years ago
  97. 0ce73f6 Use DICompositeType->replaceAllUsesWith(). by Devang Patel · 15 years ago
  98. 1f2023a "This patch implements the restrictions on union members detailed in by Douglas Gregor · 15 years ago
  99. 5350066 Move bug reporter "visitors" to their own file and make them part of the public by Ted Kremenek · 15 years ago
  100. 71c6e71 Allocate BaseOrMemberInitializers and CXXBaseSpecifier nodes via ASTContext. by Fariborz Jahanian · 15 years ago