Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SpeculativeLoadHardening.cpp1527 auto ShiftI = BuildMI(MBB, InsertPt, Loc, TII->get(X86::SHL64ri), TmpReg) in mergePredStateIntoSP() local
1530 ShiftI->addRegisterDead(X86::EFLAGS, TRI); in mergePredStateIntoSP()
1551 auto ShiftI = in extractPredStateFromSP() local
1555 ShiftI->addRegisterDead(X86::EFLAGS, TRI); in extractPredStateFromSP()
1739 auto ShiftI = in hardenLoadAddr() local
1743 (void)ShiftI; in hardenLoadAddr()
1745 LLVM_DEBUG(dbgs() << " Inserting shrx: "; ShiftI->dump(); in hardenLoadAddr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2110 if (ShiftI->getOpcode() == Instruction::AShr) in SinkShiftAndTruncate()
2112 BinaryOperator::CreateAShr(ShiftI->getOperand(0), CI, ""); in SinkShiftAndTruncate()
2115 BinaryOperator::CreateLShr(ShiftI->getOperand(0), CI, ""); in SinkShiftAndTruncate()
2116 InsertedShift->setDebugLoc(ShiftI->getDebugLoc()); in SinkShiftAndTruncate()
2159 BasicBlock *DefBB = ShiftI->getParent(); in OptimizeExtractBits()
2167 for (Value::user_iterator UI = ShiftI->user_begin(), E = ShiftI->user_end(); in OptimizeExtractBits()
2215 if (ShiftI->getOpcode() == Instruction::AShr) in OptimizeExtractBits()
2222 InsertedShift->setDebugLoc(ShiftI->getDebugLoc()); in OptimizeExtractBits()
2232 if (ShiftI->use_empty()) { in OptimizeExtractBits()
2233 salvageDebugInfo(*ShiftI); in OptimizeExtractBits()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp2159 unsigned ShiftI = i * ElementSize; in collectInsertionElements() local
2161 Instruction::LShr, C, ConstantInt::get(C->getType(), ShiftI)); in collectInsertionElements()
2166 if (!collectInsertionElements(Piece, ShiftI + Shift, Elements, VecEltTy, in collectInsertionElements()
H A DInstCombineCompares.cpp7173 Instruction *ShiftI; in visitICmpInst() local
7174 if (match(Op0, m_CombineAnd(m_Instruction(ShiftI), in visitICmpInst()
7178 unsigned ShiftOpc = ShiftI->getOpcode(); in visitICmpInst()