1. 0745d0a Read/write CastExpr's CXXBaseSpecifierArray for PCH. by Argyrios Kyrtzidis · 15 years ago
  2. 8a50733 Fix broken PCH support for CXXDefaultArgExpr. by Argyrios Kyrtzidis · 15 years ago
  3. a376d10 Lazily declare copy-assignment operators. by Douglas Gregor · 15 years ago
  4. 4923aa2 Lazily declare the implicitly-declared destructor in a C++ class. by Douglas Gregor · 15 years ago
  5. 9146832 Handle CXXConstructorDecl, CXXDestructorDecl, and CXXConversionDecl for PCH. by Argyrios Kyrtzidis · 15 years ago
  6. 5efb06f Fix reading FunctionDecls from PCH. by Argyrios Kyrtzidis · 15 years ago
  7. 7d53048 Fix reading ClassTemplateDecl's ClassTemplateSpecializationDecls and ClassTemplatePartialSpecializationDecls. by Argyrios Kyrtzidis · 15 years ago
  8. 37ffed3 Fully read/write CXXRecordDecl for PCH. by Argyrios Kyrtzidis · 15 years ago
  9. f48d45e Fix reading of DependentNameType. by Argyrios Kyrtzidis · 15 years ago
  10. 43921b5 Allow reading of InjectedClassNameType from PCH even when its decl is currently initializing. by Argyrios Kyrtzidis · 15 years ago
  11. 240437b Fix broken reading of member pointer from PCH. by Argyrios Kyrtzidis · 15 years ago
  12. 9763e22 - Allow a typedef type to be read from PCH even if its decl is currently initializing. by Argyrios Kyrtzidis · 15 years ago
  13. f52a5d2 Fix broken reading of "#lines" from PCH. by Argyrios Kyrtzidis · 15 years ago
  14. d8a0c6f Generally types expect an initialized TypeDecl; its safer and less complicated to delay PCH reading the type of a TypeDecl. by Argyrios Kyrtzidis · 15 years ago
  15. b8b03e6 Add some side-effect free Create methods for TypeDecl subclasses and use them for PCH reading. by Argyrios Kyrtzidis · 15 years ago
  16. 1ad6648 Driver/IRgen: Add support for -momit-leaf-frame-pointer. by Daniel Dunbar · 15 years ago
  17. 8f4eae9 Fix PCH support for UnresolvedUsingTypenameDecl and UnresolvedUsingValueDecl. by Argyrios Kyrtzidis · 15 years ago
  18. ae8b17f Support DependentSizedArrayType for PCH. by Argyrios Kyrtzidis · 15 years ago
  19. 37bdfe2 Support ParenListExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  20. 7f3a545 Headers: Define __INT64_TYPE__ in terms of getInt64Type(), which isn't always by Daniel Dunbar · 15 years ago
  21. 6764334 Support C++ friend declarations for PCH. by Argyrios Kyrtzidis · 15 years ago
  22. d98a2ab When we know that we are at sub-statement reading (which is all of PCHStmtReader) use the "faster" ReadSubStmt. No functionality change. by Argyrios Kyrtzidis · 15 years ago
  23. 919e693 Modify the way sub-statements are stored and retrieved from PCH. by Argyrios Kyrtzidis · 15 years ago
  24. 6a9ca7a Remove state assertion. by Ted Kremenek · 15 years ago
  25. 4ae4c91 Don't crash in InitializePreprocessor() when there is no valid PTHManager. Fixes <rdar://problem/8098441>. by Ted Kremenek · 15 years ago
  26. de4bd18 Support CXXPseudoDestructorExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  27. 12dffcd Support DependentScopeDeclRefExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  28. 36c76f0 Refactor PCH reading/writing of template arguments passed to expressions. by Argyrios Kyrtzidis · 15 years ago
  29. 17cfded Fix PCH emitting/reading for template arguments that contain expressions. by Argyrios Kyrtzidis · 15 years ago
  30. dc767e3 Fix various bugs in recent commits for C++ PCH. by Argyrios Kyrtzidis · 15 years ago
  31. a4d7145 Implement support for -fwrapv, rdar://7221421 by Chris Lattner · 15 years ago
  32. abfe094 Implement support for #pragma message, patch by Michael Spencer! by Chris Lattner · 15 years ago
  33. b24e199 Support NonTypeTemplateParmDecl for PCH. by Argyrios Kyrtzidis · 15 years ago
  34. c4117aa Make PCHWriter::FlushStmts() robust. If we added null Stmts, reading them back got messed up. by Argyrios Kyrtzidis · 15 years ago
  35. 3acad62 Support DependentTemplateSpecializationType and ElaboratedType for PCH. by Argyrios Kyrtzidis · 15 years ago
  36. a56b049 Add forgotten breaks in case statements. by Argyrios Kyrtzidis · 15 years ago
  37. bd65bb5 Support UnresolvedLookupExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  38. a77eb08 Support UnresolvedMemberExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  39. 12bf28f Print source location when we encounter unhandled statement during PCH writing. by Argyrios Kyrtzidis · 15 years ago
  40. a4f6bba Remove HAS_TLS define. by Eric Christopher · 15 years ago
  41. 8dfbd8b Support a couple more C++ Exprs for PCH. by Argyrios Kyrtzidis · 15 years ago
  42. 5e1b7c2 Fix broken de/serialization for a couple of C++ Exprs. by Argyrios Kyrtzidis · 15 years ago
  43. 1f84f8d More clang support for darwin tls. Add a __has_feature macro and by Eric Christopher · 15 years ago
  44. dd41c14 Support C++ class template specializations and partial specializations for PCH. by Argyrios Kyrtzidis · 15 years ago
  45. 788b0fd improve altivec vector bool/pixel support, patch by Anton Yartsev by Chris Lattner · 15 years ago
  46. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 15 years ago
  47. 95fc98c Read/write CXXDeleteExpr from/to PCH. by Argyrios Kyrtzidis · 15 years ago
  48. f511ba6 Support emitting/reading function templates to/from PCH. by Argyrios Kyrtzidis · 15 years ago
  49. 44f8c37 -Introduce PCHReader::ReadTemplateArgumentLoc() by Argyrios Kyrtzidis · 15 years ago
  50. 7255a2d implement support for -finstrument-functions, patch by Nelson Elhage! by Chris Lattner · 15 years ago
  51. 43dec6b Alter the internal representation of the condition variable in by Douglas Gregor · 15 years ago
  52. 45f9b7e Bug 7377: printf checking fails to flag some undefined behavior by Tom Care · 15 years ago
  53. 5bf1bdc Combine ClassTemplateDecl's PreviousDeclaration with CommonPtr, as in FunctionTemplateDecl. by Argyrios Kyrtzidis · 15 years ago
  54. b01a552 Support PCH emitting/reading of using declarations. by Argyrios Kyrtzidis · 15 years ago
  55. 28d16d7 Include a hack to allow loading of templated CXXRecordDecls and test template reading from PCH. by Argyrios Kyrtzidis · 15 years ago
  56. 8731ca7 Initial support for reading templates from PCH. by Argyrios Kyrtzidis · 15 years ago
  57. 90b715e Initial support for writing templates to PCH. by Argyrios Kyrtzidis · 15 years ago
  58. 0a76aae introduce a new CharSourceRange class, and enhance the diagnostics routines by Chris Lattner · 15 years ago
  59. c070cc6 Given Decl::isUsed() a flag indicating when to consider the "used" by Douglas Gregor · 15 years ago
  60. ee6e4b4 Update CMake build for new attribute changes. by Sean Hunt · 15 years ago
  61. 387475d Implement first TD-based usage of attributes. by Sean Hunt · 15 years ago
  62. 3177aae Frontend: Allow passing -cc1 level arguments to plugins. Patch by Troy Straszheim! by Daniel Dunbar · 15 years ago
  63. ea9e56d Add Cygwin C++ header search path. by Douglas Gregor · 15 years ago
  64. c54539c fix the various buildbot failures by ensuring that tokens are really completely initialized. by Chris Lattner · 15 years ago
  65. 90db74c fix an uninitialized variable, patch by Michael Spencer! by Chris Lattner · 15 years ago
  66. 9b414d3 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 15 years ago
  67. 7cf84d6 Implement -fvisibility-inlines-hidden. <rdar://problem/7819834> by Douglas Gregor · 15 years ago
  68. fcd783d Change AnalysisConsumer to analyze functions created by instantiantiating a macro. Fixes PR 7361. by Ted Kremenek · 15 years ago
  69. 99e14a0 fix the inline asm diagnostics to emit the error on the primary by Chris Lattner · 15 years ago
  70. 6133aeb fix PR7360: -P mode turns off line markers, but not blank space. by Chris Lattner · 15 years ago
  71. 1715bf5 Fix PCH issue. Attributes of a declaration were truncated to just one when the decl was read from a PCH file. by Argyrios Kyrtzidis · 15 years ago
  72. 7e4953e Driver: Fix arg_iterator typing to reflect that it is really an iterator over Arg*s. by Daniel Dunbar · 15 years ago
  73. c72cc50 Preprocessor: Ignore unknown pragmas in -E -dM and -Eonly modes. by Daniel Dunbar · 15 years ago
  74. 5edbdcc Add an option -fshow-overloads=best|all to limit the number of overload by Jeffrey Yasskin · 15 years ago
  75. 98b7c5c Add an option to specify the target C++ ABI to the frontend. Use it to by Charles Davis · 15 years ago
  76. 3350095 Split DependentNameType into two types. DependentNameType represents the by John McCall · 15 years ago
  77. e3e210c Another chunk of the new RecursiveASTVisitor implementation: switch the return by Chandler Carruth · 15 years ago
  78. bfbb39d Frontend: Fix crashes on error paths. by Daniel Dunbar · 15 years ago
  79. dfc35e3 Major redesign of the RecursiveASTVisitor. This implements the majority of the by Chandler Carruth · 15 years ago
  80. c4dec1c Makefiles: Set Clang CPP compiler flags in a single location, instead of scattered throughout the project Makefiles. by Daniel Dunbar · 15 years ago
  81. afed099 Makefile: Switch Clang Makefiles to always include the top-level Clang Makefile. by Daniel Dunbar · 15 years ago
  82. 4cbbd94 Frontend: Add CodeGenAction support for handling LLVM IR. - This magically enables using 'clang -cc1' as a replacement for most of 'llvm-as', 'llvm-dis', 'llc' and 'opt' functionality. For example, 'llvm-as' is: $ clang -cc1 -emit-llvm-bc FOO.ll -o FOO.bc by Daniel Dunbar · 15 years ago
  83. faddc3e Frontend: Add FrontendAction support for handling LLVM IR inputs. by Daniel Dunbar · 15 years ago
  84. 685ac66 FrontendAction: Track active file kind. by Daniel Dunbar · 15 years ago
  85. eb58d83 Frontend: Rename hasASTSupport to hasASTFileSupport, which is more accurate. by Daniel Dunbar · 15 years ago
  86. 2056048 Frontend: Move some initialization from CompilerInstance to FrontendAction, to parallel what is done for AST inputs. by Daniel Dunbar · 15 years ago
  87. d3598a6 Frontend: Change FrontendAction::BeginSourceFile to take the input kind instead of an IsAST bool. by Daniel Dunbar · 15 years ago
  88. c34ce3f Frontend: Lift InputKind enumeration to top level. by Daniel Dunbar · 15 years ago
  89. 05a7f3d Frontend: Drop unnecessary TargetData argument to EmitBackendOutput, we always by Daniel Dunbar · 15 years ago
  90. 897c676 Frontend: Factor clang::EmitBackendOutput out of CodeGenAction. by Daniel Dunbar · 15 years ago
  91. 6b0cf67 Frontend: Add CodeGenOptions::SimplifyLibCalls, and eliminate LangOptions argument to BackendConsumer. by Daniel Dunbar · 15 years ago
  92. 6206d53 Added AccessSpecDecl node. by Abramo Bagnara · 15 years ago
  93. 83a230c Remember type source information for Objective C property declarations. by John McCall · 15 years ago
  94. 89f9d3a Added a field to BlockDeclRefExpr for future use. No functionality change yet. by Fariborz Jahanian · 15 years ago
  95. e7d6c2c Add ARM paths for debian. Not enough to bootstrap on a beagle board, but by Rafael Espindola · 15 years ago
  96. 82dc009 Restructure how we interpret block-literal declarators. Correctly handle by John McCall · 15 years ago
  97. 5250f27 Hack in some really terrible C++ record PCH support that I need right now. by John McCall · 15 years ago
  98. 8ee5939 Fix undefined behavior, noticed by GCC 4.5. Patch by Dimitry Andric! by Daniel Dunbar · 15 years ago
  99. 76bd1f3 Alter the ExternalASTSource interface to permit by-name lookups. PCH continues to by John McCall · 15 years ago
  100. 9a55591 Convert DeclNodes to use TableGen. by Sean Hunt · 15 years ago