Searched refs:operand_start (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/interpreter/ |
D | bytecode-decoder.cc | 16 Register BytecodeDecoder::DecodeRegisterOperand(const uint8_t* operand_start, in DecodeRegisterOperand() argument 21 DecodeSignedOperand(operand_start, operand_type, operand_scale); in DecodeRegisterOperand() 27 const uint8_t* operand_start, uint32_t count, OperandType operand_type, in DecodeRegisterListOperand() argument 30 DecodeRegisterOperand(operand_start, operand_type, operand_scale); in DecodeRegisterListOperand() 35 int32_t BytecodeDecoder::DecodeSignedOperand(const uint8_t* operand_start, in DecodeSignedOperand() argument 41 return static_cast<int8_t>(*operand_start); in DecodeSignedOperand() 43 return static_cast<int16_t>(ReadUnalignedUInt16(operand_start)); in DecodeSignedOperand() 45 return static_cast<int32_t>(ReadUnalignedUInt32(operand_start)); in DecodeSignedOperand() 53 uint32_t BytecodeDecoder::DecodeUnsignedOperand(const uint8_t* operand_start, in DecodeUnsignedOperand() argument 59 return *operand_start; in DecodeUnsignedOperand() [all …]
|
D | bytecode-decoder.h | 21 static Register DecodeRegisterOperand(const uint8_t* operand_start, 26 static RegisterList DecodeRegisterListOperand(const uint8_t* operand_start, 32 static int32_t DecodeSignedOperand(const uint8_t* operand_start, 37 static uint32_t DecodeUnsignedOperand(const uint8_t* operand_start,
|
D | bytecode-array-accessor.cc | 69 const uint8_t* operand_start = in GetUnsignedOperand() local 74 return BytecodeDecoder::DecodeUnsignedOperand(operand_start, operand_type, in GetUnsignedOperand() 85 const uint8_t* operand_start = in GetSignedOperand() local 90 return BytecodeDecoder::DecodeSignedOperand(operand_start, operand_type, in GetSignedOperand() 130 const uint8_t* operand_start = in GetRegisterOperand() local 135 return BytecodeDecoder::DecodeRegisterOperand(operand_start, operand_type, in GetRegisterOperand()
|