* Copyright (c) 2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ECMASCRIPT_REGEXP_REGEXP_EXECUTOR_H
#define ECMASCRIPT_REGEXP_REGEXP_EXECUTOR_H
#include "ecmascript/builtins/builtins_regexp.h"
#include "ecmascript/global_env.h"
#include "ecmascript/js_tagged_value-inl.h"
#include "ecmascript/js_handle.h"
#include "ecmascript/mem/regexp_cached_chunk.h"
#include "ecmascript/regexp/regexp_parser.h"
namespace panda::ecmascript {
class RegExpExecutor {
public:
struct CaptureState {
const uint8_t *captureStart;
const uint8_t *captureEnd;
};
enum StateType : uint8_t {
STATE_SPLIT = 0,
STATE_NEGATIVE_MATCH_AHEAD,
STATE_MATCH_AHEAD,
STATE_SAVE,
STATE_PUSH,
STATE_POP,
STATE_SET,
STATE_INVALID,
};
struct RegExpState {
StateType type_ = STATE_SPLIT;
uint32_t currentPc_ = 0;
const uint8_t *currentPtr_ = nullptr;
};
explicit RegExpExecutor(RegExpCachedChunk *chunk) : chunk_(chunk)
{
ASSERT(chunk_ != nullptr);
};
~RegExpExecutor() = default;
NO_COPY_SEMANTIC(RegExpExecutor);
NO_MOVE_SEMANTIC(RegExpExecutor);
bool Execute(const uint8_t *input, uint32_t lastIndex, uint32_t length, uint8_t *buf,
bool isWideChar = false, uint32_t extraFlags = 0);
bool ExecuteInternal(const DynChunk &byteCode, uint32_t pcEnd);
inline bool HandleFirstSplit()
{
if (GetCurrentPC() == RegExpParser::OP_START_OFFSET && stateStackLen_ == 0 &&
(flags_ & RegExpParser::FLAG_STICKY) == 0) {
if (IsEOF()) {
if (MatchFailed()) {
return false;
}
} else if (prefilter_ && !isWideChar_) {
++currentPtr_;
currentPtr_ = (const uint8_t *)memchr(currentPtr_, prefilter_, inputEnd_ - currentPtr_);
if (currentPtr_ == nullptr) {
currentPtr_ = inputEnd_;
}
PushRegExpState(STATE_SPLIT, RegExpParser::OP_START_OFFSET);
} else {
AdvanceCurrentPtr();
PushRegExpState(STATE_SPLIT, RegExpParser::OP_START_OFFSET);
}
}
return true;
}
inline bool HandleOpAll(uint8_t opCode)
{
if (IsEOF()) {
return !MatchFailed();
}
uint32_t currentChar = GetCurrentChar();
if ((opCode == RegExpOpCode::OP_DOTS) && IsTerminator(currentChar)) {
return !MatchFailed();
}
Advance(opCode);
return true;
}
inline bool HandleOpChar(const DynChunk &byteCode, uint8_t opCode)
{
uint32_t expectedChar = 0;
if (opCode == RegExpOpCode::OP_CHAR32) {
expectedChar = byteCode.GetU32(GetCurrentPC() + 1);
} else {
expectedChar = byteCode.GetU16(GetCurrentPC() + 1);
}
if (IsEOF()) {
return !MatchFailed();
}
uint32_t currentChar = GetCurrentChar();
if (IsIgnoreCase()) {
currentChar = static_cast<uint32_t>(RegExpParser::Canonicalize(currentChar, IsUtf16()));
}
if (currentChar == expectedChar) {
Advance(opCode);
} else {
if (MatchFailed()) {
return false;
}
}
return true;
}
inline bool HandleOpWordBoundary(uint8_t opCode)
{
bool preIsWord = false;
if (GetCurrentPtr() != input_) {
preIsWord = IsWordChar(PeekPrevChar(currentPtr_, input_));
}
bool currentIsWord = !IsEOF() && IsWordChar(PeekChar(currentPtr_, inputEnd_));
if (((opCode == RegExpOpCode::OP_WORD_BOUNDARY) &&
((!preIsWord && currentIsWord) || (preIsWord && !currentIsWord))) ||
((opCode == RegExpOpCode::OP_NOT_WORD_BOUNDARY) &&
((preIsWord && currentIsWord) || (!preIsWord && !currentIsWord)))) {
Advance(opCode);
} else {
if (MatchFailed()) {
return false;
}
}
return true;
}
inline bool HandleOpLineStart(uint8_t opCode)
{
if (GetCurrentPtr() == input_) {
Advance(opCode);
return true;
} else {
uint32_t prevChar = PeekPrevChar(currentPtr_, input_);
if ((flags_ & RegExpParser::FLAG_MULTILINE) != 0 && (prevChar == '\n' || prevChar == '\r')) {
Advance(opCode);
return true;
} else if (MatchFailed()) {
return false;
}
}
return true;
}
inline bool HandleOpLineEnd(uint8_t opCode)
{
if (IsEOF()) {
Advance(opCode);
return true;
} else {
uint32_t ch = PeekChar(currentPtr_, input_);
if ((flags_ & RegExpParser::FLAG_MULTILINE) != 0 && (ch == '\n' || ch == '\r')) {
Advance(opCode);
return true;
} else if (MatchFailed()) {
return false;
}
}
return true;
}
inline void HandleOpSaveStart(const DynChunk &byteCode, uint8_t opCode)
{
uint32_t captureIndex = byteCode.GetU8(GetCurrentPC() + 1);
ASSERT(captureIndex < nCapture_);
CaptureState *captureState = &captureResultList_[captureIndex];
PushRegExpState(STATE_SAVE, captureIndex * 2, reinterpret_cast<uintptr_t>(captureState->captureStart));
captureState->captureStart = GetCurrentPtr();
Advance(opCode);
}
inline void HandleOpSaveEnd(const DynChunk &byteCode, uint8_t opCode)
{
uint32_t captureIndex = byteCode.GetU8(GetCurrentPC() + 1);
ASSERT(captureIndex < nCapture_);
CaptureState *captureState = &captureResultList_[captureIndex];
PushRegExpState(STATE_SAVE, captureIndex * 2 + 1, reinterpret_cast<uintptr_t>(captureState->captureEnd));
captureState->captureEnd = GetCurrentPtr();
Advance(opCode);
}
inline void HandleOpSaveReset(const DynChunk &byteCode, uint8_t opCode)
{
uint32_t catpureStartIndex = byteCode.GetU8(GetCurrentPC() + SAVE_RESET_START);
uint32_t catpureEndIndex = byteCode.GetU8(GetCurrentPC() + SAVE_RESET_END);
for (uint32_t i = catpureStartIndex; i <= catpureEndIndex; i++) {
CaptureState *captureState =
&captureResultList_[i];
PushRegExpState(STATE_SAVE, i * 2, reinterpret_cast<uintptr_t>(captureState->captureStart));
PushRegExpState(STATE_SAVE, i * 2 + 1, reinterpret_cast<uintptr_t>(captureState->captureEnd));
captureState->captureStart = nullptr;
captureState->captureEnd = nullptr;
}
Advance(opCode);
}
inline void HandleOpMatch(const DynChunk &byteCode, uint8_t opCode)
{
auto type = static_cast<StateType>(opCode - RegExpOpCode::OP_SPLIT_NEXT);
ASSERT(type == STATE_SPLIT || type == STATE_MATCH_AHEAD || type == STATE_NEGATIVE_MATCH_AHEAD);
uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1);
Advance(opCode);
uint32_t splitPc = GetCurrentPC() + offset;
PushRegExpState(type, splitPc);
}
inline void HandleOpSplitFirst(const DynChunk &byteCode, uint8_t opCode)
{
uint32_t offset = byteCode.GetU32(GetCurrentPC() + 1);
Advance(opCode);
PushRegExpState(STATE_SPLIT, GetCurrentPC());
AdvanceOffset(offset);
}
inline bool HandleOpPrev(uint8_t opCode)
{
if (GetCurrentPtr() == input_) {
if (MatchFailed()) {
return false;
}
} else {
PrevPtr(¤tPtr_, input_);
Advance(opCode);
}
return true;
}
inline void HandleOpLoop(const DynChunk &byteCode, uint8_t opCode)
{
uint32_t quantifyMin = byteCode.GetU32(GetCurrentPC() + LOOP_MIN_OFFSET);
uint32_t quantifyMax = byteCode.GetU32(GetCurrentPC() + LOOP_MAX_OFFSET);
uint32_t pcOffset = byteCode.GetU32(GetCurrentPC() + LOOP_PC_OFFSET);
Advance(opCode);
uint32_t loopPcEnd = GetCurrentPC();
uint32_t loopPcStart = GetCurrentPC() + pcOffset;
bool isGreedy = opCode == RegExpOpCode::OP_LOOP_GREEDY;
uint32_t loopMax = isGreedy ? quantifyMax : quantifyMin;
uint32_t loopCount = PeekStack();
PushRegExpState(StateType::STATE_SET, 0, loopCount);
SetStackValue(++loopCount);
if (loopCount < loopMax) {
if (loopCount >= quantifyMin) {
PushRegExpState(STATE_SPLIT, loopPcEnd);
}
SetCurrentPC(loopPcStart);
} else {
if (!isGreedy && (loopCount < quantifyMax)) {
PushRegExpState(STATE_SPLIT, loopPcStart);
}
}
}
inline bool HandleOpRange32(const DynChunk &byteCode)
{
if (IsEOF()) {
return !MatchFailed();
}
uint32_t currentChar = GetCurrentChar();
if (IsIgnoreCase()) {
currentChar = static_cast<uint32_t>(RegExpParser::Canonicalize(currentChar, IsUtf16()));
}
uint16_t rangeCount = byteCode.GetU16(GetCurrentPC() + 1);
bool isFound = false;
int32_t idxMin = 0;
int32_t idxMax = static_cast<int32_t>(rangeCount) - 1;
int32_t idx = 0;
uint32_t low = 0;
uint32_t high =
byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + idxMax * RANGE32_MAX_OFFSET +
RANGE32_MAX_HALF_OFFSET);
if (currentChar <= high) {
while (idxMin <= idxMax) {
idx = (idxMin + idxMax) / RANGE32_OFFSET;
low = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) *
RANGE32_MAX_OFFSET);
high = byteCode.GetU32(GetCurrentPC() + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) *
RANGE32_MAX_OFFSET +
RANGE32_MAX_HALF_OFFSET);
if (currentChar < low) {
idxMax = idx - 1;
} else if (currentChar > high) {
idxMin = idx + 1;
} else {
isFound = true;
break;
}
}
}
if (isFound) {
AdvanceOffset(rangeCount * RANGE32_MAX_OFFSET + RANGE32_HEAD_OFFSET);
} else {
if (MatchFailed()) {
return false;
}
}
return true;
}
inline bool HandleOpRange(const DynChunk &byteCode)
{
if (IsEOF()) {
return !MatchFailed();
}
uint32_t currentChar = GetCurrentChar();
uint16_t rangeCount = byteCode.GetU16(GetCurrentPC() + 1);
bool flag = IsFoundOpRange(GetCurrentPC(), currentChar, byteCode, rangeCount);
if (IsIgnoreCase() && !flag) {
currentChar = static_cast<uint32_t>(RegExpParser::GetcurrentCharNext(currentChar));
flag = IsFoundOpRange(GetCurrentPC(), currentChar, byteCode, rangeCount);
}
if (flag) {
AdvanceOffset(rangeCount * RANGE32_MAX_HALF_OFFSET + RANGE32_HEAD_OFFSET);
} else {
if (MatchFailed()) {
return false;
}
}
return true;
}
inline bool HandleOpSparse(const DynChunk &byteCode)
{
if (IsEOF()) {
return !MatchFailed();
}
uint32_t currentChar = GetCurrentChar();
if (IsIgnoreCase()) {
currentChar = static_cast<uint32_t>(RegExpParser::Canonicalize(currentChar, IsUtf16()));
}
uint16_t sparseCount = byteCode.GetU16(GetCurrentPC() + 1);
for (uint32_t i = 0; i < sparseCount; i++) {
uint32_t sparseChar = byteCode.GetU16(GetCurrentPC() + SPARSE_HEAD_OFFSET + i * SPARSE_MAX_OFFSET);
if (currentChar == sparseChar) {
uint32_t offset = byteCode.GetU32(GetCurrentPC() + SPARSE_HEAD_OFFSET + i * SPARSE_MAX_OFFSET +
SPARSE_OFF_OFFSET);
AdvanceOffset(offset + sparseCount * SPARSE_MAX_OFFSET + SPARSE_HEAD_OFFSET);
return true;
}
}
return !MatchFailed();
}
inline bool HandleOpBackReference(const DynChunk &byteCode, uint8_t opCode)
{
uint32_t captureIndex = byteCode.GetU8(GetCurrentPC() + 1);
if (captureIndex >= nCapture_) {
return !MatchFailed();
}
const uint8_t *captureStart = captureResultList_[captureIndex].captureStart;
const uint8_t *captureEnd = captureResultList_[captureIndex].captureEnd;
if (captureStart == nullptr || captureEnd == nullptr) {
Advance(opCode);
return true;
}
bool isMatched = true;
if (opCode == RegExpOpCode::OP_BACKREFERENCE) {
const uint8_t *refCptr = captureStart;
while (refCptr < captureEnd) {
if (IsEOF()) {
isMatched = false;
break;
}
uint32_t c1 = GetChar(&refCptr, captureEnd);
uint32_t c2 = GetChar(¤tPtr_, inputEnd_);
if (IsIgnoreCase()) {
c1 = static_cast<uint32_t>(RegExpParser::Canonicalize(c1, IsUtf16()));
c2 = static_cast<uint32_t>(RegExpParser::Canonicalize(c2, IsUtf16()));
}
if (c1 != c2) {
isMatched = false;
break;
}
}
if (!isMatched) {
if (MatchFailed()) {
return false;
}
} else {
Advance(opCode);
}
} else {
const uint8_t *refCptr = captureEnd;
while (refCptr > captureStart) {
if (GetCurrentPtr() == input_) {
isMatched = false;
break;
}
uint32_t c1 = GetPrevChar(&refCptr, captureStart);
uint32_t c2 = GetPrevChar(¤tPtr_, input_);
if (IsIgnoreCase()) {
c1 = static_cast<uint32_t>(RegExpParser::Canonicalize(c1, IsUtf16()));
c2 = static_cast<uint32_t>(RegExpParser::Canonicalize(c2, IsUtf16()));
}
if (c1 != c2) {
isMatched = false;
break;
}
}
if (!isMatched) {
if (MatchFailed()) {
return false;
}
} else {
Advance(opCode);
}
}
return true;
}
inline void Advance(uint8_t opCode, uint32_t offset = 0)
{
currentPc_ += offset + static_cast<uint32_t>(RegExpOpCode::GetRegExpOpCode(opCode)->GetSize());
}
inline void AdvanceOffset(uint32_t offset)
{
currentPc_ += offset;
}
inline uint32_t GetCurrentChar()
{
return GetChar(¤tPtr_, inputEnd_);
}
inline void AdvanceCurrentPtr()
{
AdvancePtr(¤tPtr_, inputEnd_);
}
uint32_t GetChar(const uint8_t **pp, const uint8_t *end) const
{
uint32_t c = 0;
const uint8_t *cptr = *pp;
if (!isWideChar_) {
c = *cptr;
*pp += 1;
} else {
uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
c = c1;
cptr += WIDE_CHAR_SIZE;
if (U16_IS_LEAD(c) && IsUtf16() && cptr < end) {
c1 = *(reinterpret_cast<const uint16_t *>(cptr));
if (U16_IS_TRAIL(c1)) {
c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c, c1));
cptr += WIDE_CHAR_SIZE;
}
}
*pp = cptr;
}
return c;
}
uint32_t PeekChar(const uint8_t *p, const uint8_t *end) const
{
uint32_t c = 0;
const uint8_t *cptr = p;
if (!isWideChar_) {
c = *cptr;
} else {
uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
c = c1;
cptr += WIDE_CHAR_SIZE;
if (U16_IS_LEAD(c) && IsUtf16() && cptr < end) {
c1 = *(uint16_t *)cptr;
if (U16_IS_TRAIL(c1)) {
c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c, c1));
}
}
}
return c;
}
void AdvancePtr(const uint8_t **pp, const uint8_t *end) const
{
const uint8_t *cptr = *pp;
if (!isWideChar_) {
*pp += 1;
} else {
uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
cptr += WIDE_CHAR_SIZE;
if (U16_IS_LEAD(c1) && IsUtf16() && cptr < end) {
c1 = *(reinterpret_cast<const uint16_t *>(cptr));
if (U16_IS_TRAIL(c1)) {
cptr += WIDE_CHAR_SIZE;
}
}
*pp = cptr;
}
}
uint32_t PeekPrevChar(const uint8_t *p, const uint8_t *start) const
{
uint32_t c = 0;
const uint8_t *cptr = p;
if (!isWideChar_) {
c = *(cptr - 1);
} else {
cptr -= WIDE_CHAR_SIZE;
uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
c = c1;
if (U16_IS_TRAIL(c) && IsUtf16() && cptr > start) {
c1 = (reinterpret_cast<const uint16_t *>(cptr))[-1];
if (U16_IS_LEAD(c1)) {
c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c1, c));
}
}
}
return c;
}
uint32_t GetPrevChar(const uint8_t **pp, const uint8_t *start) const
{
uint32_t c = 0;
const uint8_t *cptr = *pp;
if (!isWideChar_) {
c = *(cptr - 1);
cptr -= 1;
*pp = cptr;
} else {
cptr -= WIDE_CHAR_SIZE;
uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
c = c1;
if (U16_IS_TRAIL(c) && IsUtf16() && cptr > start) {
c1 = (reinterpret_cast<const uint16_t *>(cptr))[-1];
if (U16_IS_LEAD(c1)) {
c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c1, c));
cptr -= WIDE_CHAR_SIZE;
}
}
*pp = cptr;
}
return c;
}
void PrevPtr(const uint8_t **pp, const uint8_t *start) const
{
const uint8_t *cptr = *pp;
if (!isWideChar_) {
cptr -= 1;
*pp = cptr;
} else {
cptr -= WIDE_CHAR_SIZE;
uint16_t c1 = *(const uint16_t *)cptr;
if (U16_IS_TRAIL(c1) && IsUtf16() && cptr > start) {
c1 = (reinterpret_cast<const uint16_t *>(cptr))[-1];
if (U16_IS_LEAD(c1)) {
cptr -= WIDE_CHAR_SIZE;
}
}
*pp = cptr;
}
}
bool MatchFailed(bool isMatched = false);
void SetCurrentPC(uint32_t pc)
{
currentPc_ = pc;
}
void SetCurrentPtr(const uint8_t *ptr)
{
currentPtr_ = ptr;
}
bool IsEOF() const
{
return currentPtr_ >= inputEnd_;
}
bool IsFoundOpRange(const uint32_t currentPc, const uint32_t nowChar,
const DynChunk &byteCode, const uint16_t rangeCount)
{
bool isFound = false;
int32_t idxMin = 0;
int32_t idxMax = static_cast<int32_t>(rangeCount - 1);
int32_t idx = 0;
uint32_t low = 0;
uint32_t high = byteCode.GetU16(currentPc + RANGE32_HEAD_OFFSET +
static_cast<size_t>(idxMax) * RANGE32_MAX_HALF_OFFSET + RANGE32_OFFSET);
if (nowChar <= high) {
while (idxMin <= idxMax) {
idx = (idxMin + idxMax) / RANGE32_OFFSET;
low = byteCode.GetU16(currentPc + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) *
RANGE32_MAX_HALF_OFFSET);
high = byteCode.GetU16(currentPc + RANGE32_HEAD_OFFSET + static_cast<uint32_t>(idx) *
RANGE32_MAX_HALF_OFFSET + RANGE32_OFFSET);
if (nowChar < low) {
idxMax = idx - 1;
} else if (nowChar > high) {
idxMin = idx + 1;
} else {
isFound = true;
break;
}
}
}
return isFound;
}
uint32_t GetCurrentPC() const
{
return currentPc_;
}
void PushStack(uintptr_t val)
{
ASSERT(currentStack_ < nStack_);
stack_[currentStack_++] = val;
}
void SetStackValue(uintptr_t val) const
{
ASSERT(currentStack_ >= 1);
stack_[currentStack_ - 1] = val;
}
uintptr_t PopStack()
{
ASSERT(currentStack_ >= 1);
return stack_[--currentStack_];
}
uintptr_t PeekStack() const
{
ASSERT(currentStack_ >= 1);
return stack_[currentStack_ - 1];
}
const uint8_t *GetCurrentPtr() const
{
return currentPtr_;
}
CaptureState *GetCaptureResultList() const
{
return captureResultList_;
}
void DumpResult(std::ostream &out) const;
void GetResult(JSThread *thread);
void PushRegExpState(StateType type, uint32_t pc);
void PushRegExpState(StateType type, uint32_t pc, uintptr_t ptr);
StateType PopRegExpState(bool copyCapture = true);
void DropRegExpState()
{
stateStackLen_--;
}
RegExpState *PeekRegExpState() const
{
ASSERT(stateStackLen_ >= 1);
return reinterpret_cast<RegExpState *>(
stateStack_ +
(stateStackLen_ - 1) * sizeof(RegExpState));
}
void ReAllocStack(uint32_t stackLen);
inline bool IsWordChar(uint32_t value) const
{
return ((value >= '0' && value <= '9') || (value >= 'a' && value <= 'z') || (value >= 'A' && value <= 'Z') ||
(value == '_'));
}
inline bool IsTerminator(uint32_t value) const
{
return (value == '\n' || value == '\r' || value == 0x2028 || value == 0x2029);
}
inline bool IsIgnoreCase() const
{
return (flags_ & RegExpParser::FLAG_IGNORECASE) != 0;
}
inline bool IsUtf16() const
{
return (flags_ & RegExpParser::FLAG_UTF16) != 0;
}
private:
static constexpr size_t CHAR_SIZE = 1;
static constexpr size_t WIDE_CHAR_SIZE = 2;
static constexpr size_t SAVE_RESET_START = 1;
static constexpr size_t SAVE_RESET_END = 2;
static constexpr size_t LOOP_MIN_OFFSET = 5;
static constexpr size_t LOOP_MAX_OFFSET = 9;
static constexpr size_t LOOP_PC_OFFSET = 1;
static constexpr size_t RANGE32_HEAD_OFFSET = 3;
static constexpr size_t RANGE32_MAX_HALF_OFFSET = 4;
static constexpr size_t RANGE32_MAX_OFFSET = 8;
static constexpr size_t RANGE32_OFFSET = 2;
static constexpr size_t SPARSE_HEAD_OFFSET = 3;
static constexpr size_t SPARSE_OFF_OFFSET = 2;
static constexpr size_t SPARSE_MAX_OFFSET = 6;
static constexpr uint32_t STACK_MULTIPLIER = 2;
static constexpr uint32_t MIN_STACK_SIZE = 8;
static constexpr int TMP_BUF_SIZE = 128;
uint8_t *input_ = nullptr;
uint8_t *inputEnd_ = nullptr;
bool isWideChar_ = false;
uint16_t prefilter_ = 0;
uint32_t currentPc_ = 0;
const uint8_t *currentPtr_ = nullptr;
CaptureState *captureResultList_ = nullptr;
uintptr_t *stack_ = nullptr;
uint32_t currentStack_ = 0;
uint32_t nCapture_ = 0;
uint32_t nStack_ = 0;
uint32_t flags_ = 0;
uint32_t stateStackLen_ = 0;
uint32_t stateStackSize_ = 0;
uint8_t *stateStack_ = nullptr;
RegExpCachedChunk *chunk_ = nullptr;
};
}
#endif