Ignore:
Timestamp:
Sep 26, 2016, 4:11:53 PM (9 years ago)
Author:
[email protected]
Message:

Exception unwinding code should use a CatchScope instead of a ThrowScope.
https://bugs.webkit.org/show_bug.cgi?id=162583

Reviewed by Geoffrey Garen.

This is because the exception unwinding code does not throw an exception.
It only inspects the thrown exception and passes it to the appropriate handler.

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::unwind):

  • jit/JITExceptions.cpp:

(JSC::genericUnwind):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r206400 r206401  
     12016-09-26  Mark Lam  <[email protected]>
     2
     3        Exception unwinding code should use a CatchScope instead of a ThrowScope.
     4        https://bugs.webkit.org/show_bug.cgi?id=162583
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        This is because the exception unwinding code does not throw an exception.
     9        It only inspects the thrown exception and passes it to the appropriate handler.
     10
     11        * interpreter/Interpreter.cpp:
     12        (JSC::Interpreter::unwind):
     13        * jit/JITExceptions.cpp:
     14        (JSC::genericUnwind):
     15
    1162016-09-26  Joseph Pecoraro  <[email protected]>
    217
Note: See TracChangeset for help on using the changeset viewer.