-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
[Distributed] Correct handling ad-hoc requirements in non-final classes #80109
base: main
Are you sure you want to change the base?
Conversation
e8485c7
to
a0ccbcb
Compare
d8dba5d
to
b4ff64e
Compare
b4ff64e
to
3c88726
Compare
@swift-ci please smoke test |
With some hints from @slavapestov I moved the witness generic signature fixing into However we have two very mysterious failures remaining:
these are weird because the test is not very different than other remoteCall ones... And especially, the The failures of the two above are pretty mysterious because the backtrace is "nothing" so we must have messed up something real bad:
The other one:
The crashes are pretty nasty, as if we messed up where we jump - so the witnesses are somehow messed up, but unclear why only in those two tests, while other remoteCall roundtrip ones seemed fine hm. Stepping through the runtime bits of remoteCall etc isn't very informative sadly. Slava also suggested we may need to remove the newly added requirements from IR, but I'm not quite sure where to do that. Removing the @xedin @mikeash maybe you have some ideas what we might need to look into here, if you'd skim the change -- primarily inside the |
@@ -762,14 +762,11 @@ struct FakeInvocationEncoder_recordArgument_wrongType: DistributedTargetInvocati | |||
mutating func doneRecording() throws {} | |||
} | |||
struct FakeInvocationEncoder_recordArgument_missingMutating: DistributedTargetInvocationEncoder { | |||
//expected-error@-1{{type 'FakeInvocationEncoder_recordArgument_missingMutating' does not conform to protocol 'DistributedTargetInvocationEncoder'}} | |||
//expected-error@-1{{struct 'FakeInvocationEncoder_recordArgument_missingMutating' is missing witness for protocol requirement 'recordArgument'}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was debugging why the hell only the recordArgument changed behavior here and could not figure it out so far... all the checks are the same after all hm. May be a clue, I don't know yet.
This isn't wrong though, we still do miss the witness as expected after all -- since it has missing the mutating and logic to detect that still works after all hm
Ok even weirder, the Linux build fails (but is fine on macOS) like
which did build fine on macOS, which makes me wonder what's up here... definitely more digging required. |
Reproduces #79318
The problem is that the protocol requirements for those "ad-hoc" requirements are declared as:
and then inside
EmitPolymorphicParameters::injectAdHocDistributedRequirements
we detect those few requirements that get this treatment, and we add theSuccess: SerializationRequirement
constraints.This works in debug mode, but as #79318 uncovered, it is not quite enough and will crash in release mode. Specifically, we add the witness information like this:
which seems is not enough in release mode (?) or something gets optimized away, but could not figure out what exactly would even be expected to "be" there.
The crash manifests as an assertion about an invalid requirement which is because we're missed to add (or... lost somehow, due to some optimization?) the
: Transferable
the inject was adding. For reference, here's where we end up triggering the assertion:We also notice that this problem does not happen when the type is a
struct
, and it seems to be related with how the try_apply is made to the function because if we make (sorry example below hasremoteCall
, but it is the same issue as theonReturn
) the call to such method using a function ref:We fail; because we're missing the Transferable type information. If the call is made as a
class_method
call like this (which happens in debug mode):This works because it seems the first thing the class method does is "get" that type information using a
conformsToProtocol
...Not really sure what to explore further here. Key finding is that this is specifically a release mode issue, and that we're then missing the
t_0_2: Transferable
bit that ourinjectAdHocDistributedRequirements
would have added. What could be different here in a release mode?rdar://146101172