-
Notifications
You must be signed in to change notification settings - Fork 786
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
Ensure that FSharp.Core is trimmable. #12819
Comments
@teo-tsirpanis curious - how does trimmer decide what to get rid of? Is there a spec for it? Should (can?) we be marking explicitly what's safely trimmable? |
To the best of my knowledge it starts from the entry point, recursively marks the types and methods it references, and removes everything else. The problem is reflection, because we can't statically determine with certainty what code is used and the trimmer warns us about it. So we add special attributes to these methods to help it figure out, or suppress warnings if it can't but we are sure it can't break anything. You can learn more about customizing trimming in https://devblogs.microsoft.com/dotnet/customizing-trimming-in-net-core-5/. But in general, we don't mark what is trimmable, but what is not, or what is difficult to trim by default. |
@teo-tsirpanis , It's not yet a scenario for us. But it will be ... |
I believe this is now complete, the final step %A support will be saitisfied by this PR: There are no known remaining issues. |
@KevinRansom |
I will take a look thanks. |
@teo-tsirpanis , I took a look at the PR. and will see if there is something we can do for the scenarios you have identified. My preference is to handle this by having bugs containing repros of trim failures, so that we can evaluate the failure and identify how we want to proceed on a case by case basis. As for annotations, I suppose there are some Apis that obviously won't work, but for now, I would prefer to see bugs where developers are arguing for why the Api should be available and doesn't work. For example the work for the --reflectionfree completely disabled apis using sprintf "%A" which was probably not the best solution, and I expect that the recent submissions have reversed that requirement. |
Makes sense, annotating absolutely everything is very hard. I might bring some of these annotations (the easy ones) in a PR in the future, but don't otherwise bother. |
@teo-tsirpanis excellent. Thanks |
@teo-tsirpanis , hey I just chatted with @dsyme about some of the edits you propose: We discussed this and we believe they are legacy APIs that shouldn't occur when compiled with a recent F# compiler unless witness passing is disabled. If you have an examples of these APIs failing with trimming we would love to take a look and see what it would take to ensure they work. Thanks Kevin |
I created #15980 to track trimming annotations |
Is your feature request related to a problem? Please describe.
When I trim a simple F# project, the size of
FSharp.Core
is unchanged. When I manually enable trimming it and after removing the optimization and signature data, its size shrunk by five, from 1.09 MB to 197 KB.Describe the solution you'd like
Providing these size savings out of the box and in a safe way would be great. The following things need to happen:
ILLink.Substitutions.xml
file to the library. If these files are indeed only used at compile time, I can submit a PR.FSharp.Core
to .NET 5+.[<assembly: AssemblyMetadata("IsTrimmable", "True")>]
will ensure thatFSharp.Core
will get trimmed.I am not sure whether the first bullet point requires the second.
Describe alternatives you've considered
N/A
Additional context
This issue is not about making F# in general friendly to trimming or AOT, but about the minimum required work to make just
FSharp.Core
trimmable.The text was updated successfully, but these errors were encountered: