Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiISelLowering.cpp1325 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) { in isZeroOrAllOnes() argument
1326 return AllOnes ? isAllOnesConstant(N) : isNullConstant(N); in isZeroOrAllOnes()
1347 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, SDValue &CC, in isConditionalZeroOrAllOnes() argument
1357 if (isZeroOrAllOnes(N1, AllOnes)) { in isConditionalZeroOrAllOnes()
1362 if (isZeroOrAllOnes(N2, AllOnes)) { in isConditionalZeroOrAllOnes()
1371 if (AllOnes) in isConditionalZeroOrAllOnes()
1388 Invert = !AllOnes; in isConditionalZeroOrAllOnes()
1389 if (AllOnes) in isConditionalZeroOrAllOnes()
1420 bool AllOnes) { in combineSelectAndUse() argument
1426 if (!isConditionalZeroOrAllOnes(Slct.getNode(), AllOnes, CCOp, SwapSelectOps, in combineSelectAndUse()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineShifts.cpp1014 Constant *AllOnes = ConstantInt::getAllOnesValue(Ty); in visitShl() local
1015 Value *Mask = Builder.CreateShl(AllOnes, Op1); in visitShl()
1168 Constant *AllOnes = ConstantInt::getAllOnesValue(Ty); in visitLShr() local
1169 Value *Mask = Builder.CreateLShr(AllOnes, Op1); in visitLShr()
DInstCombineSimplifyDemanded.cpp676 APInt AllOnes = APInt::getAllOnesValue(BitWidth); in SimplifyDemandedUseBits() local
677 if (SimplifyDemandedBits(I, 0, AllOnes, Known2, Depth + 1) || in SimplifyDemandedUseBits()
678 SimplifyDemandedBits(I, 1, AllOnes, Known2, Depth + 1)) in SimplifyDemandedUseBits()
DInstCombineCompares.cpp5547 Constant *AllOnes = Constant::getAllOnesValue(Op0->getType()); in visitICmpInst() local
5548 return new ICmpInst(ICmpInst::ICMP_SGT, Op0, AllOnes); in visitICmpInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp1043 SDValue AllOnes = DAG.getConstant( in ExpandSELECT() local
1045 SDValue NotMask = DAG.getNode(ISD::XOR, DL, MaskTy, Mask, AllOnes); in ExpandSELECT()
1287 SDValue AllOnes = DAG.getConstant( in ExpandVSELECT() local
1289 SDValue NotMask = DAG.getNode(ISD::XOR, DL, VT, Mask, AllOnes); in ExpandVSELECT()
DDAGCombiner.cpp3850 SDValue AllOnes = DAG.getAllOnesConstant(DL, VT); in visitSDIVLike() local
3852 SDValue IsAllOnes = DAG.getSetCC(DL, CCVT, N1, AllOnes, ISD::SETEQ); in visitSDIVLike()
6342 SDValue AllOnes = DAG.getAllOnesConstant(DL, VT); in MatchRotate() local
6343 SDValue Mask = AllOnes; in MatchRotate()
6346 SDValue RHSBits = DAG.getNode(ISD::SRL, DL, VT, AllOnes, RHSShiftAmt); in MatchRotate()
6351 SDValue LHSBits = DAG.getNode(ISD::SHL, DL, VT, AllOnes, LHSShiftAmt); in MatchRotate()
DTargetLowering.cpp7140 SDValue AllOnes = DAG.getAllOnesConstant(dl, VT); in expandAddSubSat() local
7149 return DAG.getSelect(dl, VT, Overflow, AllOnes, SumDiff); in expandAddSubSat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModuleSummaryIndexYAML.h24 io.enumCase(value, "AllOnes", TypeTestResolution::AllOnes);
DModuleSummaryIndex.h808 AllOnes, ///< All-ones bit vector ("Eliminating Bit Vector Checks for
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp773 if (TIL.TheKind == TypeTestResolution::AllOnes) in lowerTypeTestCall()
927 TIL.TheKind == TypeTestResolution::AllOnes) { in exportTypeId()
1008 TIL.TheKind == TypeTestResolution::AllOnes) { in importTypeId()
1132 : TypeTestResolution::AllOnes; in lowerTypeTestCalls()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.cpp5536 SDValue AllOnes = DAG.getTargetConstant(ARM_AM::createVMOVModImm(0xe, 0xff), in LowerFCOPYSIGN() local
5538 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v8i8, AllOnes); in LowerFCOPYSIGN()
5540 DAG.getNode(ISD::BITCAST, dl, OpVT, AllOnes)); in LowerFCOPYSIGN()
7782 SDValue AllOnes = in PromoteMVEPredVector() local
7784 AllOnes = DAG.getNode(ARMISD::VMOVIMM, dl, MVT::v16i8, AllOnes); in PromoteMVEPredVector()
7805 DAG.getNode(ISD::VSELECT, dl, MVT::v16i8, RecastV1, AllOnes, AllZeroes); in PromoteMVEPredVector()
10961 static inline bool isZeroOrAllOnes(SDValue N, bool AllOnes) { in isZeroOrAllOnes() argument
10962 return AllOnes ? isAllOnesConstant(N) : isNullConstant(N); in isZeroOrAllOnes()
10977 static bool isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, in isConditionalZeroOrAllOnes() argument
10987 if (isZeroOrAllOnes(N1, AllOnes)) { in isConditionalZeroOrAllOnes()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DMemorySanitizer.cpp1590 Value *AllOnes = PoisonUndef ? getPoisonedShadow(V) : getCleanShadow(V); in getShadow() local
1591 LLVM_DEBUG(dbgs() << "Undef: " << *U << " ==> " << *AllOnes << "\n"); in getShadow()
1593 return AllOnes; in getShadow()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstructions.cpp2409 Constant *AllOnes = Constant::getAllOnesValue(Op->getType()); in CreateNot() local
2410 return new BinaryOperator(Instruction::Xor, Op, AllOnes, in CreateNot()
DAsmWriter.cpp2782 case TypeTestResolution::AllOnes: in getTTResKindName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DScalarEvolution.cpp4006 const SCEV *AllOnes = in getNotSCEV() local
4008 return getMinusSCEV(AllOnes, V); in getNotSCEV()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp11102 SDValue Zero, AllOnes; in lowerShuffleAsBitMask() local
11112 AllOnes = DAG.getConstantFP( in lowerShuffleAsBitMask()
11118 AllOnes = DAG.getAllOnesConstant(DL, EltVT); in lowerShuffleAsBitMask()
11133 VMaskOps[i] = AllOnes; in lowerShuffleAsBitMask()
11156 SDValue AllOnes = DAG.getAllOnesConstant(DL, EltVT); in lowerShuffleAsBitBlend() local
11161 MaskOps.push_back(Mask[i] < Size ? AllOnes : Zero); in lowerShuffleAsBitBlend()
33689 APInt AllOnes = APInt::getAllOnesValue(MaskEltSizeInBits); in combineX86ShuffleChain() local
33700 EltBits[i] = AllOnes; in combineX86ShuffleChain()
40117 SDValue AllOnes = DAG.getAllOnesConstant(dl, VT); in combineAndLoadToBZHI() local
40118 SDValue LShr = DAG.getNode(ISD::SRL, dl, VT, AllOnes, Sub); in combineAndLoadToBZHI()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.cpp7675 TTRes.TheKind = TypeTestResolution::AllOnes; in ParseTypeTestResolution()