Lines Matching defs:OpId
1952 bool isValidMsgOp(int64_t MsgId, int64_t OpId, const MCSubtargetInfo &STI,
1957 return 0 <= OpId && isUInt<OP_WIDTH_>(OpId);
1960 if (MsgId == ID_GS_PreGFX11 && OpId == OP_GS_NOP)
1963 return !getMsgOpName(MsgId, OpId, STI).empty();
1966 return OpId == OP_NONE_;
1969 bool isValidMsgStream(int64_t MsgId, int64_t OpId, int64_t StreamId,
1971 assert(isValidMsgOp(MsgId, OpId, STI, Strict));
1981 return (OpId == OP_GS_NOP) ?
1995 bool msgSupportsStream(int64_t MsgId, int64_t OpId,
1999 OpId != OP_GS_NOP;
2002 void decodeMsg(unsigned Val, uint16_t &MsgId, uint16_t &OpId,
2006 OpId = 0;
2009 OpId = (Val & OP_MASK_) >> OP_SHIFT_;
2015 uint64_t OpId,
2017 return MsgId | (OpId << OP_SHIFT_) | (StreamId << STREAM_ID_SHIFT_);