Lines Matching refs:opcode_value
1086 #define DECLARE_VRR_A_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1089 uint64_t code = (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1096 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1102 #define DECLARE_VRR_C_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1105 uint64_t code = (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1113 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1119 #define DECLARE_VRR_B_INSTRUCTIONS(name, opcode_name, opcode_value) \ in S390_VRR_C_OPCODE_LIST() argument
1122 uint64_t code = (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \ in S390_VRR_C_OPCODE_LIST()
1129 (static_cast<uint64_t>(opcode_value & 0x00FF)); \ in S390_VRR_C_OPCODE_LIST()
1135 #define DECLARE_VRR_E_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1138 uint64_t code = (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1146 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1152 #define DECLARE_VRR_F_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1154 uint64_t code = (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1159 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1165 #define DECLARE_VRX_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1168 (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1175 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1181 #define DECLARE_VRS_A_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1185 (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1192 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1198 #define DECLARE_VRS_B_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1202 (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1209 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1215 #define DECLARE_VRS_C_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1219 (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1226 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1232 #define DECLARE_VRI_A_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1234 uint64_t code = (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1239 (static_cast<uint64_t>(opcode_value & 0x00FF)); \
1245 #define DECLARE_VRI_C_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
1248 uint64_t code = (static_cast<uint64_t>(opcode_value & 0xFF00)) * B32 | \
1254 (static_cast<uint64_t>(opcode_value & 0x00FF)); \