Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dcontrol-flow-builders.h145 HandlerTable::CatchPrediction catch_prediction) in TryCatchBuilder() argument
148 catch_prediction_(catch_prediction) {} in TryCatchBuilder()
166 HandlerTable::CatchPrediction catch_prediction) in TryFinallyBuilder() argument
169 catch_prediction_(catch_prediction), in TryFinallyBuilder()
Dbytecode-array-builder.cc818 int handler_id, HandlerTable::CatchPrediction catch_prediction) { in MarkHandler() argument
822 handler_table_builder()->SetPrediction(handler_id, catch_prediction); in MarkHandler()
Dbytecode-generator.cc1280 TryCatchBuilder try_control_builder(builder(), stmt->catch_prediction()); in VisitTryCatchStatement()
1315 TryFinallyBuilder try_control_builder(builder(), stmt->catch_prediction()); in VisitTryFinallyStatement()
/external/v8/src/ast/
Dast-numbering.cc321 HandlerTable::CatchPrediction catch_prediction = node->catch_prediction(); in VisitTryCatchStatement() local
322 if (catch_prediction != HandlerTable::UNCAUGHT) { in VisitTryCatchStatement()
323 catch_prediction_ = catch_prediction; in VisitTryCatchStatement()
Dast.h1100 HandlerTable::CatchPrediction catch_prediction() const { in catch_prediction() function
1146 HandlerTable::CatchPrediction catch_prediction, int pos) in TryCatchStatement() argument
1151 catch_prediction_ = catch_prediction; in TryCatchStatement()
Dprettyprinter.cc870 switch (node->catch_prediction()) { in PrintTryStatement()
/external/v8/src/full-codegen/
Dfull-codegen.cc187 handler_table_[i].catch_prediction); in PopulateHandlerTable()
1403 EnterTryBlock(handler_index, &handler_entry, stmt->catch_prediction()); in VisitTryCatchStatement()
1452 EnterTryBlock(handler_index, &handler_entry, stmt->catch_prediction()); in VisitTryFinallyStatement()
1633 HandlerTable::CatchPrediction catch_prediction) { in EnterTryBlock() argument
1638 entry->catch_prediction = catch_prediction; in EnterTryBlock()
Dfull-codegen.h653 HandlerTable::CatchPrediction catch_prediction);
740 HandlerTable::CatchPrediction catch_prediction; member