- 4557e47 Revert Sebastian's build-breaking patch. by Douglas Gregor · 15 years ago[Renamed (99%) from lib/Serialization/PCHReader.cpp]
- 93c9729 Create a new Serialization module that contains all the PCH code, and will contain all the module code in the future. Update the Makefiles, CMake projects and the Xcode project. I hope I did everything right for Xcode. No functionality change. by Sebastian Redl · 15 years ago[Renamed (99%) from lib/Frontend/PCHReader.cpp]
- 49b96d1 Change Sema's UnusedStaticFuncs to UnusedFileScopedDecls to allow also keeping track of unused file scoped variables. by Argyrios Kyrtzidis · 15 years ago
- 914ed9d Teach ASTUnit to hold on to the Sema object and ASTConsumer that are by Douglas Gregor · 15 years ago
- 0b17c61 Instead of modifying the ObjC AST to not modify existing declarations, teach chained PCH to overwrite declarations from earlier PCH files in dependent ones. Tell Sema to note when it changes AST nodes so that they have to be reserialized. Finally, the ObjCProtocolDecls created in forward decls, like the ObjCInterfaceDecls in @class forward decls, are not lexically part of the decl context; only the definition is. by Sebastian Redl · 15 years ago
- e737f50 Move Sema's headers into include/clang/Sema, renaming a few along the way. by Douglas Gregor · 15 years ago
- 646395b -Make TokenID of IdentifierInfo read-only, remove setTokenID(). by Argyrios Kyrtzidis · 15 years ago
- 27372b4 Reintroduce the ASTConsumer/ASTUnit fix from r110610, it has nothing to do with the breakage. by Sebastian Redl · 15 years ago
- deacbdc Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, by Douglas Gregor · 15 years ago
- 74c730a - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for forward declarations and the definition. by Sebastian Redl · 15 years ago
- 8e706f4 Refactor into functions PCH reading/writing the CXXBaseOrMemberInitializers. No functionality change. by Argyrios Kyrtzidis · 15 years ago
- 4056680 Write various C++-specific records to chained PCHs. Tests will come later. by Sebastian Redl · 15 years ago
- 0e03638 Store the pending implicit instantiations in the PCH and perform them at the end of the translation unit that by Argyrios Kyrtzidis · 15 years ago
- 72b9057 Support #pragma weak for PCH. by Argyrios Kyrtzidis · 15 years ago
- fa78dec Bring stats for the method pool back. by Sebastian Redl · 15 years ago
- 725cd96 Implement per-file reading of the selector table. This disables statistics about method pool hits for the moment. by Sebastian Redl · 15 years ago
- e58aa89 When chaining, only write interesting selectors to the PCH. by Sebastian Redl · 15 years ago
- 5d05007 Store the IDs of selectors in the PCH file explicitly. by Sebastian Redl · 15 years ago
- 059612d Incomplete promotion of selector info to per-file data. by Sebastian Redl · 15 years ago
- a865005 Apart from storing/retrieving the previous redeclaration from PCH, also store/retrieve the most recent by Argyrios Kyrtzidis · 15 years ago
- be4ebcd Avoid writing a VTABLE_USES record in PCH if there are no entries. by Argyrios Kyrtzidis · 15 years ago
- d8c5abb Query only the latest version of an identifier in the PCH chain. Make sure this version holds the entire declaration chain. This is a much saner solution than trying to merge the info from all elements, and makes redeclarations work properly. Expand the declarations test case to cover more compliated cases. by Sebastian Redl · 15 years ago
- 76c38d3 Read/write in PCH Sema's StdNamespace and StdBadAlloc and use a LazyDeclPtr for them that will deserialize them when needed. by Argyrios Kyrtzidis · 15 years ago
- 29ee3a2 Refactor the way PCHReader tracks whether we are in recursive loading. by Argyrios Kyrtzidis · 15 years ago
- ffaab3e Make macro weirdness in chained PCH work. This required changing the way PCHReader and PCHWriter are initialized to correctly pick up all initializer. On the upside, this means that there is far less repetition in the dependent PCH now. by Sebastian Redl · 15 years ago
- a9f2368 Support extended vector types in chained PCH. by Sebastian Redl · 15 years ago
- 083abdf Record macros in dependent PCHs. Also add various info tables to dependent PCHs; tests for this to follow. by Sebastian Redl · 15 years ago
- d692af7 Update the list of lexical decls in the TU for chained PCHs. This makes -ast-print show the decls from the dependent PCH. by Sebastian Redl · 15 years ago
- fae3b2f Implement -fno-validate-pch at the -cc1 level, which suppresses most by Douglas Gregor · 15 years ago
- 681d723 - Fix recording of offsets of types in dependent PCHs. by Sebastian Redl · 15 years ago
- 5606220 Add source location information to C++ base specifiers. by Nick Lewycky · 15 years ago
- f2f0f03 Make declarations in the dependent PCH visible, for C at least. by Sebastian Redl · 15 years ago
- 3201983 PCH read/write for selector reference pool. Finishes off radar 6507158. by Fariborz Jahanian · 15 years ago
- 577d479 Thread bitstream cursors all the way through the AST reading stuff. This way, reading a trivial 2-element chained file actually works. by Sebastian Redl · 15 years ago
- 0fa7d0b Allow loading declcontext information from any file in the chain. Properly write source locations to dependent files. WIP by Sebastian Redl · 15 years ago
- d27d3fc Allow loading macros from any file in the chain. WIP by Sebastian Redl · 15 years ago
- 04e6fd4 Promote some macro-related stuff to per-file data. Fix a cache-inefficient nested loop by inverting the nesting. Store the size of each file in the chain; will need this later for statement offsets. by Sebastian Redl · 15 years ago
- 11f5ccf Allow loading identifiers from any file in the chain. WIP by Sebastian Redl · 15 years ago
- 971dd44 Apparently not every system thinks that references in pairs are as cool as I think. by Sebastian Redl · 15 years ago
- cb526aa Allow loading declarations from any file in the chain. WIP by Sebastian Redl · 15 years ago
- aaec0aa Allow loading types from any file in the chain. WIP by Sebastian Redl · 15 years ago
- 190faf7 Allow loading source locations from any file in the chain. WIP by Sebastian Redl · 15 years ago
- 518d8cb More work on getting PCHReader to handle multiple files. Promote SLocOffsets to per-file data. WIP by Sebastian Redl · 15 years ago
- 2da08f9 Promote IdentifierOffsets to per-file data. by Sebastian Redl · 15 years ago
- 12d6da0 Promote DeclOffsets and TypeOffsets to per-file data. by Sebastian Redl · 15 years ago
- 93fb9ed Promote the identifier table to per-file data. Also, if a CHAINED_METADATA record exists, it has to be the first thing in the PCH file. by Sebastian Redl · 15 years ago
- fbd4bf1 Teach the PCH reader to load the dependency when encountering a chain metadata record. WIP by Sebastian Redl · 15 years ago
- cdf3b83 Separate out the initial loading of a PCH so that loading chained PCHs can reuse it. by Sebastian Redl · 15 years ago
- 9137a52 First baby steps towards PCHReader being able to keep track of multiple PCH files. WIP by Sebastian Redl · 15 years ago
- 1476ed4 Add a little more data to chained PCHs. WIP by Sebastian Redl · 15 years ago
- c76c9e0 Suppress !+Asserts warning. by Daniel Dunbar · 15 years ago
- 30c514c Add a callback interface that allows interested parties to get notified whenever PCHReader deserializes a type or decl (and possibly other things in the future). Have PCHWriter implement these callbacks as noops and register to receive them if we're chaining PCHs. This will allow PCHWriter to track the IDs of these things, which it needs to write the dependent files. WIP by Sebastian Redl · 15 years ago
- ec1b1cc Pass StringRefs by value. by Benjamin Kramer · 15 years ago
- 07a353c Increase the max PCH level for declarations to 7. Add a FromPCH flag to types. by Sebastian Redl · 15 years ago
- 7e9ad8b Make PCHReader cope with PCH files containing more than one predefines buffer. by Sebastian Redl · 15 years ago
- a0068fc Introduce -f{no-}spell-checking options to enable/disable by Douglas Gregor · 15 years ago
- 8871a44 Introduce PCHReader::GetTranslationUnitDecl() and use it instead of ReadDeclRecord when initializing. by Argyrios Kyrtzidis · 15 years ago
- be19110 For TagType and TemplateSpecializationType, isDependent calculation may be invalid because some decls that the by Argyrios Kyrtzidis · 15 years ago
- d2bb2c0 Fix broken reading of NestedNameSpecifiers from PCH. by Argyrios Kyrtzidis · 15 years ago
- bb80a8e Delay passing InterestingDecls to the Consumer until when we know we are not in recursive loading and the by Argyrios Kyrtzidis · 15 years ago
- d455add Add to PCH missing Sema information about VTable uses and dynamic classes. by Argyrios Kyrtzidis · 15 years ago
- 400f512 Fix a regression of a previous commit of mine (rdar://8158953). by Argyrios Kyrtzidis · 15 years ago
- 0061138 Don't try to install the __[u]int128_t identifier if it is already installed by PCHReader. by Argyrios Kyrtzidis · 15 years ago
- 0745d0a Read/write CastExpr's CXXBaseSpecifierArray for PCH. by Argyrios Kyrtzidis · 15 years ago
- 37ffed3 Fully read/write CXXRecordDecl for PCH. by Argyrios Kyrtzidis · 15 years ago
- f48d45e Fix reading of DependentNameType. by Argyrios Kyrtzidis · 15 years ago
- 43921b5 Allow reading of InjectedClassNameType from PCH even when its decl is currently initializing. by Argyrios Kyrtzidis · 15 years ago
- 240437b Fix broken reading of member pointer from PCH. by Argyrios Kyrtzidis · 15 years ago
- 9763e22 - Allow a typedef type to be read from PCH even if its decl is currently initializing. by Argyrios Kyrtzidis · 15 years ago
- f52a5d2 Fix broken reading of "#lines" from PCH. by Argyrios Kyrtzidis · 15 years ago
- ae8b17f Support DependentSizedArrayType for PCH. by Argyrios Kyrtzidis · 15 years ago
- 919e693 Modify the way sub-statements are stored and retrieved from PCH. by Argyrios Kyrtzidis · 15 years ago
- 17cfded Fix PCH emitting/reading for template arguments that contain expressions. by Argyrios Kyrtzidis · 15 years ago
- dc767e3 Fix various bugs in recent commits for C++ PCH. by Argyrios Kyrtzidis · 15 years ago
- a4d7145 Implement support for -fwrapv, rdar://7221421 by Chris Lattner · 15 years ago
- 3acad62 Support DependentTemplateSpecializationType and ElaboratedType for PCH. by Argyrios Kyrtzidis · 15 years ago
- 8dfbd8b Support a couple more C++ Exprs for PCH. by Argyrios Kyrtzidis · 15 years ago
- dd41c14 Support C++ class template specializations and partial specializations for PCH. by Argyrios Kyrtzidis · 15 years ago
- 788b0fd improve altivec vector bool/pixel support, patch by Anton Yartsev by Chris Lattner · 15 years ago
- 44f8c37 -Introduce PCHReader::ReadTemplateArgumentLoc() by Argyrios Kyrtzidis · 15 years ago
- 8731ca7 Initial support for reading templates from PCH. by Argyrios Kyrtzidis · 15 years ago
- 90b715e Initial support for writing templates to PCH. by Argyrios Kyrtzidis · 15 years ago
- 3350095 Split DependentNameType into two types. DependentNameType represents the by John McCall · 15 years ago
- 8ee5939 Fix undefined behavior, noticed by GCC 4.5. Patch by Dimitry Andric! by Daniel Dunbar · 15 years ago
- 76bd1f3 Alter the ExternalASTSource interface to permit by-name lookups. PCH continues to by John McCall · 15 years ago
- e4da7a0 Added basic source locations to Elaborated and DependentName types. by Abramo Bagnara · 15 years ago
- c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 15 years ago
- a63db84 Revert r103770, "Added basic source locations to Elaborated and DependentName by Daniel Dunbar · 15 years ago
- 5431299 Added basic source locations to Elaborated and DependentName types. by Abramo Bagnara · 15 years ago
- 465d41b Merged Elaborated and QualifiedName types. by Abramo Bagnara · 15 years ago
- d259836 pchify CXXTemporary, CXXBindTemporaryExpr, and CXXExprWithTemporaries. by Chris Lattner · 15 years ago
- 6ad9ac0 add PCH support for a bunch of C++ Decls, patch by Andrew Sutton! by Chris Lattner · 15 years ago
- 2bb5dda More work toward implementing NeXt's -fno-constant-cfstrings - wip. by Fariborz Jahanian · 15 years ago
- 4c9d8d0 Check for -fno-constant-cfstrings consistency in pch. by Fariborz Jahanian · 15 years ago
- eb5d7b7 Add support for '-fgnu-keywords' and '-fasm' to Clang's driver. They are not by Chandler Carruth · 15 years ago
- 9f692a0 On Windows, disable the modification-time check for files used in by Douglas Gregor · 15 years ago
- 719770d Make code-completion for Objective-C message sends to "id" work in the by Douglas Gregor · 15 years ago
- a0a270c Match MemoryBuffer API changes. by Chris Lattner · 15 years ago
- 4714c12 Rename TypenameType to DependentNameType in anticipation of some by Douglas Gregor · 15 years ago
- 425ef72 Remember the regparm attribute in FunctionType::ExtInfo. Fixes PR3782. by Rafael Espindola · 15 years ago