• Home
  • Raw
  • Download

Lines Matching refs:current_bytecode

32     Bytecode current_bytecode = Bytecodes::FromByte(current_byte);  in UpdateOperandScale()  local
33 if (Bytecodes::IsPrefixScalingBytecode(current_bytecode)) { in UpdateOperandScale()
35 Bytecodes::PrefixBytecodeToOperandScale(current_bytecode); in UpdateOperandScale()
48 Bytecode BytecodeArrayAccessor::current_bytecode() const { in current_bytecode() function in v8::internal::interpreter::BytecodeArrayAccessor
52 Bytecode current_bytecode = Bytecodes::FromByte(current_byte); in current_bytecode() local
53 DCHECK(!Bytecodes::IsPrefixScalingBytecode(current_bytecode)); in current_bytecode()
54 return current_bytecode; in current_bytecode()
59 Bytecodes::Size(current_bytecode(), current_operand_scale()); in current_bytecode_size()
65 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(current_bytecode())); in GetUnsignedOperand()
67 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetUnsignedOperand()
72 Bytecodes::GetOperandOffset(current_bytecode(), operand_index, in GetUnsignedOperand()
81 DCHECK_LT(operand_index, Bytecodes::NumberOfOperands(current_bytecode())); in GetSignedOperand()
83 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetSignedOperand()
88 Bytecodes::GetOperandOffset(current_bytecode(), operand_index, in GetSignedOperand()
95 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetFlagOperand()
102 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetUnsignedImmediateOperand()
108 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetImmediateOperand()
115 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetRegisterCountOperand()
122 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetIndexOperand()
129 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetRegisterOperand()
133 Bytecodes::GetOperandOffset(current_bytecode(), operand_index, in GetRegisterOperand()
140 DCHECK_LE(operand_index, Bytecodes::NumberOfOperands(current_bytecode())); in GetRegisterOperandRange()
142 Bytecodes::GetOperandTypes(current_bytecode()); in GetRegisterOperandRange()
155 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetRuntimeIdOperand()
164 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetIntrinsicIdOperand()
179 Bytecode bytecode = current_bytecode(); in GetJumpTargetOffset()