-
Notifications
You must be signed in to change notification settings - Fork 4.9k
remove the switch to fallback to old EH #114018
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
Conversation
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.
Copilot reviewed 1 out of 18 changed files in this pull request and generated no comments.
Files not reviewed (17)
- src/coreclr/debug/daccess/dacdbiimplstackwalk.cpp: Language not supported
- src/coreclr/debug/ee/debugger.cpp: Language not supported
- src/coreclr/inc/clrconfigvalues.h: Language not supported
- src/coreclr/inc/dacvars.h: Language not supported
- src/coreclr/vm/clrex.cpp: Language not supported
- src/coreclr/vm/debugdebugger.cpp: Language not supported
- src/coreclr/vm/excep.cpp: Language not supported
- src/coreclr/vm/excep.h: Language not supported
- src/coreclr/vm/fcall.cpp: Language not supported
- src/coreclr/vm/fcall.h: Language not supported
- src/coreclr/vm/jithelpers.cpp: Language not supported
- src/coreclr/vm/prestub.cpp: Language not supported
- src/coreclr/vm/proftoeeinterfaceimpl.cpp: Language not supported
- src/coreclr/vm/stackwalk.cpp: Language not supported
- src/coreclr/vm/threadsuspend.cpp: Language not supported
- src/coreclr/vm/vars.cpp: Language not supported
- src/coreclr/vm/vars.hpp: Language not supported
Tagging subscribers to this area: @mangod9 |
{ | ||
HandleManagedFault(pExceptionInfo->ExceptionRecord, pExceptionInfo->ContextRecord); | ||
} | ||
HandleManagedFault(pExceptionInfo->ExceptionRecord, pExceptionInfo->ContextRecord); |
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.
This one is not just removing checks, like in other places.
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.
Can you please elaborate? HandleManagedFaultNew
is now renamed HandleManagedFault
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.
LGTM, thank you!
/ba-g failures are dotnet/dnceng#5279 |
* remove the switch to fallback to old EH * more cleanup * fix build break after merge. * CR feedback
There's a lot more that can be cleaned up. At first look |
Initial PR to remove the switch to fallback to Legacy EH except for x86.
There is more cleanup that can be done, but that would be done as a separate PR.