ASTUnit.h revision a696ece1ac449a2b77e7c0a693b55cb10e9e2068
1//===--- ASTUnit.h - ASTUnit utility ----------------------------*- C++ -*-===// 2// 3// The LLVM Compiler Infrastructure 4// 5// This file is distributed under the University of Illinois Open Source 6// License. See LICENSE.TXT for details. 7// 8//===----------------------------------------------------------------------===// 9// 10// ASTUnit utility class. 11// 12//===----------------------------------------------------------------------===// 13 14#ifndef LLVM_CLANG_FRONTEND_ASTUNIT_H 15#define LLVM_CLANG_FRONTEND_ASTUNIT_H 16 17#include "clang/Index/ASTLocation.h" 18#include "clang/Serialization/ASTBitCodes.h" 19#include "clang/Sema/Sema.h" 20#include "clang/Sema/CodeCompleteConsumer.h" 21#include "clang/Lex/ModuleLoader.h" 22#include "clang/Lex/PreprocessingRecord.h" 23#include "clang/Basic/SourceManager.h" 24#include "clang/Basic/FileManager.h" 25#include "clang/Basic/FileSystemOptions.h" 26#include "clang-c/Index.h" 27#include "llvm/ADT/IntrusiveRefCntPtr.h" 28#include "llvm/ADT/OwningPtr.h" 29#include "llvm/ADT/SmallVector.h" 30#include "llvm/ADT/StringMap.h" 31#include "llvm/Support/Path.h" 32#include <map> 33#include <string> 34#include <vector> 35#include <cassert> 36#include <utility> 37#include <sys/types.h> 38 39namespace llvm { 40 class MemoryBuffer; 41} 42 43namespace clang { 44class ASTContext; 45class ASTReader; 46class CodeCompleteConsumer; 47class CompilerInvocation; 48class Decl; 49class DiagnosticsEngine; 50class FileEntry; 51class FileManager; 52class HeaderSearch; 53class Preprocessor; 54class SourceManager; 55class TargetInfo; 56class ASTFrontendAction; 57 58using namespace idx; 59 60/// \brief Allocator for a cached set of global code completions. 61class GlobalCodeCompletionAllocator 62 : public CodeCompletionAllocator, 63 public llvm::RefCountedBase<GlobalCodeCompletionAllocator> 64{ 65 66}; 67 68/// \brief Utility class for loading a ASTContext from an AST file. 69/// 70class ASTUnit : public ModuleLoader { 71private: 72 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diagnostics; 73 llvm::IntrusiveRefCntPtr<FileManager> FileMgr; 74 llvm::IntrusiveRefCntPtr<SourceManager> SourceMgr; 75 llvm::OwningPtr<HeaderSearch> HeaderInfo; 76 llvm::IntrusiveRefCntPtr<TargetInfo> Target; 77 llvm::IntrusiveRefCntPtr<Preprocessor> PP; 78 llvm::IntrusiveRefCntPtr<ASTContext> Ctx; 79 80 FileSystemOptions FileSystemOpts; 81 82 /// \brief The AST consumer that received information about the translation 83 /// unit as it was parsed or loaded. 84 llvm::OwningPtr<ASTConsumer> Consumer; 85 86 /// \brief The semantic analysis object used to type-check the translation 87 /// unit. 88 llvm::OwningPtr<Sema> TheSema; 89 90 /// Optional owned invocation, just used to make the invocation used in 91 /// LoadFromCommandLine available. 92 llvm::IntrusiveRefCntPtr<CompilerInvocation> Invocation; 93 94 /// \brief The set of target features. 95 /// 96 /// FIXME: each time we reparse, we need to restore the set of target 97 /// features from this vector, because TargetInfo::CreateTargetInfo() 98 /// mangles the target options in place. Yuck! 99 std::vector<std::string> TargetFeatures; 100 101 // OnlyLocalDecls - when true, walking this AST should only visit declarations 102 // that come from the AST itself, not from included precompiled headers. 103 // FIXME: This is temporary; eventually, CIndex will always do this. 104 bool OnlyLocalDecls; 105 106 /// \brief Whether to capture any diagnostics produced. 107 bool CaptureDiagnostics; 108 109 /// \brief Track whether the main file was loaded from an AST or not. 110 bool MainFileIsAST; 111 112 /// \brief What kind of translation unit this AST represents. 113 TranslationUnitKind TUKind; 114 115 /// \brief Whether we should time each operation. 116 bool WantTiming; 117 118 /// \brief Whether the ASTUnit should delete the remapped buffers. 119 bool OwnsRemappedFileBuffers; 120 121 /// Track the top-level decls which appeared in an ASTUnit which was loaded 122 /// from a source file. 123 // 124 // FIXME: This is just an optimization hack to avoid deserializing large parts 125 // of a PCH file when using the Index library on an ASTUnit loaded from 126 // source. In the long term we should make the Index library use efficient and 127 // more scalable search mechanisms. 128 std::vector<Decl*> TopLevelDecls; 129 130 /// The name of the original source file used to generate this ASTUnit. 131 std::string OriginalSourceFile; 132 133 // Critical optimization when using clang_getCursor(). 134 ASTLocation LastLoc; 135 136 /// \brief The set of diagnostics produced when creating the preamble. 137 SmallVector<StoredDiagnostic, 4> PreambleDiagnostics; 138 139 /// \brief The set of diagnostics produced when creating this 140 /// translation unit. 141 SmallVector<StoredDiagnostic, 4> StoredDiagnostics; 142 143 /// \brief The number of stored diagnostics that come from the driver 144 /// itself. 145 /// 146 /// Diagnostics that come from the driver are retained from one parse to 147 /// the next. 148 unsigned NumStoredDiagnosticsFromDriver; 149 150 /// \brief Temporary files that should be removed when the ASTUnit is 151 /// destroyed. 152 SmallVector<llvm::sys::Path, 4> TemporaryFiles; 153 154 /// \brief Counter that determines when we want to try building a 155 /// precompiled preamble. 156 /// 157 /// If zero, we will never build a precompiled preamble. Otherwise, 158 /// it's treated as a counter that decrements each time we reparse 159 /// without the benefit of a precompiled preamble. When it hits 1, 160 /// we'll attempt to rebuild the precompiled header. This way, if 161 /// building the precompiled preamble fails, we won't try again for 162 /// some number of calls. 163 unsigned PreambleRebuildCounter; 164 165 /// \brief The file in which the precompiled preamble is stored. 166 std::string PreambleFile; 167 168public: 169 class PreambleData { 170 const FileEntry *File; 171 std::vector<char> Buffer; 172 mutable unsigned NumLines; 173 174 public: 175 PreambleData() : File(0), NumLines(0) { } 176 177 void assign(const FileEntry *F, const char *begin, const char *end) { 178 File = F; 179 Buffer.assign(begin, end); 180 NumLines = 0; 181 } 182 183 void clear() { Buffer.clear(); File = 0; NumLines = 0; } 184 185 size_t size() const { return Buffer.size(); } 186 bool empty() const { return Buffer.empty(); } 187 188 const char *getBufferStart() const { return &Buffer[0]; } 189 190 unsigned getNumLines() const { 191 if (NumLines) 192 return NumLines; 193 countLines(); 194 return NumLines; 195 } 196 197 SourceRange getSourceRange(const SourceManager &SM) const { 198 SourceLocation FileLoc = SM.getLocForStartOfFile(SM.getPreambleFileID()); 199 return SourceRange(FileLoc, FileLoc.getLocWithOffset(size()-1)); 200 } 201 202 private: 203 void countLines() const; 204 }; 205 206 const PreambleData &getPreambleData() const { 207 return Preamble; 208 } 209 210private: 211 212 /// \brief The contents of the preamble that has been precompiled to 213 /// \c PreambleFile. 214 PreambleData Preamble; 215 216 /// \brief Whether the preamble ends at the start of a new line. 217 /// 218 /// Used to inform the lexer as to whether it's starting at the beginning of 219 /// a line after skipping the preamble. 220 bool PreambleEndsAtStartOfLine; 221 222 /// \brief The size of the source buffer that we've reserved for the main 223 /// file within the precompiled preamble. 224 unsigned PreambleReservedSize; 225 226 /// \brief Keeps track of the files that were used when computing the 227 /// preamble, with both their buffer size and their modification time. 228 /// 229 /// If any of the files have changed from one compile to the next, 230 /// the preamble must be thrown away. 231 llvm::StringMap<std::pair<off_t, time_t> > FilesInPreamble; 232 233 /// \brief When non-NULL, this is the buffer used to store the contents of 234 /// the main file when it has been padded for use with the precompiled 235 /// preamble. 236 llvm::MemoryBuffer *SavedMainFileBuffer; 237 238 /// \brief When non-NULL, this is the buffer used to store the 239 /// contents of the preamble when it has been padded to build the 240 /// precompiled preamble. 241 llvm::MemoryBuffer *PreambleBuffer; 242 243 /// \brief The number of warnings that occurred while parsing the preamble. 244 /// 245 /// This value will be used to restore the state of the \c DiagnosticsEngine 246 /// object when re-using the precompiled preamble. Note that only the 247 /// number of warnings matters, since we will not save the preamble 248 /// when any errors are present. 249 unsigned NumWarningsInPreamble; 250 251 /// \brief A list of the serialization ID numbers for each of the top-level 252 /// declarations parsed within the precompiled preamble. 253 std::vector<serialization::DeclID> TopLevelDeclsInPreamble; 254 255 /// \brief Whether we should be caching code-completion results. 256 bool ShouldCacheCodeCompletionResults; 257 258 /// \brief Whether we want to include nested macro expansions in the 259 /// detailed preprocessing record. 260 bool NestedMacroExpansions; 261 262 /// \brief The language options used when we load an AST file. 263 LangOptions ASTFileLangOpts; 264 265 static void ConfigureDiags(llvm::IntrusiveRefCntPtr<DiagnosticsEngine> &Diags, 266 const char **ArgBegin, const char **ArgEnd, 267 ASTUnit &AST, bool CaptureDiagnostics); 268 269 void TranslateStoredDiagnostics(ASTReader *MMan, StringRef ModName, 270 SourceManager &SrcMan, 271 const SmallVectorImpl<StoredDiagnostic> &Diags, 272 SmallVectorImpl<StoredDiagnostic> &Out); 273 274public: 275 /// \brief A cached code-completion result, which may be introduced in one of 276 /// many different contexts. 277 struct CachedCodeCompletionResult { 278 /// \brief The code-completion string corresponding to this completion 279 /// result. 280 CodeCompletionString *Completion; 281 282 /// \brief A bitmask that indicates which code-completion contexts should 283 /// contain this completion result. 284 /// 285 /// The bits in the bitmask correspond to the values of 286 /// CodeCompleteContext::Kind. To map from a completion context kind to a 287 /// bit, subtract one from the completion context kind and shift 1 by that 288 /// number of bits. Many completions can occur in several different 289 /// contexts. 290 unsigned ShowInContexts; 291 292 /// \brief The priority given to this code-completion result. 293 unsigned Priority; 294 295 /// \brief The libclang cursor kind corresponding to this code-completion 296 /// result. 297 CXCursorKind Kind; 298 299 /// \brief The availability of this code-completion result. 300 CXAvailabilityKind Availability; 301 302 /// \brief The simplified type class for a non-macro completion result. 303 SimplifiedTypeClass TypeClass; 304 305 /// \brief The type of a non-macro completion result, stored as a unique 306 /// integer used by the string map of cached completion types. 307 /// 308 /// This value will be zero if the type is not known, or a unique value 309 /// determined by the formatted type string. Se \c CachedCompletionTypes 310 /// for more information. 311 unsigned Type; 312 }; 313 314 /// \brief Retrieve the mapping from formatted type names to unique type 315 /// identifiers. 316 llvm::StringMap<unsigned> &getCachedCompletionTypes() { 317 return CachedCompletionTypes; 318 } 319 320 /// \brief Retrieve the allocator used to cache global code completions. 321 llvm::IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> 322 getCachedCompletionAllocator() { 323 return CachedCompletionAllocator; 324 } 325 326 /// \brief Retrieve the allocator used to cache global code completions. 327 /// Creates the allocator if it doesn't already exist. 328 llvm::IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> 329 getCursorCompletionAllocator() { 330 if (!CursorCompletionAllocator.getPtr()) { 331 CursorCompletionAllocator = new GlobalCodeCompletionAllocator; 332 } 333 return CursorCompletionAllocator; 334 } 335 336private: 337 /// \brief Allocator used to store cached code completions. 338 llvm::IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> 339 CachedCompletionAllocator; 340 341 /// \brief Allocator used to store code completions for arbitrary cursors. 342 llvm::IntrusiveRefCntPtr<GlobalCodeCompletionAllocator> 343 CursorCompletionAllocator; 344 345 /// \brief The set of cached code-completion results. 346 std::vector<CachedCodeCompletionResult> CachedCompletionResults; 347 348 /// \brief A mapping from the formatted type name to a unique number for that 349 /// type, which is used for type equality comparisons. 350 llvm::StringMap<unsigned> CachedCompletionTypes; 351 352 /// \brief A string hash of the top-level declaration and macro definition 353 /// names processed the last time that we reparsed the file. 354 /// 355 /// This hash value is used to determine when we need to refresh the 356 /// global code-completion cache. 357 unsigned CompletionCacheTopLevelHashValue; 358 359 /// \brief A string hash of the top-level declaration and macro definition 360 /// names processed the last time that we reparsed the precompiled preamble. 361 /// 362 /// This hash value is used to determine when we need to refresh the 363 /// global code-completion cache after a rebuild of the precompiled preamble. 364 unsigned PreambleTopLevelHashValue; 365 366 /// \brief The current hash value for the top-level declaration and macro 367 /// definition names 368 unsigned CurrentTopLevelHashValue; 369 370 /// \brief Bit used by CIndex to mark when a translation unit may be in an 371 /// inconsistent state, and is not safe to free. 372 unsigned UnsafeToFree : 1; 373 374 /// \brief Cache any "global" code-completion results, so that we can avoid 375 /// recomputing them with each completion. 376 void CacheCodeCompletionResults(); 377 378 /// \brief Clear out and deallocate 379 void ClearCachedCompletionResults(); 380 381 ASTUnit(const ASTUnit&); // DO NOT IMPLEMENT 382 ASTUnit &operator=(const ASTUnit &); // DO NOT IMPLEMENT 383 384 explicit ASTUnit(bool MainFileIsAST); 385 386 void CleanTemporaryFiles(); 387 bool Parse(llvm::MemoryBuffer *OverrideMainBuffer); 388 389 std::pair<llvm::MemoryBuffer *, std::pair<unsigned, bool> > 390 ComputePreamble(CompilerInvocation &Invocation, 391 unsigned MaxLines, bool &CreatedBuffer); 392 393 llvm::MemoryBuffer *getMainBufferWithPrecompiledPreamble( 394 const CompilerInvocation &PreambleInvocationIn, 395 bool AllowRebuild = true, 396 unsigned MaxLines = 0); 397 void RealizeTopLevelDeclsFromPreamble(); 398 399 /// \brief Allows us to assert that ASTUnit is not being used concurrently, 400 /// which is not supported. 401 /// 402 /// Clients should create instances of the ConcurrencyCheck class whenever 403 /// using the ASTUnit in a way that isn't intended to be concurrent, which is 404 /// just about any usage. 405 /// Becomes a noop in release mode; only useful for debug mode checking. 406 class ConcurrencyState { 407 void *Mutex; // a llvm::sys::MutexImpl in debug; 408 409 public: 410 ConcurrencyState(); 411 ~ConcurrencyState(); 412 413 void start(); 414 void finish(); 415 }; 416 ConcurrencyState ConcurrencyCheckValue; 417 418public: 419 class ConcurrencyCheck { 420 ASTUnit &Self; 421 422 public: 423 explicit ConcurrencyCheck(ASTUnit &Self) 424 : Self(Self) 425 { 426 Self.ConcurrencyCheckValue.start(); 427 } 428 ~ConcurrencyCheck() { 429 Self.ConcurrencyCheckValue.finish(); 430 } 431 }; 432 friend class ConcurrencyCheck; 433 434 ~ASTUnit(); 435 436 bool isMainFileAST() const { return MainFileIsAST; } 437 438 bool isUnsafeToFree() const { return UnsafeToFree; } 439 void setUnsafeToFree(bool Value) { UnsafeToFree = Value; } 440 441 const DiagnosticsEngine &getDiagnostics() const { return *Diagnostics; } 442 DiagnosticsEngine &getDiagnostics() { return *Diagnostics; } 443 444 const SourceManager &getSourceManager() const { return *SourceMgr; } 445 SourceManager &getSourceManager() { return *SourceMgr; } 446 447 const Preprocessor &getPreprocessor() const { return *PP; } 448 Preprocessor &getPreprocessor() { return *PP; } 449 450 const ASTContext &getASTContext() const { return *Ctx; } 451 ASTContext &getASTContext() { return *Ctx; } 452 453 bool hasSema() const { return TheSema; } 454 Sema &getSema() const { 455 assert(TheSema && "ASTUnit does not have a Sema object!"); 456 return *TheSema; 457 } 458 459 const FileManager &getFileManager() const { return *FileMgr; } 460 FileManager &getFileManager() { return *FileMgr; } 461 462 const FileSystemOptions &getFileSystemOpts() const { return FileSystemOpts; } 463 464 const std::string &getOriginalSourceFileName(); 465 466 /// \brief Add a temporary file that the ASTUnit depends on. 467 /// 468 /// This file will be erased when the ASTUnit is destroyed. 469 void addTemporaryFile(const llvm::sys::Path &TempFile) { 470 TemporaryFiles.push_back(TempFile); 471 } 472 473 bool getOnlyLocalDecls() const { return OnlyLocalDecls; } 474 475 bool getOwnsRemappedFileBuffers() const { return OwnsRemappedFileBuffers; } 476 void setOwnsRemappedFileBuffers(bool val) { OwnsRemappedFileBuffers = val; } 477 478 void setLastASTLocation(ASTLocation ALoc) { LastLoc = ALoc; } 479 ASTLocation getLastASTLocation() const { return LastLoc; } 480 481 482 StringRef getMainFileName() const; 483 484 typedef std::vector<Decl *>::iterator top_level_iterator; 485 486 top_level_iterator top_level_begin() { 487 assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!"); 488 if (!TopLevelDeclsInPreamble.empty()) 489 RealizeTopLevelDeclsFromPreamble(); 490 return TopLevelDecls.begin(); 491 } 492 493 top_level_iterator top_level_end() { 494 assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!"); 495 if (!TopLevelDeclsInPreamble.empty()) 496 RealizeTopLevelDeclsFromPreamble(); 497 return TopLevelDecls.end(); 498 } 499 500 std::size_t top_level_size() const { 501 assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!"); 502 return TopLevelDeclsInPreamble.size() + TopLevelDecls.size(); 503 } 504 505 bool top_level_empty() const { 506 assert(!isMainFileAST() && "Invalid call for AST based ASTUnit!"); 507 return TopLevelDeclsInPreamble.empty() && TopLevelDecls.empty(); 508 } 509 510 /// \brief Add a new top-level declaration. 511 void addTopLevelDecl(Decl *D) { 512 TopLevelDecls.push_back(D); 513 } 514 515 /// \brief Add a new top-level declaration, identified by its ID in 516 /// the precompiled preamble. 517 void addTopLevelDeclFromPreamble(serialization::DeclID D) { 518 TopLevelDeclsInPreamble.push_back(D); 519 } 520 521 /// \brief Retrieve a reference to the current top-level name hash value. 522 /// 523 /// Note: This is used internally by the top-level tracking action 524 unsigned &getCurrentTopLevelHashValue() { return CurrentTopLevelHashValue; } 525 526 /// \brief Get the source location for the given file:line:col triplet. 527 /// 528 /// The difference with SourceManager::getLocation is that this method checks 529 /// whether the requested location points inside the precompiled preamble 530 /// in which case the returned source location will be a "loaded" one. 531 SourceLocation getLocation(const FileEntry *File, 532 unsigned Line, unsigned Col) const; 533 534 /// \brief Get the source location for the given file:offset pair. 535 SourceLocation getLocation(const FileEntry *File, unsigned Offset) const; 536 537 /// \brief If \arg Loc is a loaded location from the preamble, returns 538 /// the corresponding local location of the main file, otherwise it returns 539 /// \arg Loc. 540 SourceLocation mapLocationFromPreamble(SourceLocation Loc); 541 542 /// \brief If \arg Loc is a local location of the main file but inside the 543 /// preamble chunk, returns the corresponding loaded location from the 544 /// preamble, otherwise it returns \arg Loc. 545 SourceLocation mapLocationToPreamble(SourceLocation Loc); 546 547 /// \brief \see mapLocationFromPreamble. 548 SourceRange mapRangeFromPreamble(SourceRange R) { 549 return SourceRange(mapLocationFromPreamble(R.getBegin()), 550 mapLocationFromPreamble(R.getEnd())); 551 } 552 553 /// \brief \see mapLocationToPreamble. 554 SourceRange mapRangeToPreamble(SourceRange R) { 555 return SourceRange(mapLocationToPreamble(R.getBegin()), 556 mapLocationToPreamble(R.getEnd())); 557 } 558 559 // Retrieve the diagnostics associated with this AST 560 typedef const StoredDiagnostic *stored_diag_iterator; 561 stored_diag_iterator stored_diag_begin() const { 562 return StoredDiagnostics.begin(); 563 } 564 stored_diag_iterator stored_diag_end() const { 565 return StoredDiagnostics.end(); 566 } 567 unsigned stored_diag_size() const { return StoredDiagnostics.size(); } 568 569 SmallVector<StoredDiagnostic, 4> &getStoredDiagnostics() { 570 return StoredDiagnostics; 571 } 572 573 typedef std::vector<CachedCodeCompletionResult>::iterator 574 cached_completion_iterator; 575 576 cached_completion_iterator cached_completion_begin() { 577 return CachedCompletionResults.begin(); 578 } 579 580 cached_completion_iterator cached_completion_end() { 581 return CachedCompletionResults.end(); 582 } 583 584 unsigned cached_completion_size() const { 585 return CachedCompletionResults.size(); 586 } 587 588 llvm::MemoryBuffer *getBufferForFile(StringRef Filename, 589 std::string *ErrorStr = 0); 590 591 /// \brief Determine what kind of translation unit this AST represents. 592 TranslationUnitKind getTranslationUnitKind() const { return TUKind; } 593 594 typedef llvm::PointerUnion<const char *, const llvm::MemoryBuffer *> 595 FilenameOrMemBuf; 596 /// \brief A mapping from a file name to the memory buffer that stores the 597 /// remapped contents of that file. 598 typedef std::pair<std::string, FilenameOrMemBuf> RemappedFile; 599 600 /// \brief Create a ASTUnit. Gets ownership of the passed CompilerInvocation. 601 static ASTUnit *create(CompilerInvocation *CI, 602 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags); 603 604 /// \brief Create a ASTUnit from an AST file. 605 /// 606 /// \param Filename - The AST file to load. 607 /// 608 /// \param Diags - The diagnostics engine to use for reporting errors; its 609 /// lifetime is expected to extend past that of the returned ASTUnit. 610 /// 611 /// \returns - The initialized ASTUnit or null if the AST failed to load. 612 static ASTUnit *LoadFromASTFile(const std::string &Filename, 613 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags, 614 const FileSystemOptions &FileSystemOpts, 615 bool OnlyLocalDecls = false, 616 RemappedFile *RemappedFiles = 0, 617 unsigned NumRemappedFiles = 0, 618 bool CaptureDiagnostics = false); 619 620private: 621 /// \brief Helper function for \c LoadFromCompilerInvocation() and 622 /// \c LoadFromCommandLine(), which loads an AST from a compiler invocation. 623 /// 624 /// \param PrecompilePreamble Whether to precompile the preamble of this 625 /// translation unit, to improve the performance of reparsing. 626 /// 627 /// \returns \c true if a catastrophic failure occurred (which means that the 628 /// \c ASTUnit itself is invalid), or \c false otherwise. 629 bool LoadFromCompilerInvocation(bool PrecompilePreamble); 630 631public: 632 633 /// \brief Create an ASTUnit from a source file, via a CompilerInvocation 634 /// object, by invoking the optionally provided ASTFrontendAction. 635 /// 636 /// \param CI - The compiler invocation to use; it must have exactly one input 637 /// source file. The ASTUnit takes ownership of the CompilerInvocation object. 638 /// 639 /// \param Diags - The diagnostics engine to use for reporting errors; its 640 /// lifetime is expected to extend past that of the returned ASTUnit. 641 /// 642 /// \param Action - The ASTFrontendAction to invoke. Its ownership is not 643 /// transfered. 644 static ASTUnit *LoadFromCompilerInvocationAction(CompilerInvocation *CI, 645 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags, 646 ASTFrontendAction *Action = 0); 647 648 /// LoadFromCompilerInvocation - Create an ASTUnit from a source file, via a 649 /// CompilerInvocation object. 650 /// 651 /// \param CI - The compiler invocation to use; it must have exactly one input 652 /// source file. The ASTUnit takes ownership of the CompilerInvocation object. 653 /// 654 /// \param Diags - The diagnostics engine to use for reporting errors; its 655 /// lifetime is expected to extend past that of the returned ASTUnit. 656 // 657 // FIXME: Move OnlyLocalDecls, UseBumpAllocator to setters on the ASTUnit, we 658 // shouldn't need to specify them at construction time. 659 static ASTUnit *LoadFromCompilerInvocation(CompilerInvocation *CI, 660 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags, 661 bool OnlyLocalDecls = false, 662 bool CaptureDiagnostics = false, 663 bool PrecompilePreamble = false, 664 TranslationUnitKind TUKind = TU_Complete, 665 bool CacheCodeCompletionResults = false, 666 bool NestedMacroExpansions = true); 667 668 /// LoadFromCommandLine - Create an ASTUnit from a vector of command line 669 /// arguments, which must specify exactly one source file. 670 /// 671 /// \param ArgBegin - The beginning of the argument vector. 672 /// 673 /// \param ArgEnd - The end of the argument vector. 674 /// 675 /// \param Diags - The diagnostics engine to use for reporting errors; its 676 /// lifetime is expected to extend past that of the returned ASTUnit. 677 /// 678 /// \param ResourceFilesPath - The path to the compiler resource files. 679 // 680 // FIXME: Move OnlyLocalDecls, UseBumpAllocator to setters on the ASTUnit, we 681 // shouldn't need to specify them at construction time. 682 static ASTUnit *LoadFromCommandLine(const char **ArgBegin, 683 const char **ArgEnd, 684 llvm::IntrusiveRefCntPtr<DiagnosticsEngine> Diags, 685 StringRef ResourceFilesPath, 686 bool OnlyLocalDecls = false, 687 bool CaptureDiagnostics = false, 688 RemappedFile *RemappedFiles = 0, 689 unsigned NumRemappedFiles = 0, 690 bool RemappedFilesKeepOriginalName = true, 691 bool PrecompilePreamble = false, 692 TranslationUnitKind TUKind = TU_Complete, 693 bool CacheCodeCompletionResults = false, 694 bool NestedMacroExpansions = true); 695 696 /// \brief Reparse the source files using the same command-line options that 697 /// were originally used to produce this translation unit. 698 /// 699 /// \returns True if a failure occurred that causes the ASTUnit not to 700 /// contain any translation-unit information, false otherwise. 701 bool Reparse(RemappedFile *RemappedFiles = 0, 702 unsigned NumRemappedFiles = 0); 703 704 /// \brief Perform code completion at the given file, line, and 705 /// column within this translation unit. 706 /// 707 /// \param File The file in which code completion will occur. 708 /// 709 /// \param Line The line at which code completion will occur. 710 /// 711 /// \param Column The column at which code completion will occur. 712 /// 713 /// \param IncludeMacros Whether to include macros in the code-completion 714 /// results. 715 /// 716 /// \param IncludeCodePatterns Whether to include code patterns (such as a 717 /// for loop) in the code-completion results. 718 /// 719 /// FIXME: The Diag, LangOpts, SourceMgr, FileMgr, StoredDiagnostics, and 720 /// OwnedBuffers parameters are all disgusting hacks. They will go away. 721 void CodeComplete(StringRef File, unsigned Line, unsigned Column, 722 RemappedFile *RemappedFiles, unsigned NumRemappedFiles, 723 bool IncludeMacros, bool IncludeCodePatterns, 724 CodeCompleteConsumer &Consumer, 725 DiagnosticsEngine &Diag, LangOptions &LangOpts, 726 SourceManager &SourceMgr, FileManager &FileMgr, 727 SmallVectorImpl<StoredDiagnostic> &StoredDiagnostics, 728 SmallVectorImpl<const llvm::MemoryBuffer *> &OwnedBuffers); 729 730 /// \brief Save this translation unit to a file with the given name. 731 /// 732 /// \returns An indication of whether the save was successful or not. 733 CXSaveError Save(StringRef File); 734 735 /// \brief Serialize this translation unit with the given output stream. 736 /// 737 /// \returns True if an error occurred, false otherwise. 738 bool serialize(raw_ostream &OS); 739 740 virtual ModuleKey loadModule(SourceLocation ImportLoc, 741 IdentifierInfo &ModuleName, 742 SourceLocation ModuleNameLoc) { 743 // ASTUnit doesn't know how to load modules (not that this matters). 744 return 0; 745 } 746}; 747 748} // namespace clang 749 750#endif 751