Home | History | Annotate | Download | only in AMDGPU

Lines Matching refs:Consts

597 R600InstrInfo::fitsConstReadLimitations(const std::vector<unsigned> &Consts)
599 assert (Consts.size() <= 12 && "Too many operands in instructions group");
601 for (unsigned i = 0, n = Consts.size(); i < n; ++i) {
602 unsigned ReadConstHalf = Consts[i] & 2;
603 unsigned ReadConstIndex = Consts[i] & (~3);
624 std::vector<unsigned> Consts;
640 Consts.push_back(Src.second);
645 Consts.push_back((Index << 2) | Chan);
649 return fitsConstReadLimitations(Consts);