<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Nov 10, 2015 at 6:26 PM, Ben Langmuir via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div><div class="h5"><blockquote type="cite"><div>On Nov 10, 2015, at 5:47 PM, Richard Smith <<a href="mailto:richard@metafoo.co.uk" target="_blank">richard@metafoo.co.uk</a>> wrote:</div><br><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Nov 10, 2015 at 4:50 PM, Ben Langmuir via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div><br><div><blockquote type="cite"><div>On Nov 10, 2015, at 4:39 PM, Richard Smith <<a href="mailto:richard@metafoo.co.uk" target="_blank">richard@metafoo.co.uk</a>> wrote:</div><br><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Nov 10, 2015 at 3:39 PM, Ben Langmuir via cfe-dev <span dir="ltr"><<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><span>Hey all,</span></div><div><b><br></b></div><div><b>Background</b></div><div><br></div><div>Suppose you’re developing a system library FancyLib that installs a module map file into a default search path, and you’re using implicit module maps.  When you’re developing locally, you will likely end up with multiple versions of your module that are reachable in your search paths:</div><div>* The system version /usr/include/FancyLib/module.modulemap</div><div>* The local development version ~/…/Build/Products/Debug/FancyLib/module.modulemap</div><div><br></div><div>You generally want to use the local version, and ignore the one from the system.  Unfortunately, this currently causes module-redefinition errors if both module map files are ever parsed.  For framework modules, we have been getting away with this because the compiler almost never looks into a framework directory if it has previously looked into a framework directory of the same name.  Sadly the same is not true of non-frameworks.</div><div><br></div><div><br></div><div><b>Proposed change for users</b></div><div><br></div><div>Users developing non-framework system modules would add:</div><div>    -fmodule-map-file=path/to/local/copy/of/module.modulemap</div><div><br></div><div>Typically, the “local copy” of the module map file would be to somewhere inside their build products.</div><div><br></div><div><b><br></b></div><div><b>Proposed clang changes</b></div><div><br></div><div>The flag -fmodule-map-file already exists in clang, and it causes clang to explicitly parse the specified module map, making any modules defined in that file available for @import (or via auto-import from a #import).</div><div><br></div><div>I propose we extend -fmodule-map-file so that modules found by this mechanism are allowed to shadow modules that we found implicitly in header search paths.  When searching for a module by name, we will not consider the shadowed module at all. It will be an error for header search to find a header that is considered part of a shadowed module.</div><div><br></div><div>If two modules with the same name are *both* found in the contents of -fmodule-map-file arguments, then it is a redefinition error.  Since these flags are ordered, we could theoretically allow shadowing between them, but I cannot think of a good use-case for this and suspect it would usually be unexpected to users.</div><div><br></div><div>If there are two modules with the same name and *neither* of them comes from -fmodule-map-file, then it is a redefinition error just like it is today.</div><div><br></div><div><b>Why not use header search path order to do shadowing?</b></div><div><br></div><div>I originally thought we should just allow modules that come from earlier search paths to shadow modules from later ones.  This would avoid having to use an extra flag -fmodule-map-file, and let us infer the module configuration “for free”, since users are already accustomed to setting up their header search paths.  However, there are a number of problems with this approach:</div><div><br></div><div>* Module map files from “later” search paths are often parsed ahead of module map files from “earlier” paths.  We would either need to eagerly parse module map files from all search paths in order (slow), or we would need to be able to retroactively make a module shadowed (brittle).</div><div>* Module map lookup does not know about search paths, so when searching for a module map file by umbrella directory we don't know when we cross search path boundaries</div><div>* We would need to lock down the HeaderSearch interface to prevent modifying search path order in the middle of a build (although that might be a generally good thing…)</div></div></blockquote><div><br></div><div>The direction here makes complete sense to me.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div>My patch implementing this is attached for reference.</div></div></blockquote><div><br></div><div>This seems to be somewhat more general than we need for the above proposal -- it supports a fully-general set of scopes, whereas it would seem sufficient to track a flag to indicate whether the module came from a -fmodule-map-file= file or from an implicit module map file. Do you have some future extension in mind that would need more than 2 different scopes?</div></div></div></div>
</div></blockquote><br></div></div></div><div>Nothing concrete, although it feels like if we might someday be able to get at least one other scope for the default system search paths.  The reason I chose to not just use a flag was - perhaps embarrassingly - that I haven’t been able to come up with a nice way to express what that “flag” is to the ModuleMap class without defining it in terms of our command-line interface, which feels like a conceptual layering violation.  I’m open to suggestions thought :-)</div></div></blockquote><div><br></div><div>The flag seems to be whether the module map is explicit or implicit, but that's more at the level of HeaderSearch's world view than ModuleMap’s.</div></div></div></div></div></blockquote><div><br></div></div></div><div>In that case it should apply to -fmodule-file as well, right?</div></div></div></blockquote><div><br></div><div>I would expect this flag to be round-tripped through module files, and should depend on whether the file was found implicitly or explicitly when building the module. That would mean you can no longer assume you see all the explicit modules before any of the implicit ones, because an explicit module file can reference an implicit module map (if the user specifies both a -fmodule-file= and a -fmodule-map-file= where the former uses an implicit module and the latter provides a different module with the same name).</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><span class=""><blockquote type="cite"><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>I also think it's probably unnecessary to build shadow modules as your patch does (unless you expect those files to be reachable via #include_next?). Instead, you could do the same thing we do when the definition of a module was provided by a loaded module file: skip to the close brace of the module definition and return. </div></div></div></div></div></blockquote><div><br></div></span><div>I built the unavailable module because I want to diagnose #include of headers from the shadowed module.  Including headers from the shadowed module likely indicates a bug in how the module or header search paths are set up.</div></div></div></blockquote><div><br></div><div>OK, that seems reasonable.</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><span class=""><blockquote type="cite"><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>We particularly don't want to stat all the files named in the shadow module, since the extra stat syscalls can be moderately expensive. It seems like a cleaner semantic model to say that the shadowed module is completely ignored than that it exists and has the same name but is a somehow different module.</div></div></div></div>
</div></blockquote><br></span></div><div><br></div><br></div><br>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div></div>