Home
last modified time | relevance | path

Searched refs:tryCatchMap (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/static_core/assembler/
Dassembly-function.h53 std::unordered_map<std::string, std::vector<const CatchBlock *>> tryCatchMap; member
58 : tryCatchLabels(labels), tryCatchMap(map), tryCatchOrder(paramTryCatchOrder) in TryCatchInfo()
Dassembly-emitter.cpp1817 std::unordered_map<std::string, std::vector<const CatchBlock *>> tryCatchMap; in MakeOrderAndOffsets() local
1827 auto it = tryCatchMap.find(tryKey); in MakeOrderAndOffsets()
1828 if (it == tryCatchMap.cend()) { in MakeOrderAndOffsets()
1829 std::tie(it, std::ignore) = tryCatchMap.try_emplace(tryKey); in MakeOrderAndOffsets()
1853 return Function::TryCatchInfo {tryCatchLabels, tryCatchMap, tryCatchOrder}; in MakeOrderAndOffsets()
1869 auto kv = tcs.tryCatchMap.find(tKey); in BuildTryBlocks()
1870 ASSERT(kv != tcs.tryCatchMap.cend()); in BuildTryBlocks()
/arkcompiler/ets_frontend/merge_abc/protos/
DassemblyFunction.proto46 repeated TryCatchMap tryCatchMap = 2; field