1. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  2. 62c78d5 Rename *PendingImplicitInstantiations to *PendingInstantiations. No by Chandler Carruth · 14 years ago
  3. 781472f Split FunctionScopeInfo and BlockScopeInfo into their own header. by John McCall · 14 years ago
  4. 384aff8 Remove Sema.h's dependency on DeclCXX.h. by John McCall · 14 years ago
  5. 50df6ae Remove the DenseSet dependency from Sema.h. by John McCall · 14 years ago
  6. 0a2c5e2 Teach Sema to live without CodeCompleteConsumer.h. by John McCall · 14 years ago
  7. e0054f6 Remove AnalysisBasedWarnings.h's dependency on Type.h by John McCall · 14 years ago
  8. 2a7fb27 Move more stuff out of Sema.h. by John McCall · 14 years ago
  9. 30ecc0a Sort the forward declarations. by John McCall · 14 years ago
  10. 892ac04 Reorganize and verbosely document some of ASTReader's fields. by Sebastian Redl · 14 years ago
  11. cd9e339 Remove an unused field in ASTReader by Sebastian Redl · 14 years ago
  12. ff75dfd Make sure CXXABI is destroyed. by Argyrios Kyrtzidis · 14 years ago
  13. eb0d014 Give a slight preference to functions returning "void" when we're by Douglas Gregor · 14 years ago
  14. d43dd83 In code-completion contexts where both types and other values are by Douglas Gregor · 14 years ago
  15. fb97e75 When trying to resolve the address of an overloaded expression, by John McCall · 14 years ago
  16. 4153a06 AST writer support for having specializations of templates from earlier in the chain. This ought to finish C++ chained PCH support. by Sebastian Redl · 14 years ago
  17. 6e50e00 AST reader support for having specializations of templates from earlier in the chain. by Sebastian Redl · 14 years ago
  18. f7c16d9 Frontend: Add basic -H support. by Daniel Dunbar · 14 years ago
  19. 23637be correct the -isystem option to not add the -isysroot path. Only the weird by Chris Lattner · 14 years ago
  20. 9325eaf Fix printf format string checking for '%lc' (which expects a wint_t or compatible argument). Fixes PR 7981. by Ted Kremenek · 14 years ago
  21. f29c523 Implement code completion for preprocessor expressions and in macro arguments. by Douglas Gregor · 14 years ago
  22. 9db9ad3 Implement -iwithsysroot, an apple extension which is a close cousin of -isystem. by Chris Lattner · 14 years ago
  23. ef52bcb Improvements to IdempotentOperationChecker and its use of PseudoConstantAnalysis by Tom Care · 14 years ago
  24. 120d63c Move some of SemaOverload's API to various places in Overload.h, and kill by John McCall · 14 years ago
  25. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
  26. f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 14 years ago
  27. aab0132 Sema doesn't need these STL headers. by John McCall · 14 years ago
  28. 713da40 Teach InheritingConcreteTypeLoc to play nicely with dyn_cast. by Douglas Gregor · 14 years ago
  29. 09a63c9 Parse all kinds of declarations as part of a linkage-specification, by Douglas Gregor · 14 years ago
  30. fbce0e1 It turns out that this template is only instantiated at one type. by John McCall · 14 years ago
  31. 5f1e094 More header elimination. The goal of all this is to allow Parser to by John McCall · 14 years ago
  32. 7a1fad3 Remove a header dependency from Sema.h at the cost of some type safety. by John McCall · 14 years ago
  33. 7cd088e Struggle mightily against header inclusion in Sema.h. by John McCall · 14 years ago
  34. 60d7b3a OwningExprResult -> ExprResult. This patch brought to you by by John McCall · 14 years ago
  35. 182f709 Fold ASTOwningResult back into ActionResult. by John McCall · 14 years ago
  36. b3d8748 Abstract out passing around types and kill off ActionBase. by John McCall · 14 years ago
  37. d32b022 Provide code completion results for the context-sensitive Objective-C by Douglas Gregor · 14 years ago
  38. 1d1e42b Write visible update blocks. No regressions in normal PCH functionality, but no tests for the chain yet. by Sebastian Redl · 14 years ago
  39. e1dde81 Read the UPDATE_VISIBLE record, and add its visible decls to the lookup tables. Also, free the lookup tables when destructing the ASTReader. by Sebastian Redl · 14 years ago
  40. 8b12273 Baby step towards supporting namespaces in chained PCH. by Sebastian Redl · 14 years ago
  41. 076c22a Silence warning about C++-style comments. by Peter Collingbourne · 14 years ago
  42. 1b7255d Move ExecuteCompilerInvocation to a new library FrontendTool by Peter Collingbourne · 14 years ago
  43. b556db4 Don't call this field 'Expr', it changes lookup in illegal ways that by John McCall · 14 years ago
  44. 9ae2f07 Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). by John McCall · 14 years ago
  45. 58ddb60 Introduce new libclang API functions that determine the availability by Douglas Gregor · 14 years ago
  46. d097be8 Handling remaining rule for synthesize bitfields in by Fariborz Jahanian · 14 years ago
  47. 00577ad Driver: Move Clang "triple" computation routines to method on the by Daniel Dunbar · 14 years ago
  48. fb62941 Introduce a code-completion hook for the Objective-C collection by Douglas Gregor · 14 years ago
  49. db34ab7 Several small changes to PseudoConstantAnalysis and the way IdempotentOperationChecker uses it. by Tom Care · 14 years ago
  50. 000835d Support for IRGen of synthesize bitfield ivars in by Fariborz Jahanian · 14 years ago
  51. 2ccccb3 Introduce a new code-completion point when we're parsing a by Douglas Gregor · 14 years ago
  52. 11add9b Add XML for CXXConstructExpr, from Benoit Belley! by Douglas Gregor · 14 years ago
  53. 2b5289b Push DeclGroupRefs and TemplateNames in an opaque but type-safe way by John McCall · 14 years ago
  54. 1f58816 Kill off Parser::TemplateParameterList to avoid misparses. by John McCall · 14 years ago
  55. ca0408f Sundry incremental steps towards killing off Action. by John McCall · 14 years ago
  56. 0bab0cd Abstract out everything having to do with member pointers into the ABI by John McCall · 14 years ago
  57. db68e28 Eliminate a stale assertion. Fixes Clang self-host. by Douglas Gregor · 14 years ago
  58. ee79a4c The ARM C++ ABI is sufficiently different from the Itanium C++ ABI that by John McCall · 14 years ago
  59. ff58e36 Visual Studio tools used on win32 hosts when targeting win32. by Michael J. Spencer · 14 years ago
  60. d226f65 DeclPtrTy -> Decl * by John McCall · 14 years ago
  61. a60786b Fix an issue with writing to PCH another included PCH, introduced by the "using an AST on-disk hash table for name lookup" commit. by Argyrios Kyrtzidis · 14 years ago
  62. f08b1bb Add an iterator to OnDiskChainedHashTable to allow iterating over all the key/data pairs. by Argyrios Kyrtzidis · 14 years ago
  63. 2c18bb7 objective-c ivar refactoring patch. Iterations by Fariborz Jahanian · 14 years ago
  64. fa78c91 Add a comment. by Dan Gohman · 14 years ago
  65. 1951085 Another step in the process of making the parser depend on Sema: by John McCall · 14 years ago
  66. 074dcc8 Use the AST on-disk hash table for name lookup inside a DeclContext. by Argyrios Kyrtzidis · 14 years ago
  67. 5d26768 Introduce the mechanism for building an AST on-disk hash table for name lookup inside a DeclContext but don't use it yet. by Argyrios Kyrtzidis · 14 years ago
  68. eb3f04e Refactoring; move the functionality of ASTWriter::GetOrCreateTypeID to the more generic by Argyrios Kyrtzidis · 14 years ago
  69. 7fb3518 Introduce ASTWriter::GetOrCreateTypeID and move most of the functionality of AddTypeRef there. by Argyrios Kyrtzidis · 14 years ago
  70. 26fca90 A bit of refactoring; Introduce ASTWriter::GetOrCreateTypeIdx and move the emission of types there. by Argyrios Kyrtzidis · 14 years ago
  71. 01b81c4 Rename TypeIDs -> TypeIdxs. No functionality change. by Argyrios Kyrtzidis · 14 years ago
  72. c8e5d51 serialization::TypeID is used with or without qualifiers, both as index and as index + qualifiers. by Argyrios Kyrtzidis · 14 years ago
  73. c9c6b90 Update help text for -cc1 -unoptimized-cfg. by Ted Kremenek · 14 years ago
  74. 2283d79 When performing code-completion in the presence of a preamble, make by Douglas Gregor · 14 years ago
  75. 096832c Regularize the API for accessing explicit template arguments. by John McCall · 14 years ago
  76. 41a621d Intialize all of the code-generation options by Douglas Gregor · 14 years ago
  77. 4786c15 Add machine-parseable Fix-It output as part of diagnostics, under the by Douglas Gregor · 14 years ago
  78. a87cdc0 Remove default argument from operator delete; per report on cfe-dev, fixes by Eli Friedman · 14 years ago
  79. 1bf8d6f Add a missing initializer. by Sean Hunt · 14 years ago
  80. 20cf717 Add some enum goodness as requested by Chris. Now instead of storing the by Charles Davis · 14 years ago
  81. 671947b Plug a leak when precompiling the preamble in ASTUnit. by Douglas Gregor · 14 years ago
  82. 58f281f Add warning for functions/blocks that have attribute 'noreturn' but return a non-void result. (<rdar://problem/7562925>) by Ted Kremenek · 14 years ago
  83. 501c103 Make sure to deallocate the identifier lookup tables and selector tables by Douglas Gregor · 14 years ago
  84. 8538e8d Rename pch namespace to serialization. by Sebastian Redl · 14 years ago
  85. 05a0760 Rename PCHBitCodes.h -> ASTBitCodes.h by Sebastian Redl · 14 years ago
  86. f29f0a2 Rename stuff in PCHBitCodes.h by Sebastian Redl · 14 years ago
  87. 6ab7cd8 Rename the ASTReader header files. by Sebastian Redl · 14 years ago
  88. 3c7f413 More PCH -> AST renaming. by Sebastian Redl · 14 years ago
  89. 571db7f Rename various classes from PCH to AST. by Sebastian Redl · 14 years ago
  90. 60adf4a Rename PCHStmtReader -> ASTStmtReader. by Sebastian Redl · 14 years ago
  91. d527cc0 Rename PCHDeclReader -> ASTDeclReader. by Sebastian Redl · 14 years ago
  92. c43b54c Rename PCHReader to ASTReader. by Sebastian Redl · 14 years ago
  93. 7faa2ec Rename PCHWriter.h to ASTWriter.h by Sebastian Redl · 14 years ago
  94. 3397c55 Do the PCH->AST rename for ASTWriter's implementation parts. by Sebastian Redl · 14 years ago
  95. a4232eb Rename PCHWriter to ASTWriter by Sebastian Redl · 14 years ago
  96. cf807c4 Generate Attr subclasses with TableGen. by Sean Hunt · 14 years ago
  97. ea94bbc libclang: Put clang_reparseTranslationUnit inside a crash recovery context. by Daniel Dunbar · 14 years ago
  98. bdbb004 Simplify the ownership model for DiagnosticClients, which was really by Douglas Gregor · 14 years ago
  99. 245adab Added psuedo-constant analysis and integrated it into the false positive reduction stage in IdempotentOperationChecker. by Tom Care · 14 years ago
  100. 2c1ab90 no need to pass bumppointer allocator into macroinfo::destroy by Chris Lattner · 14 years ago