Searched refs:NewCst (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp147 Constant *NewCst = nullptr; local
150 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());
154 NewCst = getLogBase2Vector(CV);
156 if (NewCst) {
157 BinaryOperator *Shl = BinaryOperator::CreateShl(NewOp, NewCst);
H A DInstCombineCompares.cpp1231 Constant *NewCst; local
1233 NewCst = ConstantExpr::getLShr(RHS, ShAmt);
1235 NewCst = ConstantExpr::getShl(RHS, ShAmt);
1239 if (ConstantExpr::get(ShiftOpcode, NewCst, ShAmt) != RHS) {
1248 ICI.setOperand(1, NewCst);
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp2715 Constant *NewCst = ConstantInt::getFalse(BB->getContext()); local
2718 std::swap(DefaultCst, NewCst);
2750 PHIUse->addIncoming(NewCst, NewBB);
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp2210 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT); local
2211 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);

Completed in 334 milliseconds