Lines Matching refs:bytecode

18 // All slots between the last actually defined bytecode and maximum id will be
51 /* Jump to another bytecode given its offset. */ \
55 /* 0x20 - 0x3F: Address of bytecode to jump to */ \
61 /* 0x20 - 0x3F: Address of bytecode when load is out of range */ \
78 /* 0x20 - 0x3F: Address of bytecode when matched */ \
91 /* 0x40 - 0x5F: Address of bytecode when matched */ \
105 /* 0x20 - 0x3F: Address of bytecode when bit is set */ \
126 /* 0x20 - 0x3F: Address of bytecode when current matches tos */ \
128 /* Advance character pointer by given offset and jump to another bytecode.*/ \
132 /* 0x20 - 0x3F: Address of bytecode to jump to */ \
139 /* 0x20 - 0x3F: Address of bytecode when position is out of range */ \
149 /* 0xC0 - 0xDF Address of bytecode when character is matched */ \
150 /* 0xE0 - 0xFF Address of bytecode when no match */ \
163 /* 0x80 - 0x9F Address of bytecode when character is matched */ \
164 /* 0xA0 - 0xBF Address of bytecode when no match */ \
174 /* 0x40 - 0x5F Address of bytecode when character is matched */ \
175 /* 0x60 - 0x7F Address of bytecode when no match */ \
187 /* 0x60 - 0x7F Address of bytecode when character is matched */ \
188 /* 0x80 - 0x9F Address of bytecode when no match */ \
199 /* 0x60 - 0x7F Address of bytecode when either character is matched */ \
200 /* 0x80 - 0x9F Address of bytecode when no match */ \
212 /* 0xC0 - 0xDF Address of bytecode when character is matched */ \
213 /* 0xE0 - 0xFF Address of bytecode when no match */ \
237 inline constexpr int RegExpBytecodeLength(int bytecode) {
238 DCHECK(base::IsInRange(bytecode, 0, kRegExpBytecodeCount - 1));
239 return kRegExpBytecodeLengths[bytecode];
248 inline constexpr const char* RegExpBytecodeName(int bytecode) {
249 DCHECK(base::IsInRange(bytecode, 0, kRegExpBytecodeCount - 1));
250 return kRegExpBytecodeNames[bytecode];