Home | History | Annotate | Download | only in GlobalISel

Lines Matching refs:NewVRegs

624     StartIdx = NewVRegs.size();
627 NewVRegs.push_back(0);
632 return make_range(&NewVRegs[StartIdx], End);
643 assert((NewVRegs.size() == StartIdx + NumVal ||
644 NewVRegs.size() > StartIdx + NumVal) &&
645 "NewVRegs too small to contain all the partial mapping");
646 return NewVRegs.size() <= StartIdx + NumVal ? NewVRegs.end()
647 : &NewVRegs[StartIdx + NumVal];
679 assert(NewVRegs[OpToNewVRegIdx[OpIdx] + PartialMapIdx] == 0 &&
681 NewVRegs[OpToNewVRegIdx[OpIdx] + PartialMapIdx] = NewVReg;
692 return make_range(NewVRegs.end(), NewVRegs.end());
699 make_range(&NewVRegs[StartIdx], End);