Home
last modified time | relevance | path

Searched refs:InsertedShift (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1888 BinaryOperator *&InsertedShift = InsertedShifts[TruncUserBB]; in SinkShiftAndTruncate() local
1891 if (!InsertedShift && !InsertedTrunc) { in SinkShiftAndTruncate()
1896 InsertedShift = BinaryOperator::CreateAShr(ShiftI->getOperand(0), CI, in SinkShiftAndTruncate()
1899 InsertedShift = BinaryOperator::CreateLShr(ShiftI->getOperand(0), CI, in SinkShiftAndTruncate()
1901 InsertedShift->setDebugLoc(ShiftI->getDebugLoc()); in SinkShiftAndTruncate()
1908 InsertedTrunc = CastInst::Create(TruncI->getOpcode(), InsertedShift, in SinkShiftAndTruncate()
1990 BinaryOperator *&InsertedShift = InsertedShifts[UserBB]; in OptimizeExtractBits() local
1992 if (!InsertedShift) { in OptimizeExtractBits()
1997 InsertedShift = BinaryOperator::CreateAShr(ShiftI->getOperand(0), CI, in OptimizeExtractBits()
2002 InsertedShift->setDebugLoc(ShiftI->getDebugLoc()); in OptimizeExtractBits()
[all …]