Home
last modified time | relevance | path

Searched refs:catch_blocks_ (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.h155 std::vector<pandasm::Function::CatchBlock> catch_blocks_; variable
Dcodegen.cpp51 catch_blocks_.emplace_back(cb); in AppendCatchBlock()
112 function_->catch_blocks = catch_blocks_; in RunImpl()
/arkcompiler/runtime_core/libpandafile/
Dfile_items.cpp754 for (auto &catch_block : catch_blocks_) { in ComputeLayout()
764 leb128::UnsignedEncodingSize(catch_blocks_.size()); in CalculateSizeWithoutCatchBlocks()
771 for (auto &catch_block : catch_blocks_) { in CalculateSize()
790 if (!writer->WriteUleb128(catch_blocks_.size())) { in Write()
794 for (auto &catch_block : catch_blocks_) { in Write()
Dfile_items.h1341 : start_pc_(start_pc), length_(length), catch_blocks_(std::move(catch_blocks)) in TryBlock()
1366 std::vector<CatchBlock> catch_blocks_; variable