Searched refs:AllOnes (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorOps.cpp | 622 SDValue AllOnes = DAG.getConstant( in ExpandSELECT() local 624 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); in ExpandSELECT() 684 SDValue AllOnes = DAG.getConstant( in ExpandVSELECT() local 686 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); in ExpandVSELECT()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSimplifyDemanded.cpp | 762 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in SimplifyDemandedUseBits() local 763 if (SimplifyDemandedBits(I->getOperandUse(0), AllOnes, in SimplifyDemandedUseBits() 765 SimplifyDemandedBits(I->getOperandUse(1), AllOnes, in SimplifyDemandedUseBits()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | MemorySanitizer.cpp | 733 Value *AllOnes = getPoisonedShadow(getShadowTy(V)); in getShadow() local 734 DEBUG(dbgs() << "Undef: " << *U << " ==> " << *AllOnes << "\n"); in getShadow() 736 return AllOnes; in getShadow()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 3352 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff), in LowerFCOPYSIGN() local 3354 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes); in LowerFCOPYSIGN() 3356 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes)); in LowerFCOPYSIGN() 7457 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) { in isZeroOrAllOnes() argument 7461 return AllOnes ? C->isAllOnesValue() : C->isNullValue(); in isZeroOrAllOnes() 7476 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, in isConditionalZeroOrAllOnes() argument 7486 if (isZeroOrAllOnes(N1, AllOnes)) { in isConditionalZeroOrAllOnes() 7491 if (isZeroOrAllOnes(N2, AllOnes)) { in isConditionalZeroOrAllOnes() 7500 if (AllOnes) in isConditionalZeroOrAllOnes() 7508 Invert = !AllOnes; in isConditionalZeroOrAllOnes() [all …]
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 1913 Constant *AllOnes = Constant::getAllOnesValue(Op->getType()); in CreateNot() local 1914 return new BinaryOperator(Instruction::Xor, Op, AllOnes, in CreateNot()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 2756 const SCEV *AllOnes = in getNotSCEV() local 2758 return getMinusSCEV(AllOnes, V); in getNotSCEV()
|