-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Support for RequiresAttributeMismatch testing #72496
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
Merged
tlakollo
merged 5 commits into
dotnet:main
from
tlakollo:RequiresDiagnosticMismatchInNativeAOT
Jul 21, 2022
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fe20630
Default answer of ShouldProduceFullVTable to false in the MultiFileSh…
tlakollo 0f4bb88
PR feedback
tlakollo d34d8cb
Gate warning generation of IL2026 to cases in which TypeHierarchy doe…
tlakollo 8d4a5eb
Refactor code for better readability
tlakollo 1407ccb
Move TestInfraMultiFileCompilationModuleGroup to test project
tlakollo 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
PR feedback
- Loading branch information
commit 0f4bb8844c55eb29d7f90382ad0252e1d15a327e
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
51 changes: 51 additions & 0 deletions
51
...oreclr/tools/aot/ILCompiler.Compiler/Compiler/TestInfraMultiFileCompilationModuleGroup.cs
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Diagnostics; | ||
|
|
||
| using ILCompiler.DependencyAnalysis; | ||
| using Internal.TypeSystem; | ||
| using Internal.TypeSystem.Ecma; | ||
|
|
||
| namespace ILCompiler | ||
| { | ||
|
|
||
| /// <summary> | ||
| /// Represents a non-leaf multifile compilation group where types contained in the group are always fully expanded. | ||
| /// </summary> | ||
| public class TestInfraMultiFileSharedCompilationModuleGroup : MultiFileCompilationModuleGroup | ||
| { | ||
| public TestInfraMultiFileSharedCompilationModuleGroup(CompilerTypeSystemContext context, IEnumerable<ModuleDesc> compilationModuleSet) | ||
| : base(context, compilationModuleSet) | ||
| { | ||
| } | ||
|
|
||
| public override bool ShouldProduceFullVTable(TypeDesc type) | ||
| { | ||
| return false; | ||
| } | ||
|
|
||
| public override bool ShouldPromoteToFullType(TypeDesc type) | ||
| { | ||
| return ShouldProduceFullVTable(type); | ||
| } | ||
|
|
||
| public override bool PresenceOfEETypeImpliesAllMethodsOnType(TypeDesc type) | ||
| { | ||
| return (type.HasInstantiation || type.IsArray) && ShouldProduceFullVTable(type) && | ||
| type.ConvertToCanonForm(CanonicalFormKind.Specific).IsCanonicalSubtype(CanonicalFormKind.Any); | ||
| } | ||
|
|
||
| public override bool AllowInstanceMethodOptimization(MethodDesc method) | ||
| { | ||
| // Both the instance methods and the owning type are homed in a single compilation group | ||
| // so if we're able to generate the body, we would also generate the owning type here | ||
| // and nowhere else. | ||
| Debug.Assert(ContainsMethodBody(method, unboxingStub: false)); | ||
| TypeDesc owningType = method.OwningType; | ||
| return owningType.IsDefType && !owningType.HasInstantiation && !method.HasInstantiation; | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.