Lines Matching refs:MsgId

924 static bool isValidMsgId(int64_t MsgId) {  in isValidMsgId()  argument
925 return (ID_GAPS_FIRST_ <= MsgId && MsgId < ID_GAPS_LAST_) && IdSymbolic[MsgId]; in isValidMsgId()
928 bool isValidMsgId(int64_t MsgId, const MCSubtargetInfo &STI, bool Strict) { in isValidMsgId() argument
930 if (MsgId == ID_GS_ALLOC_REQ || MsgId == ID_GET_DOORBELL) in isValidMsgId()
933 return isValidMsgId(MsgId); in isValidMsgId()
935 return 0 <= MsgId && isUInt<ID_WIDTH_>(MsgId); in isValidMsgId()
939 StringRef getMsgName(int64_t MsgId) { in getMsgName() argument
940 return isValidMsgId(MsgId)? IdSymbolic[MsgId] : ""; in getMsgName()
943 int64_t getMsgOpId(int64_t MsgId, const StringRef Name) { in getMsgOpId() argument
944 const char* const *S = (MsgId == ID_SYSMSG) ? OpSysSymbolic : OpGsSymbolic; in getMsgOpId()
945 const int F = (MsgId == ID_SYSMSG) ? OP_SYS_FIRST_ : OP_GS_FIRST_; in getMsgOpId()
946 const int L = (MsgId == ID_SYSMSG) ? OP_SYS_LAST_ : OP_GS_LAST_; in getMsgOpId()
955 bool isValidMsgOp(int64_t MsgId, int64_t OpId, bool Strict) { in isValidMsgOp() argument
960 switch(MsgId) in isValidMsgOp()
973 StringRef getMsgOpName(int64_t MsgId, int64_t OpId) { in getMsgOpName() argument
974 assert(msgRequiresOp(MsgId)); in getMsgOpName()
975 return (MsgId == ID_SYSMSG)? OpSysSymbolic[OpId] : OpGsSymbolic[OpId]; in getMsgOpName()
978 bool isValidMsgStream(int64_t MsgId, int64_t OpId, int64_t StreamId, bool Strict) { in isValidMsgStream() argument
983 switch(MsgId) in isValidMsgStream()
996 bool msgRequiresOp(int64_t MsgId) { in msgRequiresOp() argument
997 return MsgId == ID_GS || MsgId == ID_GS_DONE || MsgId == ID_SYSMSG; in msgRequiresOp()
1000 bool msgSupportsStream(int64_t MsgId, int64_t OpId) { in msgSupportsStream() argument
1001 return (MsgId == ID_GS || MsgId == ID_GS_DONE) && OpId != OP_GS_NOP; in msgSupportsStream()
1005 uint16_t &MsgId, in decodeMsg() argument
1008 MsgId = Val & ID_MASK_; in decodeMsg()
1013 uint64_t encodeMsg(uint64_t MsgId, in encodeMsg() argument
1016 return (MsgId << ID_SHIFT_) | in encodeMsg()