Home
last modified time | relevance | path

Searched refs:operand_types (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-traits.h89 static const OperandType operand_types[] = {operand_0, operand_1, operand_2,
91 return operand_types;
153 static const OperandType operand_types[] = {operand_0, operand_1, operand_2,
155 return operand_types;
211 static const OperandType operand_types[] = {operand_0, operand_1,
213 return operand_types;
263 static const OperandType operand_types[] = {operand_0, OperandType::kNone};
264 return operand_types;
309 static const OperandType operand_types[] = {OperandType::kNone};
310 return operand_types;
Dbytecode-array-iterator.cc133 const OperandType* operand_types = in GetRegisterOperandRange() local
135 DCHECK(Bytecodes::IsRegisterOperandType(operand_types[operand_index])); in GetRegisterOperandRange()
136 if (operand_types[operand_index + 1] == OperandType::kRegCount) { in GetRegisterOperandRange()
139 OperandType operand_type = operand_types[operand_index]; in GetRegisterOperandRange()
Dbytecode-array-writer.cc178 const OperandType* operand_types = Bytecodes::GetOperandTypes(bytecode); in EmitBytecode() local
179 for (int i = 0; operand_types[i] != OperandType::kNone; ++i) { in EmitBytecode()
180 OperandType operand_type = operand_types[i]; in EmitBytecode()
206 if (operand_types[i + 1] == OperandType::kRegCount) { in EmitBytecode()
Dbytecode-register-optimizer.cc509 const OperandType* operand_types = in PrepareRegisterOperands() local
517 OperandType operand_type = operand_types[i]; in PrepareRegisterOperands()
519 if (operand_types[i + 1] == OperandType::kRegCount) { in PrepareRegisterOperands()
Dbytecode-array-builder.cc687 const OperandType* operand_types = Bytecodes::GetOperandTypes(bytecode); in OperandsAreValid() local
689 switch (operand_types[i]) { in OperandsAreValid()
694 CHECK(operand_types[i - 1] == OperandType::kMaybeReg || in OperandsAreValid()
695 operand_types[i - 1] == OperandType::kReg); in OperandsAreValid()