Lines Matching defs:InsertedShift
2136 BinaryOperator *&InsertedShift = InsertedShifts[TruncUserBB];
2139 if (!InsertedShift && !InsertedTrunc) {
2144 InsertedShift =
2147 InsertedShift =
2149 InsertedShift->setDebugLoc(ShiftI->getDebugLoc());
2150 InsertedShift->insertBefore(*TruncUserBB, InsertPt);
2159 InsertedTrunc = CastInst::Create(TruncI->getOpcode(), InsertedShift,
2242 BinaryOperator *&InsertedShift = InsertedShifts[UserBB];
2244 if (!InsertedShift) {
2249 InsertedShift =
2252 InsertedShift =
2254 InsertedShift->insertBefore(*UserBB, InsertPt);
2255 InsertedShift->setDebugLoc(ShiftI->getDebugLoc());
2261 TheUse = InsertedShift;