Home
last modified time | relevance | path

Searched refs:getMsgDescRaw (Results 1 – 12 of 12) sorted by relevance

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/LocalScheduler/
H A DDependencies_G4IR.cpp53 G4_SendDescRaw* msgDesc = send->getMsgDescRaw(); in DoMemoryInterfereSend()
232 else if (inst->getMsgDescRaw() && inst->getMsgDescRaw()->isThreadMessage()) in CheckBarrier()
H A DLocalScheduler_G4IR.cpp1662 && inst->getMsgDescRaw() in isTypedWritePart()
1663 && inst->getMsgDescRaw()->isHdcTypedSurfaceWrite() in isTypedWritePart()
1686 inst->getMsgDescRaw() && in isLeadingURBWrite()
1690 desc.value = inst->getMsgDescRaw()->getDesc(); in isLeadingURBWrite()
1704 if (!firstURB->getMsgDescRaw() || !secondURB->getMsgDescRaw()) { in canFuseURB()
1708 firstDesc.value = firstURB->getMsgDescRaw()->getDesc(); in canFuseURB()
1709 secondDesc.value = secondURB->getMsgDescRaw()->getDesc(); in canFuseURB()
1715 … if (firstURB->getMsgDescRaw()->MessageLength() == secondURB->getMsgDescRaw()->MessageLength() && in canFuseURB()
1716 … firstURB->getMsgDescRaw()->extMessageLength() == secondURB->getMsgDescRaw()->extMessageLength()) in canFuseURB()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/Passes/
H A DSendFusion.cpp349 const G4_SendDescRaw * msgDesc = I->getMsgDescRaw(); in simplifyAndCheckCandidate()
563 G4_SendDescRaw* desc = Send->getMsgDescRaw(); in simplifyMsg()
693 G4_SendDescRaw* desc0 = I0->getMsgDescRaw(); in canFusion()
694 G4_SendDescRaw* desc1 = I1->getMsgDescRaw(); in canFusion()
904 const G4_SendDescRaw* origDesc = Send0->getMsgDescRaw(); in packPayload()
1093 const G4_SendDescRaw *desc = Send0->getMsgDescRaw(); in unpackPayload()
1349 const G4_SendDescRaw * desc = I0->getMsgDescRaw(); in doFusion()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/
H A DRematerialization.cpp122 inst->getMsgDescRaw() && in populateSamplerHeaderMap()
123 inst->getMsgDescRaw()->isHeaderPresent()) in populateSamplerHeaderMap()
778 if (!uniqueDefInst->getMsgDescRaw() || in canRematerialize()
779 !uniqueDefInst->getMsgDescRaw()->isHeaderPresent() || in canRematerialize()
1041 auto dstMsgDesc = dstInst->getMsgDescRaw(); in rematerialize()
H A DBinaryEncodingIGA.cpp852 G4_SendDescRaw *sd = inst->getMsgDescRaw();
1171 const G4_SendDescRaw* msgDesc = g4inst->getMsgDescRaw(); in translateInstructionDst()
1316 G4_SendDescRaw* msgDesc = inst->getMsgDescRaw(); in translateInstructionSrcs()
1456 G4_SendDescRaw* descG4 = sendInst->getMsgDescRaw(); in encodeExDescSendUnary()
1490 G4_SendDescRaw* descG4 = sendInst->getMsgDescRaw(); in encodeExDescImm()
1546 const G4_SendDescRaw* descG4 = sendInst->getMsgDescRaw(); in encodeExDescRegA0()
H A DBinaryEncodingCNL.cpp900 MUST_BE_TRUE(inst->getMsgDescRaw(), "expected raw descriptor"); in PatchSend()
901 uint32_t msgDesc = inst->getMsgDescRaw()->getExtendedDesc(); in PatchSend()
1907 MUST_BE_TRUE(inst->getMsgDescRaw(), "expected raw descriptor"); in EncodeSplitSend()
1908 uint32_t msgDesc = inst->getMsgDescRaw()->getExtendedDesc(); in EncodeSplitSend()
H A DBinaryEncoding.cpp270 G4_SendDescRaw* msgDesc = inst->getMsgDescRaw(); in EncodeSendMsgDesc29_30()
2598 MUST_BE_TRUE(inst->getMsgDescRaw(), "expected raw descriptor"); in EncodeExtMsgDescr()
2599 uint32_t msgDesc = inst->getMsgDescRaw()->getExtendedDesc(); in EncodeExtMsgDescr()
H A DOptimizer.cpp1142 inst->getMsgDescRaw() != nullptr && in cloneSampleInst()
1154 if (sendInst->getMsgDescRaw()->isHeaderPresent()) in cloneSampleInst()
1160 uint32_t messageType = sendInst->getMsgDescRaw()->getSamplerMessageType(); in cloneSampleInst()
1176 uint16_t rspLen = inst->asSendInst()->getMsgDescRaw()->ResponseLength(); in cloneSampleInst()
1188 … (inst->getExecSize() == g4::SIMD16 && !sendInst->getMsgDescRaw()->is16BitReturn()) ? 9 : 5; in cloneSampleInst()
1190 if (sendInst->getMsgDescRaw()->isHeaderPresent() && in cloneSampleInst()
3343 if (!msgDesc->isLSC() || msgDesc->isSLM() || !inst->getMsgDescRaw()) in removePartialMovs()
3348 if (inst->getMsgDescRaw()) in removePartialMovs()
3350 uint32_t desc = inst->getMsgDescRaw()->getDesc(); in removePartialMovs()
6352 G4_SendDescRaw *desc = sendInst->getMsgDescRaw(); in isBarrierPattern()
H A DG4_IR.cpp3901 const G4_SendDescRaw *desc = getMsgDescRaw(); in isDirectSplittableSend()
4005 if (getMsgDescRaw()) { in emit_send()
4007 output << fmtHex(getMsgDescRaw()->getExtendedDesc()); in emit_send()
4041 if (const auto *rawDesc = sendInst->getMsgDescRaw()) { in emit_send_desc()
8406 getOption(), getMsgDescRaw(), extDesc); in cloneInst()
H A DG4_IR.hpp544 const G4_SendDescRaw * getMsgDescRaw() const { in getMsgDescRaw() function in vISA::G4_INST
550 G4_SendDescRaw * getMsgDescRaw() { in getMsgDescRaw() function in vISA::G4_INST
H A DFlowGraph.cpp1167 G4_SendDescRaw *rawDesc = secondToLastInst->getMsgDescRaw(); in handleExit()
H A DGraphColor.cpp2936 if (const G4_SendDescRaw *d = inst->getMsgDescRaw()) { in updateDstMaskForGather()