Home
last modified time | relevance | path

Searched refs:catch_prediction (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/runtime/
Druntime-generator.cc146 HandlerTable::CatchPrediction catch_prediction = HandlerTable::ASYNC_AWAIT; in RUNTIME_FUNCTION() local
147 handler_table.LookupRange(pc, nullptr, &catch_prediction); in RUNTIME_FUNCTION()
148 return isolate->heap()->ToBoolean(catch_prediction == HandlerTable::CAUGHT); in RUNTIME_FUNCTION()
/external/v8/src/interpreter/
Dcontrol-flow-builders.h188 HandlerTable::CatchPrediction catch_prediction) in TryCatchBuilder() argument
191 catch_prediction_(catch_prediction), in TryCatchBuilder()
216 HandlerTable::CatchPrediction catch_prediction) in TryFinallyBuilder() argument
219 catch_prediction_(catch_prediction), in TryFinallyBuilder()
Dbytecode-generator.h382 HandlerTable::CatchPrediction catch_prediction,
387 HandlerTable::CatchPrediction catch_prediction,
486 inline HandlerTable::CatchPrediction catch_prediction() const { in catch_prediction() function
Dbytecode-generator.cc1773 HandlerTable::CatchPrediction catch_prediction, in BuildTryCatch() argument
1778 stmt_for_coverage, catch_prediction); in BuildTryCatch()
1803 HandlerTable::CatchPrediction catch_prediction, in BuildTryFinally() argument
1810 stmt_for_coverage, catch_prediction); in BuildTryFinally()
2096 HandlerTable::CatchPrediction outer_catch_prediction = catch_prediction(); in VisitTryCatchStatement()
2128 catch_prediction(), stmt); in VisitTryCatchStatement()
2137 catch_prediction(), stmt); in VisitTryFinallyStatement()
4217 .LoadBoolean(catch_prediction() != HandlerTable::ASYNC_AWAIT) in VisitYield()
4484 .LoadBoolean(catch_prediction() != HandlerTable::ASYNC_AWAIT) in VisitYieldStar()
4531 DCHECK(catch_prediction() != HandlerTable::UNCAUGHT || in BuildAwait()
[all …]
Dbytecode-array-builder.cc1131 int handler_id, HandlerTable::CatchPrediction catch_prediction) { in MarkHandler() argument
1137 handler_table_builder()->SetPrediction(handler_id, catch_prediction); in MarkHandler()
/external/v8/src/execution/
Disolate.cc2524 HandlerTable::CatchPrediction catch_prediction; in ThrowInternal() local
2526 catch_prediction = PredictException(JavaScriptFrame::cast(frame)); in ThrowInternal()
2533 catch_prediction = code.GetBuiltinCatchPrediction(); in ThrowInternal()
2538 switch (catch_prediction) { in ThrowInternal()
/external/v8/src/ast/
Dast.h834 HandlerTable::CatchPrediction catch_prediction, int pos) in TryCatchStatement() argument
838 catch_prediction_(catch_prediction) {} in TryCatchStatement()