Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_opcode.h167 class PopOpCode : public RegExpOpCode {
169 PopOpCode() : RegExpOpCode(OP_POP, RegExpOpCode::OP_SIZE_ONE) {} in PopOpCode() function
171 ~PopOpCode() override = default;
172 NO_COPY_SEMANTIC(PopOpCode);
173 NO_MOVE_SEMANTIC(PopOpCode);
Dregexp_opcode.cpp37 static PopOpCode g_popOpcode = PopOpCode(); // NOLINTNEXTLINE(fuchsia-statically…
293 uint32_t PopOpCode::EmitOpCode(DynChunk *buf) const in EmitOpCode()
299 uint32_t PopOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t of… in DumpOpCode()
Dregexp_parser.cpp788 PopOpCode popOp; in ParseQuantifier()