[PATCH] D78086: [ASTImporter] Also import overwritten file buffers
Raphael Isemann via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 27 04:47:33 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG9f1e81f1c0ac: [ASTImporter] Also import overwritten file buffers (authored by teemperor).
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78086/new/
https://reviews.llvm.org/D78086
Files:
clang/lib/AST/ASTImporter.cpp
clang/unittests/AST/ASTImporterTest.cpp
Index: clang/unittests/AST/ASTImporterTest.cpp
===================================================================
--- clang/unittests/AST/ASTImporterTest.cpp
+++ clang/unittests/AST/ASTImporterTest.cpp
@@ -12,6 +12,7 @@
#include "clang/ASTMatchers/ASTMatchers.h"
#include "llvm/ADT/StringMap.h"
+#include "llvm/Support/SmallVectorMemoryBuffer.h"
#include "clang/AST/DeclContextInternals.h"
#include "gtest/gtest.h"
@@ -5896,6 +5897,61 @@
EXPECT_FALSE(ToSM.isBeforeInTranslationUnit(Location2, Location1));
}
+TEST_P(ImportSourceLocations, NormalFileBuffer) {
+ // Test importing normal file buffers.
+
+ std::string Path = "input0.c";
+ std::string Source = "int X;";
+ TranslationUnitDecl *FromTU = getTuDecl(Source, Lang_C, Path);
+
+ SourceLocation ImportedLoc;
+ {
+ // Import the VarDecl to trigger the importing of the FileID.
+ auto Pattern = varDecl(hasName("X"));
+ VarDecl *FromD = FirstDeclMatcher<VarDecl>().match(FromTU, Pattern);
+ ImportedLoc = Import(FromD, Lang_C)->getLocation();
+ }
+
+ // Make sure the imported buffer has the original contents.
+ SourceManager &ToSM = ToAST->getSourceManager();
+ FileID ImportedID = ToSM.getFileID(ImportedLoc);
+ EXPECT_EQ(Source, ToSM.getBuffer(ImportedID, SourceLocation())->getBuffer());
+}
+
+TEST_P(ImportSourceLocations, OverwrittenFileBuffer) {
+ // Test importing overwritten file buffers.
+
+ std::string Path = "input0.c";
+ TranslationUnitDecl *FromTU = getTuDecl("int X;", Lang_C, Path);
+
+ // Overwrite the file buffer for our input file with new content.
+ const std::string Contents = "overwritten contents";
+ SourceLocation ImportedLoc;
+ {
+ SourceManager &FromSM = FromTU->getASTContext().getSourceManager();
+ clang::FileManager &FM = FromSM.getFileManager();
+ const clang::FileEntry &FE =
+ *FM.getVirtualFile(Path, static_cast<off_t>(Contents.size()), 0);
+
+ llvm::SmallVector<char, 64> Buffer;
+ Buffer.append(Contents.begin(), Contents.end());
+ auto FileContents =
+ std::make_unique<llvm::SmallVectorMemoryBuffer>(std::move(Buffer), Path);
+ FromSM.overrideFileContents(&FE, std::move(FileContents));
+
+ // Import the VarDecl to trigger the importing of the FileID.
+ auto Pattern = varDecl(hasName("X"));
+ VarDecl *FromD = FirstDeclMatcher<VarDecl>().match(FromTU, Pattern);
+ ImportedLoc = Import(FromD, Lang_C)->getLocation();
+ }
+
+ // Make sure the imported buffer has the overwritten contents.
+ SourceManager &ToSM = ToAST->getSourceManager();
+ FileID ImportedID = ToSM.getFileID(ImportedLoc);
+ EXPECT_EQ(Contents,
+ ToSM.getBuffer(ImportedID, SourceLocation())->getBuffer());
+}
+
TEST_P(ASTImporterOptionSpecificTestBase, ImportExprOfAlignmentAttr) {
// Test if import of these packed and aligned attributes does not trigger an
// error situation where source location from 'From' context is referenced in
Index: clang/lib/AST/ASTImporter.cpp
===================================================================
--- clang/lib/AST/ASTImporter.cpp
+++ clang/lib/AST/ASTImporter.cpp
@@ -8560,7 +8560,7 @@
} else {
const SrcMgr::ContentCache *Cache = FromSLoc.getFile().getContentCache();
- if (!IsBuiltin) {
+ if (!IsBuiltin && !Cache->BufferOverridden) {
// Include location of this file.
ExpectedSLoc ToIncludeLoc = Import(FromSLoc.getFile().getIncludeLoc());
if (!ToIncludeLoc)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D78086.260278.patch
Type: text/x-patch
Size: 3429 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200427/52a7e91a/attachment-0001.bin>
More information about the cfe-commits
mailing list