<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On 20 November 2017 at 15:04, David Blaikie 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 dir="ltr">Hi Richard,<br><br>(Lang, you're here because I mentioned stumbling across this on Friday in ORC - this is the reduced test case (where 't' is the NameMutex member and 'nt' is the Name member))<br><br>Working on getting all LLVM binaries linking successfully under modular codegen, I've hit something that seems it'll need a bit more feature work (which I'm happy/planning to do myself - though always happy for help/advice/etc)... <br><br>The test case I have boils down to the following modular header:<br><font face="monospace"><br></font><div><font face="monospace">  struct trivial {};</font></div><div><font face="monospace">  struct nontrivial { nontrivial(); };</font></div><div><font face="monospace">  // namespace foo {</font></div><div><font face="monospace">  void sink(void *);</font></div><div><font face="monospace">  template <typename T> struct bar {</font></div><div><font face="monospace">    static void baz() {</font></div><div><font face="monospace">      sink(&t);</font></div><div><font face="monospace">      sink(&nt);</font></div><div><font face="monospace">    }</font></div><div><font face="monospace">    static trivial t;<br></font><div><font face="monospace">    static nontrivial nt;</font></div><div><font face="monospace">  };</font></div><div><font face="monospace">  template <typename T> trivial bar<T>::t;</font></div><div><font face="monospace">  template <typename T> nontrivial bar<T>::nt;</font></div><div><font face="monospace">  //} // namespace foo</font></div><div><font face="monospace">  template struct bar<int>;</font></div><div><font face="monospace">  // inline void use() { (void)bar<int>::baz(); }</font><br><br>To build with modular codegen:<br><br><font face="monospace">  $ echo 'module foo { header "foo.h" }' > foo.cppmap<br>  $ clang++ -cc1 -xc++ -emit-module -fmodules -w -fmodule-name=foo foo.cppmap -o foo.pcm -fmodules-codegen <br></font><br>So here are some interesting facts I know, some of which may be relevant, some of which may not:<br><ol><li> Code as written ends up with <font face="monospace" color="#660000">linkonce_odr</font> definitions for <font face="monospace" color="#660000">t</font> and <font face="monospace" color="#660000">nt</font><br></li><li>Use <font face="monospace" color="#660000">use</font> instead of the explicit instantiation and are both <font face="monospace" color="#660000">t</font> and <font face="monospace" color="#660000">nt</font> are only declarations</li><li>Add the outer namespace <font face="monospace">foo</font> and then <font face="monospace" color="#660000">t</font> is emitted as a <font face="monospace" color="#660000">linkonce_odr</font> definition and <font face="monospace" color="#660000">nt</font> is emitted as a declaration</li></ol>That last one (which was the first result I got) really confuses me - any ideas why a namespace would change the behavior here?<br></div></div></div></blockquote><div><br></div><div>My first guess would be that something has registered a ASTConsumer::HandleTopLevelDec<wbr>l callback or similar, and they're assuming that it gets called for every namespace-scope declaration.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>In any case, all those mysteries/differences in behavior might be aside to actually fixing the behavior here, which is what this email is really about.<br><br>This is basically the same problem as inline variables, and maybe even would allow some support for static variables in headers too (not sure, will see).<br><br>Any ideas what the behavior should be here? Since there's a desire not to run all global initializers if their specific submodule header isn't included in the program (for iostream's sake), how would this be done correctly under modular codegen?<br>My initial thought is potentially to defer the global initializers to the includers (that seems necessary to get the lazy/only-those-included behavior, right?) But that may not account for indirect inclusion? I guess that's already handled somehow for the iostreams non-modular case, so maybe it works.<br></div></div></div></blockquote><div><br></div><div>The explicit instantiation definition case is not especially interesting, because by [temp.spec]/5.1, such things should never appear in modular headers (because the header could only ever be used in one translation unit).<br></div><div><br></div><div>So let's focus in on the "inline void use()" case. We need some kind of mental model for what modular codegen means in order to figure out what should happen. The way I'm thinking about modular codegen is roughly:</div><div><br></div><div>For each header for which we perform modular codegen, we act as if</div><div> * that header is a separate translation unit in the program (in *addition* to being included into other places), and</div><div> * for that translation unit, we happen to emit definitions of inline functions and class metadata, even if they're not otherwise used, and</div><div> * in other translation units, we don't need to emit those symbols as a consequence.</div><div><br></div><div>Under that model, emitting the definition of use() should cause us to emit linkonce_odr definitions of both t and nt into the modular codegen translation unit. But it should not suppress the emission of linkonce_odr definitions of t and nt in other translation units too.</div><div><br></div><div>However, we also want to *not* run initializers for modules that are not actually used (eg, we don't want linking against the standard library to run the iostreams initializer -- and thus link in the iostreams library -- if it's not used, such as for a freestanding / embedded compilation). For modular codegen, this presumably also needs function sections, and section GC enabled in the linker.</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>& then the modular object file would perhaps have the weak_odr definition of the global variable itself, but no global initializer - depending on any live codepaths that reference the global necessarily requiring the using TU to have caused the initializer to run? That seems vaguely concerning... <br></div></div></div></blockquote><div><br></div><div>It does. Mostly I think it works out: if another TU is relying on an inline function definition to be provided by a modular codegen object, they must have run the notional initializer for that module, which in turn would have initialized those globals.</div><div><br></div><div>There's one case I'm concerned by: suppose the module is never actually imported, and all the TUs actually include the header textually. Now, suppose the inline function and global variables from the modular codegen TU are selected at link time, and the other copies are all discarded, and we cleverly put the per-variable global initializers in a COMDAT with the variables, so they get discarded too. Now we're left with a reference to an uninitialized global.</div><div><br></div><div>Perhaps we need to make a distinction between internal linkage globals with dynamic initialization in headers (eg the iostreams initializer), which we run in every user of the modular codegen header, and external linkage globals with dynamic initialization in headers (eg, inline variables, static data members of class templates, ...) which we run as part of initializing the modular codegen translation unit itself. If we do make that distinction, I worry that we'll lose some of the initialization order guarantees, though.</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Is this making sense? Any good ideas? Pointers to where to start, etc?<br><br>Thanks,<br>- Dave<br><br></div></div></div>
<br>______________________________<wbr>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">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/<wbr>mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div></div>