Searched refs:OperandTypeInfo (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/interpreter/ |
D | bytecode-operands.h | 14 #define INVALID_OPERAND_TYPE_LIST(V) V(None, OperandTypeInfo::kNone) 17 V(Reg, OperandTypeInfo::kScalableSignedByte) \ 18 V(RegList, OperandTypeInfo::kScalableSignedByte) \ 19 V(RegPair, OperandTypeInfo::kScalableSignedByte) 22 V(RegOut, OperandTypeInfo::kScalableSignedByte) \ 23 V(RegOutList, OperandTypeInfo::kScalableSignedByte) \ 24 V(RegOutPair, OperandTypeInfo::kScalableSignedByte) \ 25 V(RegOutTriple, OperandTypeInfo::kScalableSignedByte) 28 V(Imm, OperandTypeInfo::kScalableSignedByte) 31 V(Idx, OperandTypeInfo::kScalableUnsignedByte) \ [all …]
|
D | bytecode-traits.h | 14 template <OperandTypeInfo> 23 struct OperandTypeInfoTraits<OperandTypeInfo::k##Name> { \ 33 typedef OperandTypeInfoTraits<OperandTypeInfo::kNone> TypeInfoTraits; 34 static const OperandTypeInfo kOperandTypeInfo = OperandTypeInfo::kNone; 41 static const OperandTypeInfo kOperandTypeInfo = InfoType; \ 82 static const OperandTypeInfo kOperandTypeInfos[]; 101 STATIC_CONST_MEMBER_DEFINITION const OperandTypeInfo 120 static const OperandTypeInfo kOperandTypeInfos[]; 135 STATIC_CONST_MEMBER_DEFINITION const OperandTypeInfo 137 OperandTypeInfo::kNone};
|
D | bytecode-array-builder.cc | 176 template <OperandTypeInfo type_info> 193 case OperandTypeInfo::kFixedUnsignedByte: in IsValid() 195 case OperandTypeInfo::kFixedUnsignedShort: in IsValid() 197 case OperandTypeInfo::kScalableUnsignedByte: in IsValid()
|
D | bytecodes.h | 725 OperandTypeInfo::kScalableSignedByte; in OperandIsScalableSignedByte() 732 OperandTypeInfo::kScalableUnsignedByte; in OperandIsScalableUnsignedByte() 919 static const OperandTypeInfo* const kOperandTypeInfos[];
|
D | bytecodes.cc | 23 const OperandTypeInfo* const Bytecodes::kOperandTypeInfos[] = {
|