Home | History | Annotate | Download | only in GlobalISel

Lines Matching refs:NewVRegs

535     StartIdx = NewVRegs.size();
538 NewVRegs.push_back(0);
543 return make_range(&NewVRegs[StartIdx], End);
554 assert((NewVRegs.size() == StartIdx + NumVal ||
555 NewVRegs.size() > StartIdx + NumVal) &&
556 "NewVRegs too small to contain all the partial mapping");
557 return NewVRegs.size() <= StartIdx + NumVal ? NewVRegs.end()
558 : &NewVRegs[StartIdx + NumVal];
586 assert(NewVRegs[OpToNewVRegIdx[OpIdx] + PartialMapIdx] == 0 &&
588 NewVRegs[OpToNewVRegIdx[OpIdx] + PartialMapIdx] = NewVReg;
599 return make_range(NewVRegs.end(), NewVRegs.end());
606 make_range(&NewVRegs[StartIdx], End);