Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SpeculativeLoadHardening.cpp1530 auto ShiftI = BuildMI(MBB, InsertPt, Loc, TII->get(X86::SHL64ri), TmpReg) in mergePredStateIntoSP() local
1533 ShiftI->addRegisterDead(X86::EFLAGS, TRI); in mergePredStateIntoSP()
1554 auto ShiftI = in extractPredStateFromSP() local
1558 ShiftI->addRegisterDead(X86::EFLAGS, TRI); in extractPredStateFromSP()
1742 auto ShiftI = in hardenLoadAddr() local
1746 (void)ShiftI; in hardenLoadAddr()
1748 LLVM_DEBUG(dbgs() << " Inserting shrx: "; ShiftI->dump(); in hardenLoadAddr()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2096 SinkShiftAndTruncate(BinaryOperator *ShiftI, Instruction *User, ConstantInt *CI, in SinkShiftAndTruncate() argument
2143 if (ShiftI->getOpcode() == Instruction::AShr) in SinkShiftAndTruncate()
2145 BinaryOperator::CreateAShr(ShiftI->getOperand(0), CI, ""); in SinkShiftAndTruncate()
2148 BinaryOperator::CreateLShr(ShiftI->getOperand(0), CI, ""); in SinkShiftAndTruncate()
2149 InsertedShift->setDebugLoc(ShiftI->getDebugLoc()); in SinkShiftAndTruncate()
2189 static bool OptimizeExtractBits(BinaryOperator *ShiftI, ConstantInt *CI, in OptimizeExtractBits() argument
2192 BasicBlock *DefBB = ShiftI->getParent(); in OptimizeExtractBits()
2197 bool shiftIsLegal = TLI.isTypeLegal(TLI.getValueType(DL, ShiftI->getType())); in OptimizeExtractBits()
2200 for (Value::user_iterator UI = ShiftI->user_begin(), E = ShiftI->user_end(); in OptimizeExtractBits()
2237 SinkShiftAndTruncate(ShiftI, User, CI, InsertedShifts, TLI, DL); in OptimizeExtractBits()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp2249 unsigned ShiftI = i * ElementSize; in collectInsertionElements() local
2251 Instruction::LShr, C, ConstantInt::get(C->getType(), ShiftI)); in collectInsertionElements()
2256 if (!collectInsertionElements(Piece, ShiftI + Shift, Elements, VecEltTy, in collectInsertionElements()
H A DInstCombineCompares.cpp7544 Instruction *ShiftI; in visitICmpInst() local
7545 if (match(Op0, m_CombineAnd(m_Instruction(ShiftI), in visitICmpInst()
7549 unsigned ShiftOpc = ShiftI->getOpcode(); in visitICmpInst()