Lines Matching defs:InsertedShift
2339 BinaryOperator *&InsertedShift = InsertedShifts[TruncUserBB];
2342 if (!InsertedShift && !InsertedTrunc) {
2347 InsertedShift =
2350 InsertedShift =
2352 InsertedShift->setDebugLoc(ShiftI->getDebugLoc());
2353 InsertedShift->insertBefore(*TruncUserBB, InsertPt);
2362 InsertedTrunc = CastInst::Create(TruncI->getOpcode(), InsertedShift,
2445 BinaryOperator *&InsertedShift = InsertedShifts[UserBB];
2447 if (!InsertedShift) {
2452 InsertedShift =
2455 InsertedShift =
2457 InsertedShift->insertBefore(*UserBB, InsertPt);
2458 InsertedShift->setDebugLoc(ShiftI->getDebugLoc());
2464 TheUse = InsertedShift;