-
Notifications
You must be signed in to change notification settings - Fork 35
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
Resolver improvements #22
base: main
Are you sure you want to change the base?
Conversation
I was asked about the status of this PR privately, so I've decided to post an update here. It's mostly complete on my local branch, but I am waiting on Washi1337/AsmResolver#598 to be properly fixed upstream which is likely going to take a while as it's likely going to require a rewrite of Also, as mentioned in #23, it may be technically possible to not require dependencies for accurately resolving generic methods by analyzing the devirtualized instructions or stack (possibly using Echo) to find the parameter indices, but I don't have the motivation to implement this yet. |
Finished revamping core functionality of the resolver, now waiting for Washi1337/AsmResolver@61f9115 to be included in nuget release. |
More efficient & accurate member resolver.
Adds a new toggle-able option to require dependencies when resolving methods utilizing generics for more accuracy:
--require-deps-for-generics
TODO: