@@ -97,7 +97,7 @@ static llvm::sys::cas_flag ActiveASTUnitObjects;
97
97
ASTUnit::ASTUnit (bool _MainFileIsAST)
98
98
: OnlyLocalDecls(false ), CaptureDiagnostics(false ),
99
99
MainFileIsAST(_MainFileIsAST),
100
- CompleteTranslationUnit( true ), WantTiming(getenv(" LIBCLANG_TIMING" )),
100
+ TUKind(TU_Complete ), WantTiming(getenv(" LIBCLANG_TIMING" )),
101
101
OwnsRemappedFileBuffers(true ),
102
102
NumStoredDiagnosticsFromDriver(0 ),
103
103
ConcurrencyCheckValue(CheckUnlocked),
@@ -759,8 +759,8 @@ class TopLevelDeclTrackerAction : public ASTFrontendAction {
759
759
TopLevelDeclTrackerAction (ASTUnit &_Unit) : Unit(_Unit) {}
760
760
761
761
virtual bool hasCodeCompletionSupport () const { return false ; }
762
- virtual bool usesCompleteTranslationUnit () {
763
- return Unit.isCompleteTranslationUnit ();
762
+ virtual TranslationUnitKind getTranslationUnitKind () {
763
+ return Unit.getTranslationUnitKind ();
764
764
}
765
765
};
766
766
@@ -844,7 +844,7 @@ class PrecompilePreambleAction : public ASTFrontendAction {
844
844
845
845
virtual bool hasCodeCompletionSupport () const { return false ; }
846
846
virtual bool hasASTFileSupport () const { return false ; }
847
- virtual bool usesCompleteTranslationUnit () { return false ; }
847
+ virtual TranslationUnitKind getTranslationUnitKind () { return TU_Prefix ; }
848
848
};
849
849
850
850
}
@@ -1592,8 +1592,7 @@ ASTUnit *ASTUnit::LoadFromCompilerInvocationAction(CompilerInvocation *CI,
1592
1592
AST->Diagnostics = Diags;
1593
1593
AST->OnlyLocalDecls = false ;
1594
1594
AST->CaptureDiagnostics = false ;
1595
- AST->CompleteTranslationUnit = Action ? Action->usesCompleteTranslationUnit ()
1596
- : true ;
1595
+ AST->TUKind = Action ? Action->getTranslationUnitKind () : TU_Complete;
1597
1596
AST->ShouldCacheCodeCompletionResults = false ;
1598
1597
AST->Invocation = CI;
1599
1598
@@ -1727,7 +1726,7 @@ ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI,
1727
1726
bool OnlyLocalDecls,
1728
1727
bool CaptureDiagnostics,
1729
1728
bool PrecompilePreamble,
1730
- bool CompleteTranslationUnit ,
1729
+ TranslationUnitKind TUKind ,
1731
1730
bool CacheCodeCompletionResults,
1732
1731
bool NestedMacroExpansions) {
1733
1732
// Create the AST unit.
@@ -1737,7 +1736,7 @@ ASTUnit *ASTUnit::LoadFromCompilerInvocation(CompilerInvocation *CI,
1737
1736
AST->Diagnostics = Diags;
1738
1737
AST->OnlyLocalDecls = OnlyLocalDecls;
1739
1738
AST->CaptureDiagnostics = CaptureDiagnostics;
1740
- AST->CompleteTranslationUnit = CompleteTranslationUnit ;
1739
+ AST->TUKind = TUKind ;
1741
1740
AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1742
1741
AST->Invocation = CI;
1743
1742
AST->NestedMacroExpansions = NestedMacroExpansions;
@@ -1762,7 +1761,7 @@ ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin,
1762
1761
unsigned NumRemappedFiles,
1763
1762
bool RemappedFilesKeepOriginalName,
1764
1763
bool PrecompilePreamble,
1765
- bool CompleteTranslationUnit ,
1764
+ TranslationUnitKind TUKind ,
1766
1765
bool CacheCodeCompletionResults,
1767
1766
bool CXXPrecompilePreamble,
1768
1767
bool CXXChainedPCH,
@@ -1828,7 +1827,7 @@ ASTUnit *ASTUnit::LoadFromCommandLine(const char **ArgBegin,
1828
1827
AST->FileMgr = new FileManager (AST->FileSystemOpts );
1829
1828
AST->OnlyLocalDecls = OnlyLocalDecls;
1830
1829
AST->CaptureDiagnostics = CaptureDiagnostics;
1831
- AST->CompleteTranslationUnit = CompleteTranslationUnit ;
1830
+ AST->TUKind = TUKind ;
1832
1831
AST->ShouldCacheCodeCompletionResults = CacheCodeCompletionResults;
1833
1832
AST->NumStoredDiagnosticsFromDriver = StoredDiagnostics.size ();
1834
1833
AST->StoredDiagnostics .swap (StoredDiagnostics);
0 commit comments