-
Notifications
You must be signed in to change notification settings - Fork 128
Comparing changes
Open a pull request
base repository: dotnet/linker
base: c9ba21d
head repository: dotnet/linker
compare: 10bb5ae
- 14 commits
- 33 files changed
- 6 contributors
Commits on Dec 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 6794599 - Browse repository at this point
Copy the full SHA 6794599View commit details
Commits on Dec 10, 2022
-
Fix quadratic algorithm in CompilerGeneratedState (#3150)
The way this code was supposed to work was that it would scan the compiler- generated type and all its descendants, record each generated type it found, then fill in information for all of the found types. The way it actually worked was that it would scan the descendants, record each generated type, then try to fill in information *for all generated types found in the program*. This is quadratic as you start adding types, as you rescan everything you've added before. The fix is to record just the types from the current pass, and then add them to the larger bag when everything's complete.
Configuration menu - View commit details
-
Copy full SHA for 27ce032 - Browse repository at this point
Copy the full SHA 27ce032View commit details
Commits on Dec 12, 2022
-
Add a test which uncovered stack overflow in 7.0 (#3156)
Recurisve generics with interface marking annotation used to cause stackoverflow in the linker. The test now passes since the problem was fixed in #3073
Configuration menu - View commit details
-
Copy full SHA for dde6d62 - Browse repository at this point
Copy the full SHA dde6d62View commit details -
Update dependencies from https://github.com/dotnet/arcade build 20221…
…209.3 (#3159) [main] Update dependencies from dotnet/arcade
Configuration menu - View commit details
-
Copy full SHA for 2db841f - Browse repository at this point
Copy the full SHA 2db841fView commit details
Commits on Dec 19, 2022
-
[main] Update dependencies from dotnet/arcade (#3166)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 7a613cd - Browse repository at this point
Copy the full SHA 7a613cdView commit details
Commits on Jan 2, 2023
-
Update dependencies from https://github.com/dotnet/arcade build 20221…
…223.1 (#3169) [main] Update dependencies from dotnet/arcade
Configuration menu - View commit details
-
Copy full SHA for afdb206 - Browse repository at this point
Copy the full SHA afdb206View commit details -
Update dependencies from https://github.com/dotnet/arcade build 20221…
…230.1 (#3170) [main] Update dependencies from dotnet/arcade
Configuration menu - View commit details
-
Copy full SHA for c30cfda - Browse repository at this point
Copy the full SHA c30cfdaView commit details
Commits on Jan 3, 2023
-
Add tests for type deconstruction and construction (#3164)
This was prompted by #3158 So I just added several tests for various shapes of type deconstructions. To make it symmetric I also added tests for what I call type construction (tuples, anonymous types, records).
Configuration menu - View commit details
-
Copy full SHA for 72d05e4 - Browse repository at this point
Copy the full SHA 72d05e4View commit details
Commits on Jan 4, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 19c7f53 - Browse repository at this point
Copy the full SHA 19c7f53View commit details
Commits on Jan 5, 2023
-
Add tests for ldtoken analysis and fixes a small bug for a field (#3173)
LdToken acts basically as a reflection access and so it needs to warn about the returned member if that has annotations on it.
Configuration menu - View commit details
-
Copy full SHA for beb6d3b - Browse repository at this point
Copy the full SHA beb6d3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4b3f78c - Browse repository at this point
Copy the full SHA 4b3f78cView commit details
Commits on Jan 9, 2023
-
Fix new warning which shows up with latest roslyn (#3179)
First encountered in dotnet/runtime#80235, so copying the change to dotnet/linker
Configuration menu - View commit details
-
Copy full SHA for 12885df - Browse repository at this point
Copy the full SHA 12885dfView commit details
Commits on Jan 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7716bee - Browse repository at this point
Copy the full SHA 7716beeView commit details
Commits on Jan 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 10bb5ae - Browse repository at this point
Copy the full SHA 10bb5aeView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff c9ba21d...10bb5ae