1. 4efaa27 Some additions to tryEvaluate I've had sitting around for a while. by Eli Friedman · 16 years ago
  2. 9802a51 Lower ?: into select when the selected values are cheap and side-effect-free. by Chris Lattner · 16 years ago
  3. f7b5ea9 emit better codegen for ||/&&, shrinking expr.ll by another 240 lines. by Chris Lattner · 16 years ago
  4. 20eb09d use ConstantFoldsToSimpleInteger instead of code emission to do by Chris Lattner · 16 years ago
  5. 0912425 IRgen improvements on unreachable code: by Daniel Dunbar · 16 years ago
  6. 552f4c4 Handle Unary ! in EmitBranchOnBoolExpr, so that we can efficiently by Chris Lattner · 16 years ago
  7. 035cf42 Use EmitBranchOnBoolExpr in VisitConditionalOperator. This by Chris Lattner · 16 years ago
  8. 31a0984 Move EmitBranchOnBoolExpr and ConstantFoldsToSimpleInteger to by Chris Lattner · 16 years ago
  9. 210e0f5 sort files by name. by Chris Lattner · 16 years ago
  10. 9bc47e2 Make emission of 'if' conditions much more sophisticated when we by Chris Lattner · 16 years ago
  11. 32fea9d fix a crash analyzing constants in 176.gcc/expr.c with my next patch. It was by Chris Lattner · 16 years ago
  12. c8cc9cc Teach the aggressive constant folder to fold X && 0 -> 0 and X || 1 -> 1 by Chris Lattner · 16 years ago
  13. 746e03e Clean up some code to use isZero instead of calling getZExtValue. by Chris Lattner · 16 years ago
  14. f0d960a Fix testcase for 64-bit systems. by Sebastian Redl · 16 years ago
  15. 1fef965 Use createBasicBlock here too. by Daniel Dunbar · 16 years ago
  16. 29ea672 Disable generation of basic block names in NDEBUG mode. by Daniel Dunbar · 16 years ago
  17. a448fb2 Rework IRgen invariant w.r.t. current insert point. by Daniel Dunbar · 16 years ago
  18. 5e08ad3 Change EmitBranch to always clear the insert point to clarify irgen invariants. by Daniel Dunbar · 16 years ago
  19. f5bd45c Emit debug region end in unified return block. by Daniel Dunbar · 16 years ago
  20. f1c9c09 Codegen support for fastcall & stdcall CC. Patch by Ilya Okonsky! by Anton Korobeynikov · 16 years ago
  21. e219b8a Flow-sensitive uninitialized values analysis: by Ted Kremenek · 16 years ago
  22. e97d9db Accesses to a collection within a fast enumeration 'for' statement constitute a 'use'. by Ted Kremenek · 16 years ago
  23. 7fdee87 Add fine-grain methods for control which bits are set/reset in ExprDeclBitVector. by Ted Kremenek · 16 years ago
  24. c657e92 Try to not emit the dead side of ?: if the condition is a constant. by Chris Lattner · 16 years ago
  25. bc6ec75 "a patch telling cmake to install clang headers in the target install directory" by Chris Lattner · 16 years ago
  26. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  27. 8f5aab6 Add transfer function support for ObjCForCollectionStmt to LiveVariables. by Ted Kremenek · 16 years ago
  28. 514de5a Add CFG support for Objective-C 2.0 fast enumeration 'for' statement: by Ted Kremenek · 16 years ago
  29. c42e118 Implement C++ 'typeid' parsing and sema. by Sebastian Redl · 16 years ago
  30. d57a871 Add CodeGenFunction::EmitBranch. by Daniel Dunbar · 16 years ago
  31. f1d9360 Fix cmake build, patch from Jjgod Jiang. by Daniel Dunbar · 16 years ago
  32. 0946ccd short circuit && and || when possible. This substantially reduces by Chris Lattner · 16 years ago
  33. 62b72f6 Make codegen smart enough to not emit the dead side of an if whose by Chris Lattner · 16 years ago
  34. 3cc5c40 implement debug info for typeof() by Chris Lattner · 16 years ago
  35. 1413217 merge some testcases together. by Chris Lattner · 16 years ago
  36. d68ba0e Move backend output out of destructor. by Daniel Dunbar · 16 years ago
  37. 4c99263 remove the wrong PR # from the file name. by Chris Lattner · 16 years ago
  38. 5c11d4e add PR# by Chris Lattner · 16 years ago
  39. 1f6f54b Fix PR3031 by silencing follow-on errors in invalid declarations. by Chris Lattner · 16 years ago
  40. 48f4753 Remove unused function declaration. by Daniel Dunbar · 16 years ago
  41. 824e3bd Add CodeGenFunction::EmitDummyBlock for marking places where we make by Daniel Dunbar · 16 years ago
  42. f84dcda Remove CodeGenFunction::StartBlock. by Daniel Dunbar · 16 years ago
  43. b5cac86 These tests have no needed to redirect stderr to stdout. by Daniel Dunbar · 16 years ago
  44. 55e8742 Centralize basic block creation in CodeGenFunction::createBasicBlock. by Daniel Dunbar · 16 years ago
  45. d2f016f Fix StringLiteral print bug. by Zhongxing Xu · 16 years ago
  46. 12b49d9 Add && to test command. by Zhongxing Xu · 16 years ago
  47. b3ac543 Fix Release-Asserts warning. by Daniel Dunbar · 16 years ago
  48. 904eed3 Basic support for taking the address of an overloaded function by Douglas Gregor · 16 years ago
  49. 1255652 Update VC++ project file. by Steve Naroff · 16 years ago
  50. 25e7087 Remove an out-of-date FIXME by Douglas Gregor · 16 years ago
  51. 3f08d18 Improve parser error recovery after a constructor initializer by Douglas Gregor · 16 years ago
  52. cb9b977 Allow user-defined conversions during reference binding by Douglas Gregor · 16 years ago
  53. 55c6095 Don't create a typedef for the injected-class-name by Douglas Gregor · 16 years ago
  54. 02bcd4c Some cleanups to the declaration/checking of overloaded operators in C++. Thanks to Sebastian for the review by Douglas Gregor · 16 years ago
  55. cc128b3 Add pretty printing to StringRegion. by Zhongxing Xu · 16 years ago
  56. fe81bc2 Add region store model to path-sensitive testing. by Zhongxing Xu · 16 years ago
  57. 8916d5b Implement RegionStoreManager::RemoveDeadBindings(). This prunes several false warning caused by removal of symbolic constraints. Currently we just mark all symbols live. Further optimization for dead binding removal needed. by Zhongxing Xu · 16 years ago
  58. 526d927 don't preserve names on IR instructions. This matches llvm-gcc's behavior and by Chris Lattner · 16 years ago
  59. 7c65ad9 sort files add a missed header to the project. by Chris Lattner · 16 years ago
  60. f2528e0 Fix even more bugs in debug info support: by Chris Lattner · 16 years ago
  61. 9c85ba3 reimplement debug info generation in terms of DebugInfo.h instead of by Chris Lattner · 16 years ago
  62. 7d94e26 Print integer value instead of raw pointer. This is a hack to be fixed by migrating the output in analyzer to llvm::raw_ostream. by Zhongxing Xu · 16 years ago
  63. 8341be7 silence a warning from gcc. by Chris Lattner · 16 years ago
  64. 5239304 Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedDecl::getDeclContext() when there are nested-names. by Argyrios Kyrtzidis · 16 years ago
  65. 0f84a23 When a tag has nested-name ('struct foo::bar'), use not 'CurContext' but the context of the nested-name ('foo::'). by Argyrios Kyrtzidis · 16 years ago
  66. 630c81b Simplify handling of nested-names in tags ('struct foo::bar'). by Argyrios Kyrtzidis · 16 years ago
  67. ce179ab Support named operands in inline asm statements. by Anders Carlsson · 16 years ago
  68. 9324e58 Update C++ status: class support improved due to nested name parsing. by Sebastian Redl · 16 years ago
  69. ef6e647 Implement Sema support for C++ nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago
  70. 7518102 Silence a GCC member initialization order warning. by Argyrios Kyrtzidis · 16 years ago
  71. eb83ecd Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parser side. by Argyrios Kyrtzidis · 16 years ago
  72. 3604e38 Introduce annotation tokens, a special kind of token, created and used only by the parser to replace a group of tokens with a single token encoding semantic information. by Argyrios Kyrtzidis · 16 years ago
  73. ab963c6 Update C++ status to reflect parser capabilities for chapter 9 (classes). Slightly extend the class parser test. by Sebastian Redl · 16 years ago
  74. ffb5b00 Update C++ status: dynamic_cast is sema-complete. by Sebastian Redl · 16 years ago
  75. 37d6de3 Move named cast helpers out of Sema, as Chris requested. This requirse making a few functions public that weren't before. by Sebastian Redl · 16 years ago
  76. 59c940c Revert r58880, it breaks test/SemaCXX/constructor.cpp by Argyrios Kyrtzidis · 16 years ago
  77. 5540a72 Use only one constructor for CXXMethodDecl. Keep initialization stuff into one place. by Argyrios Kyrtzidis · 16 years ago
  78. 960627d Avoid redundant cast<>s / simplify type dispatch. by Daniel Dunbar · 16 years ago
  79. 1d75118 Support getTypeInfo, getTypeAlign, getTypeSize on const Type*s. by Daniel Dunbar · 16 years ago
  80. d7f6050 "Fix" PR3021, don't crash on generating record types when we can't by Daniel Dunbar · 16 years ago
  81. b90585c Silence a gcc warning. by Daniel Dunbar · 16 years ago
  82. 60156f0 Add a boilerplate for out-of-bound array checking. This has no real function currently. by Zhongxing Xu · 16 years ago
  83. 9916325 In a declarator, consider an identifier a constructor only if it is followed by '('. by Argyrios Kyrtzidis · 16 years ago
  84. 1a4d34f update post-build step by Ted Kremenek · 16 years ago
  85. e3dc28a Greatly improve static_cast diagnostics by Sebastian Redl · 16 years ago
  86. f1991ea Initial, partially-baked support for implicit user-defined conversions by conversion functions by Douglas Gregor · 16 years ago
  87. d60b927 Use css style instead of hard coded color in cxx_status. No visible change. by Cedric Venet · 16 years ago
  88. c7ed9c6 Changes in preparation for nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago
  89. b737e86 Updated checker build. by Ted Kremenek · 16 years ago
  90. ed1eedd Update C++ status by Douglas Gregor · 16 years ago
  91. 2f1bc52 Parsing, ASTs, and semantic analysis for the declaration of conversion by Douglas Gregor · 16 years ago
  92. 9057a81 Assert that Parser::MaybeParseOperatorFunctionId is called when token is kw_operator, and replace ExpectAndConsume for the 'operator' token with a ConsumeToken. by Argyrios Kyrtzidis · 16 years ago
  93. 12e083c Separate the parsing of type-specifiers from other declaration specifiers, so that we can parse a C++ type-specifier-seq by Douglas Gregor · 16 years ago
  94. 31483b4 include alloca.h instead of malloc.h. If this doesn't work for everyone we can just declare alloca directly in the file. by Anders Carlsson · 16 years ago
  95. 7b2d21e Append the test runs with '&&'. by Argyrios Kyrtzidis · 16 years ago
  96. dc5ddbf Properly deserialize ParamInfo of FunctionDecl. by Argyrios Kyrtzidis · 16 years ago
  97. ff6ec39 Bring in 'alloca' for the Analysis/stack-addr-ps.c test case. by Argyrios Kyrtzidis · 16 years ago
  98. c12dedb Add simple get method. by Zhongxing Xu · 16 years ago
  99. b1ae7d9 Join two lines. by Zhongxing Xu · 16 years ago
  100. 48c2e90 Fix crash caused by this: by Argyrios Kyrtzidis · 16 years ago