Searched refs:operand_start (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/interpreter/ |
D | bytecode-decoder.cc | 18 Register BytecodeDecoder::DecodeRegisterOperand(Address operand_start, in DecodeRegisterOperand() argument 23 DecodeSignedOperand(operand_start, operand_type, operand_scale); in DecodeRegisterOperand() 29 Address operand_start, uint32_t count, OperandType operand_type, in DecodeRegisterListOperand() argument 32 DecodeRegisterOperand(operand_start, operand_type, operand_scale); in DecodeRegisterListOperand() 37 int32_t BytecodeDecoder::DecodeSignedOperand(Address operand_start, in DecodeSignedOperand() argument 43 return *reinterpret_cast<const int8_t*>(operand_start); in DecodeSignedOperand() 46 base::ReadUnalignedValue<uint16_t>(operand_start)); in DecodeSignedOperand() 49 base::ReadUnalignedValue<uint32_t>(operand_start)); in DecodeSignedOperand() 57 uint32_t BytecodeDecoder::DecodeUnsignedOperand(Address operand_start, in DecodeUnsignedOperand() argument 63 return *reinterpret_cast<const uint8_t*>(operand_start); in DecodeUnsignedOperand() [all …]
|
D | bytecode-decoder.h | 21 static Register DecodeRegisterOperand(Address operand_start, 26 static RegisterList DecodeRegisterListOperand(Address operand_start, 32 static int32_t DecodeSignedOperand(Address operand_start, 37 static uint32_t DecodeUnsignedOperand(Address operand_start,
|
D | bytecode-array-iterator.cc | 63 Address operand_start = in GetUnsignedOperand() local 67 return BytecodeDecoder::DecodeUnsignedOperand(operand_start, operand_type, in GetUnsignedOperand() 78 Address operand_start = in GetSignedOperand() local 82 return BytecodeDecoder::DecodeSignedOperand(operand_start, operand_type, in GetSignedOperand() 138 Address operand_start = in GetRegisterOperand() local 142 return BytecodeDecoder::DecodeRegisterOperand(operand_start, operand_type, in GetRegisterOperand()
|