Searched refs:OperandTypeInfo (Results 1 – 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/interpreter/ |
D | bytecode-operands.h | 15 #define INVALID_OPERAND_TYPE_LIST(V) V(None, OperandTypeInfo::kNone) 18 V(Reg, OperandTypeInfo::kScalableSignedByte) \ 19 V(RegList, OperandTypeInfo::kScalableSignedByte) \ 20 V(RegPair, OperandTypeInfo::kScalableSignedByte) 23 V(RegOut, OperandTypeInfo::kScalableSignedByte) \ 24 V(RegOutList, OperandTypeInfo::kScalableSignedByte) \ 25 V(RegOutPair, OperandTypeInfo::kScalableSignedByte) \ 26 V(RegOutTriple, OperandTypeInfo::kScalableSignedByte) 29 V(Imm, OperandTypeInfo::kScalableSignedByte) 32 V(Idx, OperandTypeInfo::kScalableUnsignedByte) \ [all …]
|
D | bytecode-traits.h | 14 template <OperandTypeInfo> 23 struct OperandTypeInfoTraits<OperandTypeInfo::k##Name> { \ 33 using TypeInfoTraits = OperandTypeInfoTraits<OperandTypeInfo::kNone>; 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[]; 136 STATIC_CONST_MEMBER_DEFINITION const OperandTypeInfo 138 OperandTypeInfo::kNone};
|
D | bytecode-array-builder.cc | 216 template <OperandTypeInfo type_info> 233 case OperandTypeInfo::kFixedUnsignedByte: in IsValid() 235 case OperandTypeInfo::kFixedUnsignedShort: in IsValid() 237 case OperandTypeInfo::kScalableUnsignedByte: in IsValid()
|
D | bytecodes.cc | 23 const OperandTypeInfo* const Bytecodes::kOperandTypeInfos[] = {
|
D | bytecodes.h | 840 OperandTypeInfo::kScalableSignedByte; in OperandIsScalableSignedByte() 847 OperandTypeInfo::kScalableUnsignedByte; in OperandIsScalableUnsignedByte() 1035 static const OperandTypeInfo* const kOperandTypeInfos[];
|