<p dir="ltr">On Aug 11, 2015 9:45 AM, "Reid Kleckner" <<a href="mailto:rnk@google.com">rnk@google.com</a>> wrote:<br>
><br>
> On Mon, Aug 10, 2015 at 6:40 PM, Richard Smith <<a href="mailto:richard@metafoo.co.uk">richard@metafoo.co.uk</a>> wrote:<br>
>><br>
>> On Mon, Aug 10, 2015 at 5:43 PM, Reid Kleckner <<a href="mailto:rnk@google.com">rnk@google.com</a>> wrote:<br>
>>><br>
>>> On Mon, Aug 10, 2015 at 5:00 PM, Richard Smith <<a href="mailto:richard@metafoo.co.uk">richard@metafoo.co.uk</a>> wrote:<br>
>>>><br>
>>>> On Mon, Aug 10, 2015 at 12:39 PM, Reid Kleckner via cfe-commits <<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a>> wrote:<br>
>>>>><br>
>>>>> +    // If the key function is dllimport but the class isn't, then the class has<br>
>>>>> +    // no key function. The DLL that exports the key function won't export the<br>
>>>>> +    // vtable in this case.<br>
>>>>> +    if (MD->hasAttr<DLLImportAttr>() && !RD->hasAttr<DLLImportAttr>())<br>
>>>>> +      return nullptr;<br>
>>>><br>
>>>><br>
>>>> Does the same apply if the key function is DLLExport and the class is not? (Presumably this would just lead us to export a vtable that we don't need to, which is presumably harmless?)<br>
>>><br>
>>><br>
>>> No, there's no issue with dllexport. If the key function is dllexport, then it must be part of the same DLL as the current TU, and we can rely on it to provide (potentially non-exported) vtable and RTTI symbols.<br>
>><br>
>><br>
>> Even if a different compiler is used to compile the other TUs in this DLL? It seems to me that if the rule really is "the vtable takes its DLL storage class from the class, not the key function", then the TU with the key function need not actually provide a vtable symbol if the class is not dllexport but the key function is.<br>
><br>
><br>
> GCC (and presumably other Itanium compilers that support dllexport) still emit the vtable with the key function when the key is exported. It's just not necessarily exported. All the TUs that are statically linked into the DLL containing an exported key function can rely on the vtable to be there, so I don't see any reason to add logic around dllexport here. Make sense?</p>
<p dir="ltr">Yes, thanks.</p>