Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_opcode.h157 class PushOpCode : public RegExpOpCode {
159 PushOpCode() : RegExpOpCode(OP_PUSH, RegExpOpCode::OP_SIZE_ONE) {} in PushOpCode() function
161 ~PushOpCode() override = default;
162 NO_COPY_SEMANTIC(PushOpCode);
163 NO_MOVE_SEMANTIC(PushOpCode);
Dregexp_opcode.cpp36 static PushOpCode g_pushOpcode = PushOpCode(); // NOLINTNEXTLINE(fuchsia-statically…
279 uint32_t PushOpCode::InsertOpCode(DynChunk *buf, uint32_t offset) const in InsertOpCode()
286 uint32_t PushOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t o… in DumpOpCode()
Dregexp_parser.cpp755 PushOpCode pushOp; in ParseQuantifier()