You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove another reference field from async state machines (#83737)
The async state machine Task-derived type currently adds three fields:
- The StateMachine
- An Action field for caching any delegate created to MoveNext
- The ExecutionContext to flow to the next MoveNext invocation
The other pending PR gets rid of the Action field by using the unused Action field from the base Task for that purpose.
This PR gets rid of the ExecutionContext field by using the unused state object field from the base Task for that purpose. The field is exposed via the public AsyncState property, so this also uses a bit from the state flags field to prevent this state object from being returned from that property.
The combination of removing those two fields shaves 16 bytes off of every `async Task` state machine box on 64-bit. The only remaining field added by the state machine type is for the state machine itself, which is required.
/// <summary>Captured ExecutionContext with which to invoke <see cref="MoveNextAction"/>; may be null.</summary>
306
+
/// <remarks>
307
+
/// This uses the base Task.m_stateObject field to store the context, as that field is otherwise unused for state machine boxes.
308
+
/// This *must* not be set to anything other than null or an ExecutionContext, or it will result in a type safety hole.
309
+
/// We also don't want this ExecutionContext exposed out to consumers of the Task via Task.AsyncState, so
310
+
/// the ctor sets the HiddenState option to prevent this from leaking out.
311
+
/// </remarks>
312
+
publicrefExecutionContext?Context
313
+
{
314
+
get
315
+
{
316
+
Debug.Assert(m_stateObjectisnull||m_stateObjectisExecutionContext,$"{nameof(m_stateObject)} must only be for ExecutionContext but contained {m_stateObject}.");
0 commit comments