• Home
  • Raw
  • Download

Lines Matching refs:Bytecodes

17 const OperandType* const Bytecodes::kOperandTypes[] = {
23 const OperandTypeInfo* const Bytecodes::kOperandTypeInfos[] = {
29 const int Bytecodes::kOperandCount[] = {
35 const AccumulatorUse Bytecodes::kAccumulatorUse[] = {
41 const int Bytecodes::kBytecodeSizes[][3] = {
50 const OperandSize* const Bytecodes::kOperandSizes[][3] = {
61 const char* Bytecodes::ToString(Bytecode bytecode) { in ToString()
74 std::string Bytecodes::ToString(Bytecode bytecode, OperandScale operand_scale) { in ToString()
88 Bytecode Bytecodes::GetDebugBreak(Bytecode bytecode) { in GetDebugBreak()
108 int Bytecodes::GetOperandOffset(Bytecode bytecode, int i, in GetOperandOffset()
110 DCHECK_LT(i, Bytecodes::NumberOfOperands(bytecode)); in GetOperandOffset()
122 Bytecode Bytecodes::GetJumpWithoutToBoolean(Bytecode bytecode) { in GetJumpWithoutToBoolean()
140 bool Bytecodes::IsDebugBreak(Bytecode bytecode) { in IsDebugBreak()
153 bool Bytecodes::IsRegisterOperandType(OperandType operand_type) { in IsRegisterOperandType()
169 bool Bytecodes::MakesCallAlongCriticalPath(Bytecode bytecode) { in MakesCallAlongCriticalPath()
183 bool Bytecodes::IsRegisterInputOperandType(OperandType operand_type) { in IsRegisterInputOperandType()
201 bool Bytecodes::IsRegisterOutputOperandType(OperandType operand_type) { in IsRegisterOutputOperandType()
219 bool Bytecodes::IsStarLookahead(Bytecode bytecode, OperandScale operand_scale) { in IsStarLookahead()
254 bool Bytecodes::IsBytecodeWithScalableOperands(Bytecode bytecode) { in IsBytecodeWithScalableOperands()
262 bool Bytecodes::IsUnsignedOperandType(OperandType operand_type) { in IsUnsignedOperandType()
275 OperandSize Bytecodes::SizeOfOperand(OperandType operand_type, in SizeOfOperand()
300 bool Bytecodes::BytecodeHasHandler(Bytecode bytecode, in BytecodeHasHandler()
303 Bytecodes::IsBytecodeWithScalableOperands(bytecode); in BytecodeHasHandler()
307 return os << Bytecodes::ToString(bytecode); in operator <<()