[turbofan] Enable support for try-catch statements.
R=bmeurer@chromium.org BUG=v8:4131 LOG=N Review URL: https://codereview.chromium.org/1177743002 Cr-Commit-Position: refs/heads/master@{#28935}
This commit is contained in:
parent
af83ab69b9
commit
84f208949b
@ -423,7 +423,7 @@ DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL,
|
||||
DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan")
|
||||
DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan")
|
||||
DEFINE_BOOL(turbo_osr, true, "enable OSR in TurboFan")
|
||||
DEFINE_BOOL(turbo_try_catch, false, "enable try-catch support in TurboFan")
|
||||
DEFINE_BOOL(turbo_try_catch, true, "enable try-catch support in TurboFan")
|
||||
DEFINE_BOOL(turbo_try_finally, false, "enable try-finally support in TurboFan")
|
||||
DEFINE_BOOL(turbo_stress_loop_peeling, false,
|
||||
"stress loop peeling optimization")
|
||||
|
@ -62,6 +62,11 @@
|
||||
# from the deoptimizer to do that.
|
||||
'arguments-indirect': [PASS, NO_VARIANTS],
|
||||
|
||||
# TODO(mstarzinger): The implicit JSToNumber and JSToString nodes inserted by
|
||||
# JSTypedLowering are not properly connected to a surrounding exceptional
|
||||
# continuation yet, hence exception are thrown out of the function body.
|
||||
'regress/regress-1327557': [PASS, NO_VARIANTS],
|
||||
|
||||
# TODO(verwaest): Some tests are over-restrictive about object layout.
|
||||
'array-constructor-feedback': [PASS, NO_VARIANTS],
|
||||
'array-feedback': [PASS, NO_VARIANTS],
|
||||
|
@ -63,6 +63,7 @@
|
||||
'ecma_3/Statements/regress-74474-002': [PASS, NO_VARIANTS],
|
||||
'ecma_3/Statements/regress-74474-003': [PASS, NO_VARIANTS],
|
||||
'js1_5/Regress/regress-111557': [PASS, NO_VARIANTS],
|
||||
'js1_5/Regress/regress-155081': [PASS, NO_VARIANTS],
|
||||
'js1_5/Regress/regress-155081-2': [PASS, NO_VARIANTS],
|
||||
'js1_5/Regress/regress-451322': [PASS, NO_VARIANTS],
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user