• Home
  • Raw
  • Download

Lines Matching refs:Bytecodes

143     DCHECK_EQ(Bytecodes::NumberOfOperands(bytecode), operand_count());  in NON_EXPORTED_BASE()
152 DCHECK_EQ(Bytecodes::NumberOfOperands(bytecode), operand_count()); in NON_EXPORTED_BASE()
162 DCHECK_EQ(Bytecodes::NumberOfOperands(bytecode), operand_count()); in NON_EXPORTED_BASE()
174 DCHECK_EQ(Bytecodes::NumberOfOperands(bytecode), operand_count()); in NON_EXPORTED_BASE()
187 DCHECK_EQ(Bytecodes::NumberOfOperands(bytecode), operand_count()); in NON_EXPORTED_BASE()
205 DCHECK_EQ(Bytecodes::NumberOfOperands(bytecode_), in NON_EXPORTED_BASE()
206 Bytecodes::NumberOfOperands(bytecode)); in NON_EXPORTED_BASE()
218 DCHECK_EQ(Bytecodes::NumberOfOperands(new_bytecode), in NON_EXPORTED_BASE()
219 Bytecodes::NumberOfOperands(bytecode()) + 1); in NON_EXPORTED_BASE()
220 DCHECK(Bytecodes::NumberOfOperands(bytecode()) < 1 || in NON_EXPORTED_BASE()
221 Bytecodes::GetOperandType(new_bytecode, 0) == in NON_EXPORTED_BASE()
222 Bytecodes::GetOperandType(bytecode(), 0)); in NON_EXPORTED_BASE()
223 DCHECK(Bytecodes::NumberOfOperands(bytecode()) < 2 || in NON_EXPORTED_BASE()
224 Bytecodes::GetOperandType(new_bytecode, 1) == in NON_EXPORTED_BASE()
225 Bytecodes::GetOperandType(bytecode(), 1)); in NON_EXPORTED_BASE()
226 DCHECK(Bytecodes::NumberOfOperands(bytecode()) < 3 || in NON_EXPORTED_BASE()
227 Bytecodes::GetOperandType(new_bytecode, 2) == in NON_EXPORTED_BASE()
228 Bytecodes::GetOperandType(bytecode(), 2)); in NON_EXPORTED_BASE()
229 DCHECK(Bytecodes::NumberOfOperands(bytecode()) < 4); in NON_EXPORTED_BASE()
269 DCHECK_EQ(Bytecodes::NumberOfOperands(bytecode), operand_count); in NON_EXPORTED_BASE()
285 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 0), operand0_type); in NON_EXPORTED_BASE()
295 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 0), operand0_type); in NON_EXPORTED_BASE()
296 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 1), operand1_type); in NON_EXPORTED_BASE()
309 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 0), operand0_type); in NON_EXPORTED_BASE()
310 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 1), operand1_type); in NON_EXPORTED_BASE()
311 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 2), operand2_type); in NON_EXPORTED_BASE()
326 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 0), operand0_type); in NON_EXPORTED_BASE()
327 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 1), operand1_type); in NON_EXPORTED_BASE()
328 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 2), operand2_type); in NON_EXPORTED_BASE()
329 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 3), operand3_type); in NON_EXPORTED_BASE()
342 return Bytecodes::ScaleForUnsignedOperand(operand); in NON_EXPORTED_BASE()
344 return Bytecodes::ScaleForSignedOperand(operand); in NON_EXPORTED_BASE()
351 if (Bytecodes::OperandIsScalableSignedByte(bytecode(), operand_index)) { in NON_EXPORTED_BASE()
353 std::max(operand_scale_, Bytecodes::ScaleForSignedOperand(operand)); in NON_EXPORTED_BASE()
354 } else if (Bytecodes::OperandIsScalableUnsignedByte(bytecode(), in NON_EXPORTED_BASE()
357 std::max(operand_scale_, Bytecodes::ScaleForUnsignedOperand(operand)); in NON_EXPORTED_BASE()
367 uint32_t operands_[Bytecodes::kMaxOperands]; in NON_EXPORTED_BASE()