Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 1 | //===- ExternalASTSource.cpp - Abstract External AST Interface --*- 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 | // This file provides the default implementation of the ExternalASTSource |
| 11 | // interface, which enables construction of AST nodes from some external |
| 12 | // source. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "clang/AST/ExternalASTSource.h" |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclarationName.h" |
Adrian Prantl | c6458d6 | 2015-09-19 00:10:32 +0000 | [diff] [blame] | 19 | #include "clang/Basic/Module.h" |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 20 | #include "llvm/Support/ErrorHandling.h" |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 21 | |
| 22 | using namespace clang; |
| 23 | |
Angel Garcia Gomez | 637d1e6 | 2015-10-20 13:23:58 +0000 | [diff] [blame] | 24 | ExternalASTSource::~ExternalASTSource() { } |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 25 | |
Adrian Prantl | 15bcf70 | 2015-06-30 17:39:43 +0000 | [diff] [blame] | 26 | llvm::Optional<ExternalASTSource::ASTSourceDescriptor> |
| 27 | ExternalASTSource::getSourceDescriptor(unsigned ID) { |
| 28 | return None; |
| 29 | } |
| 30 | |
David Blaikie | 9ffe5a3 | 2017-01-30 05:00:26 +0000 | [diff] [blame] | 31 | ExternalASTSource::ExtKind |
David Blaikie | 1ac9c98 | 2017-04-11 21:13:37 +0000 | [diff] [blame] | 32 | ExternalASTSource::hasExternalDefinitions(const Decl *D) { |
David Blaikie | 9ffe5a3 | 2017-01-30 05:00:26 +0000 | [diff] [blame] | 33 | return EK_ReplyHazy; |
| 34 | } |
| 35 | |
Adrian Prantl | c6458d6 | 2015-09-19 00:10:32 +0000 | [diff] [blame] | 36 | ExternalASTSource::ASTSourceDescriptor::ASTSourceDescriptor(const Module &M) |
Adrian Prantl | 6083b08 | 2015-09-24 16:10:00 +0000 | [diff] [blame] | 37 | : Signature(M.Signature), ClangModule(&M) { |
Adrian Prantl | c6458d6 | 2015-09-19 00:10:32 +0000 | [diff] [blame] | 38 | if (M.Directory) |
| 39 | Path = M.Directory->getName(); |
| 40 | if (auto *File = M.getASTFile()) |
| 41 | ASTFile = File->getName(); |
Adrian Prantl | 15bcf70 | 2015-06-30 17:39:43 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Adrian Prantl | 835e663 | 2015-09-24 16:10:10 +0000 | [diff] [blame] | 44 | std::string ExternalASTSource::ASTSourceDescriptor::getModuleName() const { |
Adrian Prantl | 6083b08 | 2015-09-24 16:10:00 +0000 | [diff] [blame] | 45 | if (ClangModule) |
Adrian Prantl | 835e663 | 2015-09-24 16:10:10 +0000 | [diff] [blame] | 46 | return ClangModule->Name; |
Adrian Prantl | 6083b08 | 2015-09-24 16:10:00 +0000 | [diff] [blame] | 47 | else |
| 48 | return PCHModuleName; |
| 49 | } |
| 50 | |
Rafael Espindola | f5bbe27 | 2014-05-21 14:19:22 +0000 | [diff] [blame] | 51 | void ExternalASTSource::FindFileRegionDecls(FileID File, unsigned Offset, |
| 52 | unsigned Length, |
| 53 | SmallVectorImpl<Decl *> &Decls) {} |
| 54 | |
| 55 | void ExternalASTSource::CompleteRedeclChain(const Decl *D) {} |
| 56 | |
| 57 | void ExternalASTSource::CompleteType(TagDecl *Tag) {} |
| 58 | |
| 59 | void ExternalASTSource::CompleteType(ObjCInterfaceDecl *Class) {} |
| 60 | |
| 61 | void ExternalASTSource::ReadComments() {} |
| 62 | |
| 63 | void ExternalASTSource::StartedDeserializing() {} |
| 64 | |
| 65 | void ExternalASTSource::FinishedDeserializing() {} |
| 66 | |
| 67 | void ExternalASTSource::StartTranslationUnit(ASTConsumer *Consumer) {} |
| 68 | |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 69 | void ExternalASTSource::PrintStats() { } |
| 70 | |
Rafael Espindola | f5bbe27 | 2014-05-21 14:19:22 +0000 | [diff] [blame] | 71 | bool ExternalASTSource::layoutRecordType( |
| 72 | const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, |
| 73 | llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets, |
| 74 | llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets, |
| 75 | llvm::DenseMap<const CXXRecordDecl *, CharUnits> &VirtualBaseOffsets) { |
| 76 | return false; |
| 77 | } |
| 78 | |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 79 | Decl *ExternalASTSource::GetExternalDecl(uint32_t ID) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 80 | return nullptr; |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | Selector ExternalASTSource::GetExternalSelector(uint32_t ID) { |
| 84 | return Selector(); |
| 85 | } |
| 86 | |
| 87 | uint32_t ExternalASTSource::GetNumExternalSelectors() { |
| 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | Stmt *ExternalASTSource::GetExternalDeclStmt(uint64_t Offset) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 92 | return nullptr; |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 93 | } |
| 94 | |
Richard Smith | c2bb818 | 2015-03-24 06:36:48 +0000 | [diff] [blame] | 95 | CXXCtorInitializer ** |
| 96 | ExternalASTSource::GetExternalCXXCtorInitializers(uint64_t Offset) { |
| 97 | return nullptr; |
| 98 | } |
| 99 | |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 100 | CXXBaseSpecifier * |
| 101 | ExternalASTSource::GetExternalCXXBaseSpecifiers(uint64_t Offset) { |
Craig Topper | 36250ad | 2014-05-12 05:36:57 +0000 | [diff] [blame] | 102 | return nullptr; |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Richard Smith | 9ce12e3 | 2013-02-07 03:30:24 +0000 | [diff] [blame] | 105 | bool |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 106 | ExternalASTSource::FindExternalVisibleDeclsByName(const DeclContext *DC, |
| 107 | DeclarationName Name) { |
Richard Smith | 9ce12e3 | 2013-02-07 03:30:24 +0000 | [diff] [blame] | 108 | return false; |
Axel Naumann | aa627ba | 2011-02-28 11:22:50 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Richard Smith | 3cb1572 | 2015-08-05 22:41:45 +0000 | [diff] [blame] | 111 | void ExternalASTSource::completeVisibleDeclsMap(const DeclContext *DC) {} |
Nick Lewycky | 2bd0ab2 | 2012-04-16 02:51:46 +0000 | [diff] [blame] | 112 | |
Richard Smith | 3cb1572 | 2015-08-05 22:41:45 +0000 | [diff] [blame] | 113 | void ExternalASTSource::FindExternalLexicalDecls( |
| 114 | const DeclContext *DC, llvm::function_ref<bool(Decl::Kind)> IsKindWeWant, |
| 115 | SmallVectorImpl<Decl *> &Result) {} |
Axel Naumann | ed35df1 | 2011-05-04 12:59:24 +0000 | [diff] [blame] | 116 | |
Richard Smith | 3cb1572 | 2015-08-05 22:41:45 +0000 | [diff] [blame] | 117 | void ExternalASTSource::getMemoryBufferSizes(MemoryBufferSizes &sizes) const {} |
Richard Smith | 053f6c6 | 2014-05-16 23:01:30 +0000 | [diff] [blame] | 118 | |
| 119 | uint32_t ExternalASTSource::incrementGeneration(ASTContext &C) { |
| 120 | uint32_t OldGeneration = CurrentGeneration; |
| 121 | |
| 122 | // Make sure the generation of the topmost external source for the context is |
| 123 | // incremented. That might not be us. |
| 124 | auto *P = C.getExternalSource(); |
| 125 | if (P && P != this) |
| 126 | CurrentGeneration = P->incrementGeneration(C); |
| 127 | else { |
| 128 | // FIXME: Only bump the generation counter if the current generation number |
| 129 | // has been observed? |
| 130 | if (!++CurrentGeneration) |
| 131 | llvm::report_fatal_error("generation counter overflowed", false); |
| 132 | } |
| 133 | |
| 134 | return OldGeneration; |
| 135 | } |