C++ Logo

sg15

Advanced search

Re: [isocpp-ext] Can we expect that all C++ source files can have the same suffix?

From: Gabriel Dos Reis <gdr_at_[hidden]>
Date: Fri, 15 Apr 2022 20:54:20 +0000
>> *** Real Life is made more complex by the need for multiple modules implementations to co-exist - which is also completely outside the remit of the standard.

Oh, I forgot to add: in real life, header units have to co-exist with PCHs, all compiled in C++20 mode. That is what we found the hard way with Office codebase, for example. So, the command line has to determine the compiler's behavior.

-- Gaby

-----Original Message-----
From: SG15 <sg15-bounces_at_lists.isocpp.org> On Behalf Of Gabriel Dos Reis via SG15
Sent: Friday, April 15, 2022 1:47 PM
To: Iain Sandoe <iain_at_sandoe.co.uk>
Cc: Gabriel Dos Reis <gdr_at_microsoft.com>; sg15_at_lists.isocpp.org; Nathan Sidwell <nathan_at_acm.org>; Nico Josuttis <nico_at_josuttis.de>
Subject: Re: [SG15] [isocpp-ext] Can we expect that all C++ source files can have the same suffix?

> For header units I’ve followed the same pattern as GCC (we would consume your example header as a HU for -std=c++20; but as a PCH otherwise), that includes removing the “deprecated behaviour” warning in the C++20 “mode”***

Ah, but that means that if the content was

// 1.h
struct S { int i; };

constexpr S s { 3 };

int main() { return s.i; }

the behavior of the compiler will change when the file is renamed from 1.h to 1.cc, right?

> *** Real Life is made more complex by the need for multiple modules implementations to co-exist - which is also completely outside the remit of the standard.

I fully agree 😊

-- Gaby

-----Original Message-----
From: Iain Sandoe <iain_at_sandoe.co.uk>
Sent: Friday, April 15, 2022 1:12 PM
To: Gabriel Dos Reis <gdr_at_[hidden]>
Cc: sg15_at_lists.isocpp.org; Nathan Sidwell <nathan_at_acm.org>; Nico Josuttis <nico_at_josuttis.de>
Subject: Re: [SG15] [isocpp-ext] Can we expect that all C++ source files can have the same suffix?



> On 15 Apr 2022, at 21:01, Gabriel Dos Reis <gdr_at_microsoft.com> wrote:
>
> [Iain]
>> +1 on that.
>
> What does clang++ say when invoked as "clang++ 1.h" on the following translation unit stored in the source file 1.h?
>
> // 1.h
> struct S { int i; };
>
> constexpr S s { 3 };
>
> ?
>
> I get a diagnostic saying something about 'c-header', 'c++-header', and deprecated behavior. I don't have that diagnostic when I rename 1.h to 1.cc.
> Is that to be expected? Why?

Work In Progress; actually I hope to land the patches for driver header unit work over the next few days (the FE part is landed already).

For header units I’ve followed the same pattern as GCC (we would consume your example header as a HU for -std=c++20; but as a PCH otherwise), that includes removing the “deprecated behaviour” warning in the C++20 “mode”***

clang will get the -fmodule-header{=} command line switches as part of that set; which allows the user to specify that headers for HUs are searched for in the system / user header search paths.

Iain

*** Real Life is made more complex by the need for multiple modules implementations to co-exist - which is also completely outside the remit of the standard.

