Searched refs:operand_start (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/interpreter/ |
D | bytecode-array-iterator.cc | 68 const uint8_t* operand_start = in GetUnsignedOperand() local 73 return Bytecodes::DecodeUnsignedOperand(operand_start, operand_type, in GetUnsignedOperand() 84 const uint8_t* operand_start = in GetSignedOperand() local 89 return Bytecodes::DecodeSignedOperand(operand_start, operand_type, in GetSignedOperand() 122 const uint8_t* operand_start = in GetRegisterOperand() local 127 return Bytecodes::DecodeRegisterOperand(operand_start, operand_type, in GetRegisterOperand()
|
D | bytecodes.cc | 647 Register Bytecodes::DecodeRegisterOperand(const uint8_t* operand_start, in DecodeRegisterOperand() argument 652 DecodeSignedOperand(operand_start, operand_type, operand_scale); in DecodeRegisterOperand() 657 int32_t Bytecodes::DecodeSignedOperand(const uint8_t* operand_start, in DecodeSignedOperand() argument 663 return static_cast<int8_t>(*operand_start); in DecodeSignedOperand() 665 return static_cast<int16_t>(ReadUnalignedUInt16(operand_start)); in DecodeSignedOperand() 667 return static_cast<int32_t>(ReadUnalignedUInt32(operand_start)); in DecodeSignedOperand() 675 uint32_t Bytecodes::DecodeUnsignedOperand(const uint8_t* operand_start, in DecodeUnsignedOperand() argument 681 return *operand_start; in DecodeUnsignedOperand() 683 return ReadUnalignedUInt16(operand_start); in DecodeUnsignedOperand() 685 return ReadUnalignedUInt32(operand_start); in DecodeUnsignedOperand() [all …]
|
D | bytecodes.h | 630 static Register DecodeRegisterOperand(const uint8_t* operand_start, 635 static int32_t DecodeSignedOperand(const uint8_t* operand_start, 640 static uint32_t DecodeUnsignedOperand(const uint8_t* operand_start,
|