[libclang] Add a flag to create the precompiled preamble on the first parse.
Summary: The current default is to create the preamble on the first reparse, aka second parse. This is useful for clients that do not want to block when opening a file because serializing the preamble takes a bit of time. However, this makes the reparse much more expensive and that may be on the critical path as it's the first interaction a user has with the source code. YouCompleteMe currently optimizes for the first code interaction by parsing the file twice when loaded. That's just unnecessarily slow and this flag helps to avoid that. Reviewers: doug.gregor, klimek Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D15490 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@255635 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang-c/Index.h 9 additions, 1 deletioninclude/clang-c/Index.h
- include/clang/Frontend/ASTUnit.h 10 additions, 6 deletionsinclude/clang/Frontend/ASTUnit.h
- lib/Frontend/ASTUnit.cpp 19 additions, 16 deletionslib/Frontend/ASTUnit.cpp
- test/Index/complete-preamble.cpp 11 additions, 2 deletionstest/Index/complete-preamble.cpp
- tools/c-index-test/c-index-test.c 3 additions, 1 deletiontools/c-index-test/c-index-test.c
- tools/libclang/CIndex.cpp 9 additions, 2 deletionstools/libclang/CIndex.cpp
- tools/libclang/Indexing.cpp 9 additions, 1 deletiontools/libclang/Indexing.cpp
Loading
Please register or sign in to comment