-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Some cleanups in Assembly/Loader area #57023
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
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
be13383
rename GAC -> TPA
VSadov 440bd6e
remove GetAvailableImageTypes
VSadov 081f08c
Removed ICLRPrivAssembly
VSadov 27d414c
Move Assembly:: Add/Release to .inl
VSadov 767ef95
ApplicationContext is not implementing IUnknown
VSadov a984bd5
ApplicationContext does not need AppDomainId
VSadov 5b2218c
ICLRPrivBinder is not a COM object
VSadov 68a9b4c
Assembly is not a binder and should not have BindAssemblyByName
VSadov 24ca380
ApplicationContext is always an embedded value and does not need refe…
VSadov 6ed1653
Simplified GetBinderID and GetLoaderAllocator, since not COM
VSadov d435108
Moved AppContext to up to ICLRPrivBinder
VSadov eb3bc8e
Removed GetBinderHash
VSadov 331eccb
Removed a couple now pointless AddRef/Release
VSadov a186ca4
virtualized BindUsingAssemblyName
VSadov a616b18
renamed ICLRPrivBinder --> AssemblyBinder
VSadov 63ef26b
renamed BINDER_SPACE::AssemblyBinder --> BINDER_SPACE::AssemblyBinder…
VSadov 8d61a2d
Merge CCoreCLRBinderHelper into AssemblyBinderCommon
VSadov 61068b0
Rename CLRPrivBinderCoreCLR -->DefaultAssemblyBinder
VSadov f1ee77f
Renamed CLRPrivBinderAssemblyLoadContext --> CustomAssemblyBinder
VSadov 9920bc9
Renamed PTR_ICLRPrivBinder --> PTR_AssemblyBinder
VSadov 6cc9cef
Remove clrprivbinding_i.cpp
VSadov babbcd2
A few touch ups
VSadov b241939
fix Linux build
VSadov 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
Merge CCoreCLRBinderHelper into AssemblyBinderCommon
- Loading branch information
commit 8d61a2da5267305b95e5252a7cd1f407937831aa
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
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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.
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.
@VSadov is this TODO obsolete? If not, it would be nice to have an issue for it and reference it here.
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.
Possibly obsolete. CorLib may have NULL binder, but I am not sure if it goes through here.
I will check on this
TODOin later changes.I also think the statics on
AssemblyBinderCommonmay be moved toAssemblyBinder, but have not decided on that yet.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.
I think some of this code will go to managed eventually, just want to clean it up a bit as-is beforehand. It seems like a good thing to do regardless.