Home
last modified time | relevance | path

Searched refs:try_block (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/ast/
Dsource-range-ast-visitor.cc44 MaybeRemoveContinuationRange(stmt->try_block()); in VisitTryCatchStatement()
51 MaybeRemoveContinuationRange(stmt->try_block()); in VisitTryFinallyStatement()
123 FindLastNonSyntheticStatement(try_catch_stmt->try_block()->statements()); in MaybeRemoveContinuationRangeOfAsyncReturn()
Dast.h757 Block* try_block() const { return try_block_; } in try_block() function
761 TryStatement(Block* try_block, int pos, NodeType type) in TryStatement() argument
762 : Statement(pos, type), try_block_(try_block) {} in TryStatement()
840 TryCatchStatement(Block* try_block, Scope* scope, Block* catch_block, in TryCatchStatement() argument
842 : TryStatement(try_block, pos, kTryCatchStatement), in TryCatchStatement()
862 TryFinallyStatement(Block* try_block, Block* finally_block, int pos) in TryFinallyStatement() argument
863 : TryStatement(try_block, pos, kTryFinallyStatement), in TryFinallyStatement()
2923 TryCatchStatement* NewTryCatchStatement(Block* try_block, Scope* scope, in NewTryCatchStatement() argument
2925 return zone_->New<TryCatchStatement>(try_block, scope, catch_block, in NewTryCatchStatement()
2929 TryCatchStatement* NewTryCatchStatementForReThrow(Block* try_block, in NewTryCatchStatementForReThrow() argument
[all …]
Dprettyprinter.cc207 Find(node->try_block()); in VisitTryCatchStatement()
213 Find(node->try_block()); in VisitTryFinallyStatement()
1030 PrintIndentedVisit("TRY", node->try_block()); in VisitTryCatchStatement()
1061 PrintIndentedVisit("TRY", node->try_block()); in VisitTryFinallyStatement()
Dast-traversal-visitor.h262 RECURSE(Visit(stmt->try_block())); in VisitTryCatchStatement()
270 RECURSE(Visit(stmt->try_block())); in VisitTryFinallyStatement()
/third_party/node/deps/v8/src/parsing/
Drewriter.cc229 Visit(node->try_block()); in VisitTryCatchStatement()
288 Visit(node->try_block()); in VisitTryFinallyStatement()
Dparser.cc2036 Statement* Parser::RewriteTryStatement(Block* try_block, Block* catch_block, in RewriteTryStatement() argument
2049 statement = factory()->NewTryCatchStatement(try_block, catch_info.scope, in RewriteTryStatement()
2053 try_block = factory()->NewBlock(1, false); in RewriteTryStatement()
2054 try_block->statements()->Add(statement, zone()); in RewriteTryStatement()
2061 try_block, catch_info.scope, catch_block, pos); in RewriteTryStatement()
2067 factory()->NewTryFinallyStatement(try_block, finally_block, pos); in RewriteTryStatement()
2106 Block* try_block; in ParseAndRewriteAsyncGeneratorFunctionBody() local
2121 try_block = factory()->NewBlock(false, statements); in ParseAndRewriteAsyncGeneratorFunctionBody()
2143 try_block, catch_scope, catch_block, kNoSourcePosition); in ParseAndRewriteAsyncGeneratorFunctionBody()
2145 try_block = factory()->NewBlock(false, statements); in ParseAndRewriteAsyncGeneratorFunctionBody()
[all …]
Dparser.h314 Statement* RewriteTryStatement(Block* try_block, Block* catch_block,
Dpreparser.h1120 PreParserStatement try_block, PreParserStatement catch_block,
Dparser-base.h5880 BlockT try_block = ParseBlock(nullptr); in ParseTryStatement() local
5985 return impl()->RewriteTryStatement(try_block, catch_block, catch_range, in ParseTryStatement()
/third_party/node/deps/v8/src/wasm/
Dfunction-body-decoder-impl.h2623 Control* try_block = PushControl(kControlTry, 0, args.length());
2624 SetBlockType(try_block, imm, args.begin());
2625 try_block->previous_catch = current_catch_;
2627 CALL_INTERFACE_IF_OK_AND_REACHABLE(Try, try_block);
2629 PushMergeValues(try_block, &try_block->start_merge);
/third_party/node/deps/v8/src/torque/
Dtorque-parser.cc1767 auto try_block = child_results->NextAs<Statement*>(); in MakeTryLabelExpression() local
1768 CheckNotDeferredStatement(try_block); in MakeTryLabelExpression()
1769 Statement* result = try_block; in MakeTryLabelExpression()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DDwarf.def170 HANDLE_DW_TAG(0x0032, try_block, 2, DWARF, DW_KIND_NONE)
/third_party/node/deps/v8/src/interpreter/
Dbytecode-generator.cc2471 Visit(stmt->try_block()); in VisitTryCatchStatement()
2503 [&]() { Visit(stmt->try_block()); }, in VisitTryFinallyStatement()
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-compiler.cc1307 void Rethrow(FullDecoder* decoder, Control* try_block) { in Rethrow() argument
1308 int index = try_block->try_info->catch_state.stack_height() - 1; in Rethrow()