
#8435: Do not copy stack after stack overflow
------------------------------+--------------------------------------------
Reporter: ezyang | Owner: simonmar
Type: bug | Status: new
Priority: normal | Milestone:
Component: Runtime | Version: 7.7
System | Operating System: Unknown/Multiple
Keywords: | Type of failure: Runtime performance bug
Architecture: | Test Case:
Unknown/Multiple | Blocking:
Difficulty: Unknown |
Blocked By: |
Related Tickets: |
------------------------------+--------------------------------------------
I am not sure, but I was doing a close reading of `threadStackOverflow`
and noticed that after we throw a stack overflow exception, we fall
through to the code responsible for allocating a new stack and copying the
code over. An old iteration of the stack overflow code (removed in the
commit cited below) did return after throwing the exception, and I did not
see anything in the commit message suggesting the change was intentional.
It seems sound to copy the stack; it will just become dead immediately.
The relevant commit:
{{{
commit f30d527344db528618f64a25250a3be557d9f287
Author: Simon Marlow