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.h261 ASSERT(bcIndex < byteCodeToJSGates_.size()); in GetGateByBcIndex()
262 if (byteCodeToJSGates_[bcIndex].size() > 0) { in GetGateByBcIndex()
263 ASSERT(byteCodeToJSGates_[bcIndex].size() == 1); in GetGateByBcIndex()
264 return byteCodeToJSGates_[bcIndex].at(0); in GetGateByBcIndex()
271 ASSERT(bcIndex < byteCodeToJSGates_.size()); in GetGatesByBcIndex()
272 return byteCodeToJSGates_[bcIndex]; in GetGatesByBcIndex()
301 ASSERT(bcIndex < byteCodeToJSGates_.size()); in UpdateBcIndexGate()
302 byteCodeToJSGates_[bcIndex].emplace_back(gate); in UpdateBcIndexGate()
698 std::vector<std::vector<GateRef>> byteCodeToJSGates_; variable
Dbytecode_circuit_builder.cpp49 byteCodeToJSGates_.resize(size, std::vector<GateRef>(0)); in BuildRegionInfo()
876 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewJSGate()
931 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewJump()
957 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewReturn()
966 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewReturn()
988 byteCodeToJSGates_[iterator.Index()].emplace_back(gate); in NewByteCode()