Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/interpreter/
Dbytecode-decoder.cc96 const uint8_t* bytecode_start) { in Decode() argument
97 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]); in Decode()
103 bytecode = Bytecodes::FromByte(bytecode_start[1]); in Decode()
114 os << std::setw(2) << static_cast<uint32_t>(bytecode_start[i]) << ' '; in Decode()
134 &bytecode_start[prefix_offset + operand_offset]); in Decode()
197 &bytecode_start[prefix_offset + reg_count_offset]); in Decode()
Dbytecode-decoder.h42 static std::ostream& Decode(std::ostream& os, const uint8_t* bytecode_start);
/third_party/node/deps/v8/src/execution/
Disolate.cc1314 Address bytecode_start = in GetAbstractPC() local
1316 return bytecode_start + iframe->GetBytecodeOffset(); in GetAbstractPC()