Home
last modified time | relevance | path

Searched refs:byteCodeToJSGates_ (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_circuit_builder.h301 ASSERT(bcIndex < byteCodeToJSGates_.size()); in GetGateByBcIndex()
302 if (byteCodeToJSGates_[bcIndex].size() > 0) { in GetGateByBcIndex()
303 ASSERT(byteCodeToJSGates_[bcIndex].size() == 1); in GetGateByBcIndex()
304 return byteCodeToJSGates_[bcIndex].at(0); in GetGateByBcIndex()
311 ASSERT(bcIndex < byteCodeToJSGates_.size()); in GetGatesByBcIndex()
312 return byteCodeToJSGates_[bcIndex]; in GetGatesByBcIndex()
328 ASSERT(bcIndex < byteCodeToJSGates_.size()); in UpdateBcIndexGate()
329 byteCodeToJSGates_[bcIndex].emplace_back(gate); in UpdateBcIndexGate()
595 std::vector<std::vector<GateRef>> byteCodeToJSGates_; variable
Dbytecode_circuit_builder.cpp43 byteCodeToJSGates_.resize(size, std::vector<GateRef>(0)); in BuildRegionInfo()
897 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewJSGate()
990 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewJump()
1009 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewReturn()
1018 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewReturn()
1030 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewByteCode()
1294 ans = byteCodeToJSGates_.at(iterator.Index()).at(0); in ResolveDef()
1308 auto resumeGate = byteCodeToJSGates_.at(iterator.Index()).at(0); in ResolveDef()
1319 GateRef suspendGate = byteCodeToJSGates_.at(iterator.Index() - 2).at(0); // 2: prev bc in ResolveDef()