Home
last modified time | relevance | path

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

/external/v8/src/runtime/
Druntime-generator.cc107 HandlerTable::CatchPrediction catch_prediction = HandlerTable::ASYNC_AWAIT; in RUNTIME_FUNCTION() local
108 handler_table.LookupRange(pc, nullptr, &catch_prediction); in RUNTIME_FUNCTION()
109 return isolate->heap()->ToBoolean(catch_prediction == HandlerTable::CAUGHT); in RUNTIME_FUNCTION()
/external/v8/src/interpreter/
Dcontrol-flow-builders.h182 HandlerTable::CatchPrediction catch_prediction) in TryCatchBuilder() argument
185 catch_prediction_(catch_prediction), in TryCatchBuilder()
212 HandlerTable::CatchPrediction catch_prediction) in TryFinallyBuilder() argument
215 catch_prediction_(catch_prediction), in TryFinallyBuilder()
Dbytecode-generator.h338 inline HandlerTable::CatchPrediction catch_prediction() const { in catch_prediction() function
Dbytecode-generator.cc1685 HandlerTable::CatchPrediction outer_catch_prediction = catch_prediction(); in VisitTryCatchStatement()
1689 catch_prediction()); in VisitTryCatchStatement()
1734 stmt, catch_prediction()); in VisitTryFinallyStatement()
3054 .LoadBoolean(catch_prediction() != HandlerTable::ASYNC_AWAIT) in VisitYield()
3316 .LoadBoolean(catch_prediction() != HandlerTable::ASYNC_AWAIT) in VisitYieldStar()
3364 DCHECK(catch_prediction() != HandlerTable::UNCAUGHT); in BuildAwait()
3374 catch_prediction() == HandlerTable::ASYNC_AWAIT in BuildAwait()
3383 catch_prediction() == HandlerTable::ASYNC_AWAIT in BuildAwait()
Dbytecode-array-builder.cc1317 int handler_id, HandlerTable::CatchPrediction catch_prediction) { in MarkHandler() argument
1321 handler_table_builder()->SetPrediction(handler_id, catch_prediction); in MarkHandler()
/external/v8/src/
Disolate.cc2150 HandlerTable::CatchPrediction catch_prediction; in Throw() local
2152 catch_prediction = PredictException(JavaScriptFrame::cast(frame)); in Throw()
2159 catch_prediction = code->GetBuiltinCatchPrediction(); in Throw()
2164 switch (catch_prediction) { in Throw()
/external/v8/src/ast/
Dast.h953 HandlerTable::CatchPrediction catch_prediction, int pos) in TryCatchStatement() argument
957 catch_prediction_(catch_prediction) {} in TryCatchStatement()