Searched refs:bytecode_start (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/interpreter/ |
D | bytecodes.cc | 236 std::ostream& Bytecodes::Decode(std::ostream& os, const uint8_t* bytecode_start, in Decode() argument 240 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]); in Decode() 244 SNPrintF(buf, "%02x ", bytecode_start[i]); in Decode() 258 &bytecode_start[GetOperandOffset(bytecode, i)]; in Decode()
|
D | bytecodes.h | 404 static std::ostream& Decode(std::ostream& os, const uint8_t* bytecode_start,
|
/external/v8/src/ |
D | objects.cc | 15009 const uint8_t* bytecode_start = &first_bytecode_address[i]; in Disassemble() local 15011 interpreter::Bytecodes::FromByte(bytecode_start[0]); in Disassemble() 15014 SNPrintF(buf, "%p", bytecode_start); in Disassemble() 15016 interpreter::Bytecodes::Decode(os, bytecode_start, parameter_count()); in Disassemble() 15020 int index = static_cast<int>(ReadUnalignedUInt16(bytecode_start + 1)); in Disassemble() 15022 SNPrintF(buf, " (%p)", bytecode_start + offset); in Disassemble() 15026 int index = static_cast<int>(bytecode_start[1]); in Disassemble() 15028 SNPrintF(buf, " (%p)", bytecode_start + offset); in Disassemble() 15032 int offset = static_cast<int8_t>(bytecode_start[1]); in Disassemble() 15033 SNPrintF(buf, " (%p)", bytecode_start + offset); in Disassemble()
|