Lines Matching defs:OpId
1904 bool isValidMsgOp(int64_t MsgId, int64_t OpId, const MCSubtargetInfo &STI,
1909 return 0 <= OpId && isUInt<OP_WIDTH_>(OpId);
1912 if (MsgId == ID_GS_PreGFX11 && OpId == OP_GS_NOP)
1915 return !getMsgOpName(MsgId, OpId, STI).empty();
1918 return OpId == OP_NONE_;
1921 bool isValidMsgStream(int64_t MsgId, int64_t OpId, int64_t StreamId,
1923 assert(isValidMsgOp(MsgId, OpId, STI, Strict));
1933 return (OpId == OP_GS_NOP) ?
1947 bool msgSupportsStream(int64_t MsgId, int64_t OpId,
1951 OpId != OP_GS_NOP;
1954 void decodeMsg(unsigned Val, uint16_t &MsgId, uint16_t &OpId,
1958 OpId = 0;
1961 OpId = (Val & OP_MASK_) >> OP_SHIFT_;
1967 uint64_t OpId,
1969 return MsgId | (OpId << OP_SHIFT_) | (StreamId << STREAM_ID_SHIFT_);