Searched refs:AllOnes (Results 1 – 7 of 7) sorted by relevance
| /NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| HD | LegalizeVectorOps.cpp | 764 SDValue AllOnes = DAG.getConstant( in ExpandSELECT() local 766 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); in ExpandSELECT() 933 SDValue AllOnes = DAG.getConstant( in ExpandVSELECT() local 935 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); in ExpandVSELECT()
|
| /NextBSD/contrib/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineSimplifyDemanded.cpp | 722 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in SimplifyDemandedUseBits() local 723 if (SimplifyDemandedBits(I->getOperandUse(0), AllOnes, KnownZero2, in SimplifyDemandedUseBits() 725 SimplifyDemandedBits(I->getOperandUse(1), AllOnes, KnownZero2, in SimplifyDemandedUseBits()
|
| /NextBSD/contrib/llvm/lib/Target/ARM/ |
| HD | ARMISelLowering.cpp | 4034 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createNEONModImm(0xe, 0xff), in LowerFCOPYSIGN() local 4036 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes); in LowerFCOPYSIGN() 4038 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes)); in LowerFCOPYSIGN() 7900 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) { in isZeroOrAllOnes() argument 7904 return AllOnes ? C->isAllOnesValue() : C->isNullValue(); in isZeroOrAllOnes() 7919 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, in isConditionalZeroOrAllOnes() argument 7929 if (isZeroOrAllOnes(N1, AllOnes)) { in isConditionalZeroOrAllOnes() 7934 if (isZeroOrAllOnes(N2, AllOnes)) { in isConditionalZeroOrAllOnes() 7943 if (AllOnes) in isConditionalZeroOrAllOnes() 7952 Invert = !AllOnes; in isConditionalZeroOrAllOnes() [all …]
|
| /NextBSD/contrib/llvm/lib/Transforms/Instrumentation/ |
| HD | MemorySanitizer.cpp | 1052 Value *AllOnes = PoisonUndef ? getPoisonedShadow(V) : getCleanShadow(V); in getShadow() local 1053 DEBUG(dbgs() << "Undef: " << *U << " ==> " << *AllOnes << "\n"); in getShadow() 1055 return AllOnes; in getShadow()
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | Instructions.cpp | 1775 Constant *AllOnes = Constant::getAllOnesValue(Op->getType()); in CreateNot() local 1776 return new BinaryOperator(Instruction::Xor, Op, AllOnes, in CreateNot()
|
| /NextBSD/contrib/llvm/lib/Target/X86/ |
| HD | X86ISelLowering.cpp | 6437 SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL, in lowerVectorShuffleAsBitBlend() local 6443 MaskOps.push_back(Mask[i] < Size ? AllOnes : Zero); in lowerVectorShuffleAsBitBlend() 6843 SDValue AllOnes = DAG.getConstant(APInt::getAllOnesValue(NumEltBits), DL, in lowerVectorShuffleAsBitMask() local 6847 AllOnes = DAG.getBitcast(EltVT, AllOnes); in lowerVectorShuffleAsBitMask() 6862 VMaskOps[i] = AllOnes; in lowerVectorShuffleAsBitMask() 24702 SDValue AllOnes = in PerformSExtCombine() local 24704 return DAG.getNode(ISD::SELECT, DL, VT, N0, AllOnes, Zero); in PerformSExtCombine()
|
| /NextBSD/contrib/llvm/lib/Analysis/ |
| HD | ScalarEvolution.cpp | 3357 const SCEV *AllOnes = in getNotSCEV() local 3359 return getMinusSCEV(AllOnes, V); in getNotSCEV()
|