-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Another attempt at fixing #99198 #111255
Merged
Merged
Another attempt at fixing #99198 #111255
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,6 +107,8 @@ public enum MethodEntryFlags | |
|
||
public MethodDesc Method => _method; | ||
|
||
public virtual bool IsUnboxingStub => _method.OwningType.IsValueType && !_method.Signature.IsStatic; | ||
|
||
public NativeLayoutMethodEntryVertexNode(NodeFactory factory, MethodDesc method, MethodEntryFlags flags) | ||
{ | ||
_method = method; | ||
|
@@ -148,7 +150,7 @@ public override IEnumerable<DependencyListEntry> GetStaticDependencies(NodeFacto | |
|
||
if ((_flags & MethodEntryFlags.SaveEntryPoint) != 0) | ||
{ | ||
IMethodNode methodEntryPointNode = GetMethodEntrypointNode(context, out _); | ||
IMethodNode methodEntryPointNode = GetMethodEntrypointNode(context); | ||
dependencies.Add(new DependencyListEntry(methodEntryPointNode, "NativeLayoutMethodEntryVertexNode entrypoint")); | ||
} | ||
|
||
|
@@ -187,17 +189,17 @@ public override Vertex WriteVertex(NodeFactory factory) | |
} | ||
} | ||
|
||
if (IsUnboxingStub) | ||
flags |= MethodFlags.IsUnboxingStub; | ||
|
||
uint fptrReferenceId = 0; | ||
if ((_flags & MethodEntryFlags.SaveEntryPoint) != 0) | ||
{ | ||
flags |= MethodFlags.HasFunctionPointer; | ||
|
||
bool unboxingStub; | ||
IMethodNode methodEntryPointNode = GetMethodEntrypointNode(factory, out unboxingStub); | ||
IMethodNode methodEntryPointNode = GetMethodEntrypointNode(factory); | ||
fptrReferenceId = factory.MetadataManager.NativeLayoutInfo.ExternalReferences.GetIndex(methodEntryPointNode); | ||
|
||
if (unboxingStub) | ||
flags |= MethodFlags.IsUnboxingStub; | ||
if (methodEntryPointNode.Method.IsCanonicalMethod(CanonicalFormKind.Universal)) | ||
flags |= MethodFlags.FunctionPointerIsUSG; | ||
} | ||
|
@@ -219,10 +221,9 @@ private Vertex GetContainingTypeVertex(NodeFactory factory) | |
} | ||
} | ||
|
||
protected virtual IMethodNode GetMethodEntrypointNode(NodeFactory factory, out bool unboxingStub) | ||
protected virtual IMethodNode GetMethodEntrypointNode(NodeFactory factory) | ||
{ | ||
unboxingStub = _method.OwningType.IsValueType && !_method.Signature.IsStatic; | ||
IMethodNode methodEntryPointNode = factory.MethodEntrypoint(_method, unboxingStub); | ||
IMethodNode methodEntryPointNode = factory.MethodEntrypoint(_method, IsUnboxingStub); | ||
return methodEntryPointNode; | ||
} | ||
} | ||
|
@@ -748,15 +749,11 @@ public override Vertex WriteVertex(NodeFactory factory) | |
return SetSavedVertex(factory.MetadataManager.NativeLayoutInfo.TemplatesSection.Place(methodEntryVertex)); | ||
} | ||
|
||
protected override IMethodNode GetMethodEntrypointNode(NodeFactory factory, out bool unboxingStub) | ||
protected override IMethodNode GetMethodEntrypointNode(NodeFactory factory) | ||
{ | ||
Debug.Assert(NeedsEntrypoint(_method)); | ||
unboxingStub = _method.OwningType.IsValueType && !_method.Signature.IsStatic; | ||
// TODO-SIZE: this is only address taken if it's a target of a delegate | ||
IMethodNode methodEntryPointNode = factory.AddressTakenMethodEntrypoint(_method, unboxingStub); | ||
// Note: We don't set the IsUnboxingStub flag on template methods (all template lookups performed at runtime are performed with this flag not set, | ||
// since it can't always be conveniently computed for a concrete method before looking up its template) | ||
Comment on lines
-757
to
-758
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the ancient .NET Native root of all evil. |
||
unboxingStub = false; | ||
IMethodNode methodEntryPointNode = factory.AddressTakenMethodEntrypoint(_method, IsUnboxingStub); | ||
return methodEntryPointNode; | ||
} | ||
|
||
|
@@ -1677,7 +1674,7 @@ public WrappedMethodDictionaryVertexNode(NodeFactory factory, MethodDesc method) | |
{ | ||
} | ||
|
||
protected override IMethodNode GetMethodEntrypointNode(NodeFactory factory, out bool unboxingStub) | ||
protected override IMethodNode GetMethodEntrypointNode(NodeFactory factory) | ||
{ | ||
throw new NotSupportedException(); | ||
} | ||
|
@@ -1903,16 +1900,17 @@ private sealed class WrappedMethodEntryVertexNode : NativeLayoutMethodEntryVerte | |
public bool _unboxingStub; | ||
public IMethodNode _functionPointerNode; | ||
|
||
public override bool IsUnboxingStub => _unboxingStub; | ||
|
||
public WrappedMethodEntryVertexNode(NodeFactory factory, MethodDesc method, bool unboxingStub, IMethodNode functionPointerNode) : | ||
base(factory, method, functionPointerNode != null ? MethodEntryFlags.SaveEntryPoint : default(MethodEntryFlags)) | ||
{ | ||
_unboxingStub = unboxingStub; | ||
_functionPointerNode = functionPointerNode; | ||
} | ||
|
||
protected override IMethodNode GetMethodEntrypointNode(NodeFactory factory, out bool unboxingStub) | ||
protected override IMethodNode GetMethodEntrypointNode(NodeFactory factory) | ||
{ | ||
unboxingStub = _unboxingStub; | ||
return _functionPointerNode; | ||
} | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This is my previous fix that now seems to be causing me problems.