HomeSort by relevance Sort by last modified time
    Searched refs:HandlerTable (Results 1 - 20 of 20) sorted by null

  /external/v8/src/interpreter/
handler-table-builder.h 17 class HandlerTable;
29 Handle<HandlerTable> ToHandlerTable(Isolate* isolate);
37 // the resulting {HandlerTable} class when copied into the heap.
41 void SetPrediction(int handler_id, HandlerTable::CatchPrediction prediction);
51 HandlerTable::CatchPrediction catch_prediction_;
handler-table-builder.cc 18 Handle<HandlerTable> HandlerTableBuilder::ToHandlerTable(Isolate* isolate) {
20 Handle<HandlerTable> table =
21 Handle<HandlerTable>::cast(isolate->factory()->NewFixedArray(
22 HandlerTable::LengthForRange(handler_table_size), TENURED));
25 HandlerTable::CatchPrediction pred = entry.catch_prediction_;
37 Entry entry = {0, 0, 0, Register(), HandlerTable::UNCAUGHT};
61 int handler_id, HandlerTable::CatchPrediction prediction) {
control-flow-builders.h 148 HandlerTable::CatchPrediction catch_prediction)
159 HandlerTable::CatchPrediction catch_prediction_;
169 HandlerTable::CatchPrediction catch_prediction)
184 HandlerTable::CatchPrediction catch_prediction_;
bytecode-array-builder.h 357 HandlerTable::CatchPrediction will_catch);
bytecode-array-builder.cc 983 int handler_id, HandlerTable::CatchPrediction catch_prediction) {
    [all...]
  /external/v8/src/compiler/
bytecode-graph-builder.h 251 const Handle<HandlerTable>& exception_handler_table() const {
291 Handle<HandlerTable> exception_handler_table_;
bytecode-analysis.cc 203 HandlerTable* table = HandlerTable::cast(bytecode_array->handler_table());
code-generator.cc 237 Handle<HandlerTable> table =
238 Handle<HandlerTable>::cast(isolate()->factory()->NewFixedArray(
239 HandlerTable::LengthForReturn(static_cast<int>(handlers_.size())),
    [all...]
bytecode-graph-builder.cc 474 handle(HandlerTable::cast(bytecode_array()->handler_table()))),
    [all...]
  /external/v8/src/ast/
ast-numbering.cc 28 catch_prediction_(HandlerTable::UNCAUGHT) {
103 HandlerTable::CatchPrediction catch_prediction_;
327 catch_prediction_ == HandlerTable::ASYNC_AWAIT) {
368 const HandlerTable::CatchPrediction old_prediction = catch_prediction_;
371 HandlerTable::CatchPrediction catch_prediction = node->catch_prediction();
372 if (catch_prediction != HandlerTable::UNCAUGHT) {
prettyprinter.cc 877 case HandlerTable::UNCAUGHT:
880 case HandlerTable::CAUGHT:
883 case HandlerTable::DESUGARING:
886 case HandlerTable::ASYNC_AWAIT:
889 case HandlerTable::PROMISE:
    [all...]
ast.h 1081 HandlerTable::CatchPrediction catch_prediction() const {
1084 void set_catch_prediction(HandlerTable::CatchPrediction prediction) {
1091 catch_prediction_(HandlerTable::UNCAUGHT),
1094 HandlerTable::CatchPrediction catch_prediction_;
    [all...]
  /external/v8/src/
isolate.cc     [all...]
frames.cc     [all...]
frames.h     [all...]
objects-inl.h 636 CAST_ACCESSOR(HandlerTable)
    [all...]
deoptimizer.cc 632 HandlerTable* table =
633 HandlerTable::cast(non_optimized_code->handler_table());
643 HandlerTable* table = HandlerTable::cast(bytecode->handler_table());
    [all...]
objects.h     [all...]
objects.cc     [all...]
  /external/v8/src/debug/
debug.cc     [all...]

Completed in 425 milliseconds