Lines Matching full:bytecode
101 bool RegExpExecutor::ExecuteInternal(const DynChunk &byteCode, uint32_t pcEnd) in ExecuteInternal() argument
108 uint8_t opCode = byteCode.GetU8(GetCurrentPC()); in ExecuteInternal()
119 if (!HandleOpChar(byteCode, opCode)) { in ExecuteInternal()
144 HandleOpSaveStart(byteCode, opCode); in ExecuteInternal()
147 HandleOpSaveEnd(byteCode, opCode); in ExecuteInternal()
150 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
164 HandleOpSaveReset(byteCode, opCode); in ExecuteInternal()
169 HandleOpMatch(byteCode, opCode); in ExecuteInternal()
172 HandleOpSplitFirst(byteCode, opCode); in ExecuteInternal()
182 HandleOpLoop(byteCode, opCode); in ExecuteInternal()
193 uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1); in ExecuteInternal()
209 if (!HandleOpRange32(byteCode)) { in ExecuteInternal()
215 if (!HandleOpRange(byteCode)) { in ExecuteInternal()
222 if (!HandleOpBackReference(byteCode, opCode)) { in ExecuteInternal()