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