Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-decoder.cc96 const uint8_t* bytecode_start, in Decode() argument
98 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]); in Decode()
104 bytecode = Bytecodes::FromByte(bytecode_start[1]); in Decode()
115 os << std::setw(2) << static_cast<uint32_t>(bytecode_start[i]) << ' '; in Decode()
135 &bytecode_start[prefix_offset + operand_offset]); in Decode()
198 &bytecode_start[prefix_offset + reg_count_offset]); in Decode()
Dbytecode-decoder.h42 static std::ostream& Decode(std::ostream& os, const uint8_t* bytecode_start,
/external/v8/src/execution/
Disolate.cc1251 Address bytecode_start = in GetAbstractPC() local
1253 return bytecode_start + iframe->GetBytecodeOffset(); in GetAbstractPC()