Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ms_abi is implemented incorrectly for larger values (>=16 bytes) #30710

Closed
nagisa opened this issue Dec 13, 2016 · 13 comments
Closed

ms_abi is implemented incorrectly for larger values (>=16 bytes) #30710

nagisa opened this issue Dec 13, 2016 · 13 comments
Labels
bugzilla Issues migrated from bugzilla clang Clang issues not falling into any other category

Comments

@nagisa
Copy link
Member

nagisa commented Dec 13, 2016

Bugzilla Link 31362
Resolution FIXED
Resolved on Mar 30, 2018 09:05
Version 3.9
OS Linux
Blocks #35152
CC @DimitryAndric,@zmodem,@PiotrCW,@rnk,@ZviRackover
Fixed by commit(s) rL324594

Extended Description

#include <inttypes.h>
struct i128 { uint64_t a; uint64_t b; };

__attribute__((ms_abi, noinline)) struct i128 passthrough_a_s(struct i128 a) {
    return a;
}

__attribute__((ms_abi, noinline)) __int128 passthrough_a(__int128 a) {
    return a;
}

This code compiles to assembly that looks like this:

passthrough_a_s:
        mov     rax, rcx
        ret

passthrough_a:
        mov     rax, rcx
        ret

As per these two documents:

Both of these are wrong and the generated assembly ought to look like this instead:

passthrough_a_s:
        mov     rax, rcx
        mov     r9, QWORD PTR [rdx]
        mov     r10, QWORD PTR [rdx+8]
        mov     QWORD PTR [rcx], r9
        mov     QWORD PTR [rcx+8], r10
        ret

passthrough_a:
        mov     rax, rcx
        mov     r9, QWORD PTR [rdx]
        mov     r10, QWORD PTR [rdx+8]
        mov     QWORD PTR [rcx], r9
        mov     QWORD PTR [rcx+8], r10
        ret

The relevant excerpts:

A scalar return value that can fit into 64 bits is returned through RAX—this includes __m64 types. Non-scalar types including floats, doubles, and vector types such as __m128, __m128i, __m128d are returned in XMM0. [snip] To be returned by value in RAX, user-defined types must have a length of 1, 2, 4, 8, 16, 32, or 64 bits. [snip] Otherwise, the caller assumes the responsibility of allocating memory and passing a pointer for the return value as the first argument.

__m128 types, arrays and strings are never passed by immediate value but rather a pointer is passed to memory allocated by the caller. Structs/unions of size 8, 16, 32, or 64 bits and __m64 are passed as if they were integers of the same size. Structs/unions other than these sizes are passed as a pointer to memory allocated by the caller. For these aggregate types passed as a pointer (including __m128), the caller-allocated temporary memory will be 16-byte aligned.

Also from https://msdn.microsoft.com/en-us/library/ms235286.aspx:

There is no attempt to spread a single argument across multiple registers.

@rnk
Copy link
Collaborator

rnk commented Jan 17, 2018

*** Bug llvm/llvm-bugzilla-archive#33834 has been marked as a duplicate of this bug. ***

@rnk
Copy link
Collaborator

rnk commented Jan 17, 2018

*** Bug #29513 has been marked as a duplicate of this bug. ***

@rnk
Copy link
Collaborator

rnk commented Jan 17, 2018

*** Bug llvm/llvm-bugzilla-archive#35814 has been marked as a duplicate of this bug. ***

@zmodem
Copy link
Collaborator

zmodem commented Jan 18, 2018

Issue 35814 was tentatively marked as a release blocker, so let's mark this as such too. I don't know if anyone will have time to look into it though.

@DimitryAndric
Copy link
Collaborator

Issue 35814 was tentatively marked as a release blocker, so let's mark this
as such too. I don't know if anyone will have time to look into it though.

Bug 35814 was specifically about clang now asserting after https://reviews.llvm.org/rL316416. It would be nice to fix at least that, somehow? Not sure if reverting r316416 is feasible, though.

@llvmbot
Copy link
Collaborator

llvmbot commented Jan 26, 2018

I plan to look into this issue.

Currently my understanding is that win64cc was never fully implemented (byval returns and arguments are not handled as specified in the convention). The solution seems to be to modify X86ISelLowering to correctly spill/fill byval arguments to addresses passed in RCX, RDX, R8 and R9 instead of stack if this CC is used.

With byvals loaded and stored correctly the original problem form Bug 35814 should disappear as the X86CallFrameOptimization will not be removing the stores and loads anymore.

@llvmbot
Copy link
Collaborator

llvmbot commented Feb 7, 2018

After investigation I reached conclusion that issue is caused by Clang.

When clang is lowering function into IR on platform other than Windows standard x86_64 ABI rules are used with disregard to what is specified using attribute. This is caused by the fact that only compilation target is checked when when choosing ABI, calling convention of lowered function (which may be overwritten by attribute) is not checked. This caused clang to split 128-bit byval into 64-bit arguments when emiting IR. Even though the information about CC is available to the LLVM code generator there is no indication that the arguments were originally forming single byval argument, so code gen is not able to produce correct binary in this case.

I've prepared a patch that is fixing this issue: https://reviews.llvm.org/D43016

@DimitryAndric
Copy link
Collaborator

There's now a fix landed in https://reviews.llvm.org/rL324594, it at least fixes the assertion from bug 35814, but can the original submitter of this bug also please independently verify that it fixes their issue?

We should merge this as soon as it has baked a little in trunk, Hans, do you agree?

@zmodem
Copy link
Collaborator

zmodem commented Feb 9, 2018

There's now a fix landed in https://reviews.llvm.org/rL324594, it at least
fixes the assertion from bug 35814, but can the original submitter of this
bug also please independently verify that it fixes their issue?

We should merge this as soon as it has baked a little in trunk, Hans, do you
agree?

Sounds good to me. Merged in r324718.

@rnk
Copy link
Collaborator

rnk commented Nov 26, 2021

mentioned in issue llvm/llvm-bugzilla-archive#33834

@zmodem
Copy link
Collaborator

zmodem commented Nov 27, 2021

mentioned in issue #35152

@rnk
Copy link
Collaborator

rnk commented Nov 27, 2021

mentioned in issue llvm/llvm-bugzilla-archive#35814

@rnk
Copy link
Collaborator

rnk commented Nov 27, 2021

mentioned in issue llvm/llvm-bugzilla-archive#36806

@llvmbot llvmbot transferred this issue from llvm/llvm-bugzilla-archive Dec 10, 2021
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bugzilla Issues migrated from bugzilla clang Clang issues not falling into any other category
Projects
None yet
Development

No branches or pull requests

5 participants