Lines Matching defs:Where
124 int Length, int Where) const;
1045 Instruction *Where = Move.Main.front();
1049 // Clone all deps to before Where, keeping order.
1050 Move.Clones = cloneBefore(Where->getIterator(), Move.Deps);
1051 // Move all main instructions to after Where, keeping order.
1054 if (M != Where)
1055 M->moveAfter(Where);
1058 Where = M;
1068 // Move all main instructions to before Where, inverting order.
1071 M->moveBefore(Where->getIterator());
1072 Where = M;
1229 if (auto *Where = std::min(PrevAt, ThisAt, isEarlier)) {
1230 Builder.SetInsertPoint(Where);
1234 // it at "Where". To see if the load is safe to be placed at Where, put
1251 if (auto *Where = EarliestUser[&ASpan[Index]]) {
1252 Builder.SetInsertPoint(Where);
2309 // Insert bytes [Start..Start+Length) of Src into Dst at byte Where.
2312 int Where) const -> Value * {
2317 assert(0 <= Where && Where + Length <= DstLen);
2326 // If i is in [Where, Where+Length), pick Src[Start+(i-Where)].
2329 (Where <= i && i < Where + Length) ? P2Len + Start + (i - Where) : i;