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.h259 ASSERT(bcIndex < byteCodeToJSGates_.size()); in GetGateByBcIndex()
260 if (byteCodeToJSGates_[bcIndex].size() > 0) { in GetGateByBcIndex()
261 ASSERT(byteCodeToJSGates_[bcIndex].size() == 1); in GetGateByBcIndex()
262 return byteCodeToJSGates_[bcIndex].at(0); in GetGateByBcIndex()
269 ASSERT(bcIndex < byteCodeToJSGates_.size()); in GetGatesByBcIndex()
270 return byteCodeToJSGates_[bcIndex]; in GetGatesByBcIndex()
294 ASSERT(bcIndex < byteCodeToJSGates_.size()); in UpdateBcIndexGate()
295 byteCodeToJSGates_[bcIndex].emplace_back(gate); in UpdateBcIndexGate()
580 std::vector<std::vector<GateRef>> byteCodeToJSGates_; variable
Dbytecode_circuit_builder.cpp43 byteCodeToJSGates_.resize(size, std::vector<GateRef>(0)); in BuildRegionInfo()
575 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewJSGate()
628 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewJump()
650 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewReturn()
659 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewReturn()
681 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewByteCode()