Home
last modified time | relevance | path

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

/external/v8/src/snapshot/
Dserializer-deserializer.h180 template <Bytecode kBytecode, int kMinValue, int kMaxValue,
183 STATIC_ASSERT((kBytecode + kMaxValue - kMinValue) <= kMaxUInt8);
191 return static_cast<byte>(kBytecode + static_cast<int>(value) - kMinValue); in Encode()
198 return static_cast<TValue>(bytecode - kBytecode + kMinValue); in Decode()
/external/v8/src/regexp/
Dregexp.h17 enum class RegExpCompilationTarget : int { kBytecode, kNative }; enumerator
Dregexp.cc477 ? RegExpCompilationTarget::kBytecode in CompileIrregexp()
499 RegExpCompilationTarget::kBytecode); in CompileIrregexp()
854 DCHECK_EQ(data->compilation_target, RegExpCompilationTarget::kBytecode); in Compile()
923 data->compilation_target == RegExpCompilationTarget::kBytecode) { in Compile()