[all-commits] [llvm/llvm-project] bbdb0c: [clang][modules] Respect "-fmodule-name=" when ser...
Jan Svoboda via All-commits
all-commits at lists.llvm.org
Thu Aug 10 10:25:18 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: bbdb0c7e4496b145a5e9354f951eec272695049d
https://github.com/llvm/llvm-project/commit/bbdb0c7e4496b145a5e9354f951eec272695049d
Author: Jan Svoboda <jan_svoboda at apple.com>
Date: 2023-08-10 (Thu, 10 Aug 2023)
Changed paths:
M clang/lib/Lex/ModuleMap.cpp
A clang/test/Modules/pch-with-module-name-import-twice.c
Log Message:
-----------
[clang][modules] Respect "-fmodule-name=" when serializing included files into a PCH
Clang writes the set of textually included files into AST files, so that importers know to avoid including those files again and instead deserialize their contents from the AST on-demand.
Logic for determining the set of included files files only considers headers that are either non-modular or that are modular but with `HeaderFileInfo::isCompilingModuleHeader` set. Logic for computing that bit is different than the one that determines whether to include a header textually with the "-fmodule-name=Mod" option. That can lead to header from module "Mod" being included textually in a PCH, but be omitted in the serialized set of included files. This can then allow such header to be textually included from importer of the PCH, wreaking havoc.
This patch fixes that by aligning the logic for computing `HeaderFileInfo::isCompilingModuleHeader` with the logic for deciding whether to include modular header textually.
As far as I can tell, this bug has been in Clang for forever. It got accidentally "fixed" by D114095 (that changed the logic for determining the set of included files) and got broken again in D155131 (which is essentially a revert of the former).
rdar://113520515
Reviewed By: benlangmuir
Differential Revision: https://reviews.llvm.org/D157559
More information about the All-commits
mailing list