AMD64 ABI mandates caller to specify the number of used SSE registers
when passing variable arguments.
GCC also provides option -mskip-rax-setup to skip the setup of rax when
SSE is disabled. This helps to reduce the code size, see pr23258.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/X86/X86ISelLowering.cpp | ||
---|---|---|
99 | The description needs some further clarification. It should likely be "can be passed" otherwise it begs the question of when the conditional statement is false. |
Address review comment.
llvm/lib/Target/X86/X86ISelLowering.cpp | ||
---|---|---|
99 | Good suggestion. Done, thanks. |
Thanks for the patch; I'd like to see this encoded in the IR (perhaps as a function level attribute), the -mno- variant added, and perhaps help the user if they forget to add -mno-sse that -mskip-rax-setup will otherwise be ignored.
Just noting:
For the Linux kernel, arch/x86/Makefile:51 sets -mno-sse (line 117 then sets -mskip-rax-setup if the compiler supports it).
Looking at the GCC patch and playing with it in godbolt, it looks like -mskip-rax-setup is only respected when -mno-sse is set.
clang/include/clang/Driver/Options.td | ||
---|---|---|
3193 | I think GCC support -mno-skip-rax-setup as well. Can you please add that (and tests for it) as well? We don't need to actually handle it, I think, but we shouldn't warn about the flag being unsupported, for example. | |
clang/lib/Driver/ToolChains/Clang.cpp | ||
2197 | It might be nice to warn the user if this flag depends on -mno-sse. | |
llvm/lib/Target/X86/X86ISelLowering.cpp | ||
96 | If it's a command line option rather than encoded in the IR, then this won't be handled correctly under LTO (we support building the x86 linux kernel under LTO), unless the linker re-passes the flag. I've been trying to avoid that by encoding this information properly in IR rather than rely on codegen command line options which I find brittle. Please see https://reviews.llvm.org/D103928 as an example. |
clang/include/clang/Driver/Options.td | ||
---|---|---|
3193 | Consider SimpleMFlag | |
llvm/lib/Target/X86/X86ISelLowering.cpp | ||
96 | This depends on how frequent the feature is used. I see that arch/x86/Makefile may add -mskip-rax-setup which is presumably used by all C files, so a module flag metadata suffices. If there are mix-and-match cases for different modules (e.g. ssp/nossp) a function attribute may be used. If a feature is really obscure than I might not consider wasting an IR attribute on it. Arguably if a feature is sufficient obscure we may not want to port it from GCC at all. So "This fixes pr23258." in the description should state the use case to give archaeologists a hint why the feature is added. |
llvm/lib/Target/X86/X86ISelLowering.cpp | ||
---|---|---|
96 | That's fine, though then we should add a test for new module level IR using llvm-link, IMO, since this (and many -m flags) imply an ABI breakage across modules with mismatched use of this flag.
In this case, I think@hjl.tools has some nice numbers to justify this feature in their patch. I can run similar numbers on clang built kernels, but it seems nice to have. |
Address review comments.
- Add support for -mno-skip-rax-setup and its test;
- Use module flag metadata instead of command line option in backend;
It might be nice to add an llvm-link test that produces an error when this module metadata doesn't match. Basically, it would be nice to error if during LTO we link together two modules that differ in their use of -mskip-rax-setup since that has ABI implications between the two modules. https://llvm.org/docs/LangRef.html#module-flags-metadata
clang/include/clang/Basic/CodeGenOptions.def | ||
---|---|---|
455 | Maybe note that this is x86 specific? | |
clang/include/clang/Driver/Options.td | ||
3193 | Via @MaskRay 's suggestion, can we do something like: def skip_rax_setup : SimpleMFlag<"skip-rax-setup", "Skip", "Do not skip", "setting up RAX register when passing variable arguments (x86 only)">; Do we test that this flag is warned about being unused for non-x86 targets? (Is it worth adding such a test to clang)? | |
llvm/test/CodeGen/X86/pr23258.ll | ||
5 | Might be worth testing the fourth case: +sse, SkipRaxSetup == 0. Though I think that exposes that X86TargetLowering::X86TargetLowering is only checking whether the Metadata exists, not whether it has a particular value. | |
18 | might be able to remove entry:, dso_local, and nounwind? | |
23 | Is there anything one the callee side that we should check? I assume the callee does some check of %al normally? |
llvm/test/CodeGen/X86/pr23258.ll | ||
---|---|---|
23 | s/one/on/ |
It might be nice to add an llvm-link test that produces an error when this module metadata doesn't match. Basically, it would be nice to error if during LTO we link together two modules that differ in their use of -mskip-rax-setup since that has ABI implications between the two modules. https://llvm.org/docs/LangRef.html#module-flags-metadata
I don't think so. The flag looks like ABI breaker, but indeed it's just for performance. If some modules generated without the flag, there's only a bit performance lose. If two modules with and without the flag are linking together. The Override works correctly for them.
clang/include/clang/Driver/Options.td | ||
---|---|---|
3193 | Another reason I didn't use SimpleMFlag is GCC doesn't have help test for -mno-skip-rax-setup. I deliberately hide it in this way.
I tested it locally. Driver will warn it for other target, Clang doesn't. I think it should be enough. I don't know if there's precedent, but adding an irrelevant option test to other target's test folder looks a bit weird to me. | |
llvm/test/CodeGen/X86/pr23258.ll | ||
5 | I don't think so. We use it like the way we use #ifdef xxx instead of #if xxx. The value can be simply ignored, it is just required by the metadata semantic. |
Thanks for the feature. I'd still prefer to see SimpleMFlag used, but it's not a big deal to me.
clang/include/clang/Driver/Options.td | ||
---|---|---|
3193 |
While clang does try hard to emulate GCC, both in features and interface, that's trying too hard to emulate poor interface. |
Thanks @nickdesaulniers for the review! I found another problem with SimpleMFlag, to which MarshallingInfoFlag cannot be assigned separately. I'll land it as is then.
Maybe note that this is x86 specific?