Home
last modified time | relevance | path

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

/external/llvm/lib/Analysis/
DValueTracking.cpp229 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in ComputeMaskedBits() local
231 AllOnes, KnownZero2, KnownOne2, TD, Depth+1); in ComputeMaskedBits()
237 AllOnes, KnownZero2, KnownOne2, TD, Depth+1); in ComputeMaskedBits()
526 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in ComputeMaskedBits() local
527 ComputeMaskedBits(I->getOperand(0), AllOnes, KnownZero, KnownOne, in ComputeMaskedBits()
529 ComputeMaskedBits(I->getOperand(1), AllOnes, KnownZero2, KnownOne2, in ComputeMaskedBits()
DScalarEvolution.cpp2645 const SCEV *AllOnes = in getNotSCEV() local
2647 return getMinusSCEV(AllOnes, V); in getNotSCEV()
3543 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in createSCEV() local
3545 ComputeMaskedBits(U->getOperand(0), AllOnes, KnownZero, KnownOne, TD); in createSCEV()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineSimplifyDemanded.cpp734 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in SimplifyDemandedUseBits() local
735 if (SimplifyDemandedBits(I->getOperandUse(0), AllOnes, in SimplifyDemandedUseBits()
737 SimplifyDemandedBits(I->getOperandUse(1), AllOnes, in SimplifyDemandedUseBits()
/external/llvm/lib/VMCore/
DInstructions.cpp1606 Constant *AllOnes; in CreateNot() local
1610 AllOnes = ConstantVector::get( in CreateNot()
1613 AllOnes = Constant::getAllOnesValue(Op->getType()); in CreateNot()
1616 return new BinaryOperator(Instruction::Xor, Op, AllOnes, in CreateNot()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1673 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in ComputeMaskedBits() local
1675 AllOnes, KnownZero2, KnownOne2, Depth+1); in ComputeMaskedBits()
1681 AllOnes, KnownZero2, KnownOne2, Depth+1); in ComputeMaskedBits()
2031 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in ComputeMaskedBits() local
2032 ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne, in ComputeMaskedBits()
2034 ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2, in ComputeMaskedBits()
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp3079 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff), in LowerFCOPYSIGN() local
3081 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes); in LowerFCOPYSIGN()
3083 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes)); in LowerFCOPYSIGN()