>
> -- Gaby
>
> -----Original Message-----
> From: SG15 <sg15-bounces_at_lists.isocpp.org> On Behalf Of Iain Sandoe via SG15
> Sent: Friday, April 15, 2022 12:02 PM
> To: sg15_at_[hidden]
> Cc: Iain Sandoe <iain_at_sandoe.co.uk>; Nathan Sidwell <nathan_at_acm.org>; Fred J. Tydeman via Ext <ext_at_lists.isocpp.org>; WG21 Tooling Study Group SG15 <tooling_at_open-std.org>; Nico Josuttis <nico_at_josuttis.de>
> Subject: Re: [SG15] [isocpp-ext] Can we expect that all C++ source files can have the same suffix?
>
>
>
>> On 15 Apr 2022, at 19:45, Nico Josuttis via SG15 <sg15_at_lists.isocpp.org> wrote:
>>
>> Thanks Nathan.
>> And as I see it now I agree.
>>
>> While convention for file suffixes help, every compiler should be able to process C++ translation and module units just based on their content.
>> That gives BY FAR the best flexibility.
>
> +1 on that.
>>
>> I opened a bug for Visual C++ to enable that.
>> I'd assume there is no problem to fulfill that request, because you only have to find the module declaration to know which option to turn on.
>> And with "module;" at the beginning you know whether such a declaration will come.
>>
>> Once Visual C++ has the fix, suddenly all the suffix and options discussion is gone.
>> (ok, clang could then follow).
>
> As far as my current work on the clang implementation goes this is the case - including an implementation of the scheme were a BMI is generated "on demand" as the source parsing discovers the need to emit an interface (which is what Nathan implemented in GCC, avoiding multiple invocations of the compiler for most cases where a BMI _and_ an object are needed). The latter is somewhat cleaner with the module-mapper scheme (but is also workable without). There is also an implementation of the module mapper in the pipeline.
>
> Iain
>
>>
>> Am 15. April 2022 20:20:45 MESZ schrieb Nathan Sidwell <nathan_at_acm.org>:
>> On 4/13/22 17:10, Nico Josuttis via SG15 wrote:
>> I should add that the fact that we need
>> module;
>> at the beginning of the global module fragment was only introduced to let a file identify itself as module file.
>> If we would require different suffixes, that would not have been necessary.
>>
>> But correct me if I am wrong.
>>
>> I shall correct you :)
>>
>> Here's the history (as I recall, all persons mentioned are real, and not to be confused with ficticious characters)
>>
>> * prior to me doing things with gcc, there was only 'module FOO;' as a module declaration at-most once within a TU. MSVC (the only compiler with module smarts at the time), had a flag to tell it 'this is an interface' vs 'this is an implementation'.
>>
>> * I found this unsatisfying, as it meant that there was something outside the source tokens that told you how to interpret them. In effect we had two languages.
>>
>> * IIRC, Gaby, Jason (Merrill) and I came up with the 'export module FOO;' vs 'module foo;' distinction. But still this could be anywhere in the source stream. I was able to implement this functionality to a working system.
>>
>> * Daveed proposed an early signifier of 'hey, this is gonna be a module', should the actual module declaration not be first. Hence 'module;' was born. (My understanding was that this was driven by implementors, as they had difficulty entering a module-like mode not at start of compilation, and indeed it was a little tricky to do that. I do not know if this was also a user request.)
>>
>> * post p1103, the requirement that everything between 'module;' and the module decl come from #include came to be.
>>
>> Hope that helps.
>>
>> I know I've mentioned it more than once, but I find it unsettling, given there was great opposition to there being a (two way?) mapping between file names and module names, that there is a move in the direction of making file names 'significant'. ISTM that the desire for bob.$REGULARSUFFIX and alice.$MODULESUFFIX is taking us all the way back to the first objection above about having two languages.
>>
>> nathan
>>
>>
>>
>>
>> Am 13. April 2022 22:58:13 MESZ schrieb Nicolai Josuttis via Ext <ext_at_lists.isocpp.org>:
>>
>> What I teach about modules is compelling. Programmers like and want to use it.
>> However, they ask how they should organize module files in practice.
>>
>> So far I cannot recommend a specific suffix (and I might never be able to do
>> that).
>> However there is one important question that IMO the standard should answer:
>> *Do we **/need /**different suffixes?*
>>
>> I understand that a suffix discussion is only of practical value.
>> But IMO the standard has to give an answer here (which has nothing to do
>> with which suffixes are used).
>>
>> Let me elaborate that in detail:
>>
>> Not having a standard suffix has interesting consequences.
>> So far we have header files and translation units.
>> But once we know what a C++ translation unit is, we can just compile them
>> all with the same compiler options or commands. Because in practice we have
>> different suffixes for header and source files, we can set-up generic rules
>> to compile our code.
>>
>> This works for any suffix, provided you know the way to tell the compiler
>> that we have a C++ file here:
>> (use /Tp with VC++ and -xc++ with gcc and you are done).
>>
>> Is this still true with modules?
>> That is: Can we expect that identifying a file as C++ file is enough to be
>> able to (pre) compile it as C++ file?
>>
>> Current compilers give different answers (AFAIK):
>>
>> - *gcc *says the same suffix is possible. There is not special option for
>> modules.
>> I can still have my own suffixes and use -xc++ though.
>>
>> - *VC++* currently requires different suffixes or different command-line
>> arguments.
>> Identifying a file as C++ file is not enough.
>> For example
>> - This is not enough: /Tp mymod.cppm
>> - You need: /interface /Tp mymod.cppm
>>
>> I wonder whether the behavior of VC++ is standard conforming.
>>
>> I see no place in the C++ standard saying that there has to be different
>> treatment of C++ source files to make them work.
>> Or do we require this somewhere?
>> We do not require different treatment just because we have templates,
>> namespaces, or exceptions used inside.
>> Therefore, I would expect that also using modules does not require special
>> handling.
>> (This is independent from the question whether different suffixes help to
>> deal with these files).
>>
>> If I am right, VC++ is not standard conforming.
>>
>>
>> In any case it would help a lot to clarify:
>> Can all C++ source files expect that treating them the same way works fine?
>>
>> If not, we obviously need different suffixes. But then we should clearly say
>> so (without necessarily saying which suffix it is).
>>
>>
>> I hope this questions brings us a bit forward to be able teach the first
>> *portable *"hello, modules" example.
>>
>> Thanks
>>
>> Nico
>>
>> -- ---
>> Nicolai M. Josuttis
>> https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.josuttis.de%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7C6363fccc4be24c1dd25c08da1f2122bc%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856524436325319%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=yTlYldVHgjXh0KfHFfH5ytYKSIXXLH8AKELnaKOgxMQ%3D&amp;reserved=0
>> +49 (0)531 / 129 88 86
>> +49 (0)700 / JOSUTTIS
>>
>> Books:
>> C++:https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstd20.com%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7C6363fccc4be24c1dd25c08da1f2122bc%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856524436325319%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=DY1DoWiWChIG%2FAQu5eU7w9vJhOLmoR3Mi8jTsSPyUDI%3D&amp;reserved=0,
>> https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstdlib.com%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7C6363fccc4be24c1dd25c08da1f2122bc%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856524436325319%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=5klZxEo1498bhT0SrUBGap%2B%2FvYHLvjh%2Bq4sUYmeN%2BV8%3D&amp;reserved=0
>>
>> --
>> Nico Josuttis
>> (sent from my mobile phone)
>> SG15 mailing list
>> SG15_at_lists.isocpp.org
>> https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&amp;data=05%7C01%7Cgdr%40microsoft.com%7C6363fccc4be24c1dd25c08da1f2122bc%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856524436325319%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=4VsmCMCRJxN0xmXVR%2FzAsuZ70TvQpoagjxfLV%2BPlJ5c%3D&amp;reserved=0
>>
>>
>> --
>> Nathan Sidwell
>> --
>> Nico Josuttis
>> (sent from my mobile phone)
>> _______________________________________________
>> SG15 mailing list
>> SG15_at_lists.isocpp.org
>> https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&amp;data=05%7C01%7Cgdr%40microsoft.com%7C6363fccc4be24c1dd25c08da1f2122bc%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856524436325319%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=4VsmCMCRJxN0xmXVR%2FzAsuZ70TvQpoagjxfLV%2BPlJ5c%3D&amp;reserved=0
>
> _______________________________________________
> SG15 mailing list
> SG15_at_[hidden]
> https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&amp;data=05%7C01%7Cgdr%40microsoft.com%7C6363fccc4be24c1dd25c08da1f2122bc%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856524436325319%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=4VsmCMCRJxN0xmXVR%2FzAsuZ70TvQpoagjxfLV%2BPlJ5c%3D&amp;reserved=0

_______________________________________________
SG15 mailing list
SG15_at_lists.isocpp.org
https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&amp;data=05%7C01%7Cgdr%40microsoft.com%7C6363fccc4be24c1dd25c08da1f2122bc%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856524436325319%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=4VsmCMCRJxN0xmXVR%2FzAsuZ70TvQpoagjxfLV%2BPlJ5c%3D&amp;reserved=0

Received on 2022-04-15 20:54:24