Home
last modified time | relevance | path

Searched refs:first_mismatch (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/interpreter/
Dbytecode-array-writer.cc93 int first_mismatch = std::min(bytecode_size, bytecode.length()); in CheckBytecodeMatches() local
94 for (int i = 0; i < first_mismatch; ++i) { in CheckBytecodeMatches()
97 first_mismatch = i; in CheckBytecodeMatches()
103 return first_mismatch; in CheckBytecodeMatches()
Dinterpreter.cc216 int first_mismatch = generator()->CheckBytecodeMatches(*bytecode); in CheckAndPrintBytecodeMismatch() local
217 if (first_mismatch >= 0) { in CheckAndPrintBytecodeMismatch()
245 FATAL("Bytecode mismatch at offset %d\n", first_mismatch); in CheckAndPrintBytecodeMismatch()