Home
last modified time | relevance | path

Searched refs:Cmp0 (Results 1 – 13 of 13) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringARM32.def27 // vcCC0_V Cmp0, Src0, Src1 /* only if CC0_V != none */
29 // vorr Cmp2, Cmp0, Cmp1 /* only if CC1_V != none */
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DInstructionSimplify.cpp1481 static Value *simplifyAndOrOfICmpsWithConstants(ICmpInst *Cmp0, ICmpInst *Cmp1, in simplifyAndOrOfICmpsWithConstants() argument
1484 if (Cmp0->getOperand(0) != Cmp1->getOperand(0)) in simplifyAndOrOfICmpsWithConstants()
1488 if (!match(Cmp0->getOperand(1), m_APInt(C0)) || in simplifyAndOrOfICmpsWithConstants()
1492 auto Range0 = ConstantRange::makeExactICmpRegion(Cmp0->getPredicate(), *C0); in simplifyAndOrOfICmpsWithConstants()
1498 return getFalse(Cmp0->getType()); in simplifyAndOrOfICmpsWithConstants()
1503 return getTrue(Cmp0->getType()); in simplifyAndOrOfICmpsWithConstants()
1511 return IsAnd ? Cmp1 : Cmp0; in simplifyAndOrOfICmpsWithConstants()
1513 return IsAnd ? Cmp0 : Cmp1; in simplifyAndOrOfICmpsWithConstants()
1518 static Value *simplifyAndOrOfICmpsWithZero(ICmpInst *Cmp0, ICmpInst *Cmp1, in simplifyAndOrOfICmpsWithZero() argument
1520 ICmpInst::Predicate P0 = Cmp0->getPredicate(), P1 = Cmp1->getPredicate(); in simplifyAndOrOfICmpsWithZero()
[all …]
DLoopAccessAnalysis.cpp2163 Value *Cmp0 = ChkBuilder.CreateICmpULT(Start0, End1, "bound0"); in addRuntimeChecks() local
2164 FirstInst = getFirstInst(FirstInst, Cmp0, Loc); in addRuntimeChecks()
2167 Value *IsConflict = ChkBuilder.CreateAnd(Cmp0, Cmp1, "found.conflict"); in addRuntimeChecks()
/external/llvm/lib/Analysis/
DLoopAccessAnalysis.cpp1866 Value *Cmp0 = ChkBuilder.CreateICmpULE(Start0, End1, "bound0"); in addRuntimeChecks() local
1867 FirstInst = getFirstInst(FirstInst, Cmp0, Loc); in addRuntimeChecks()
1870 Value *IsConflict = ChkBuilder.CreateAnd(Cmp0, Cmp1, "found.conflict"); in addRuntimeChecks()
DInstructionSimplify.cpp1631 auto *Cmp0 = dyn_cast<ICmpInst>(Cast0->getOperand(0)); in SimplifyAndInst() local
1633 if (Cmp0 && Cmp1) { in SimplifyAndInst()
1636 if (auto *V = dyn_cast_or_null<Constant>(SimplifyAndOfICmps(Cmp0, Cmp1))) in SimplifyAndInst()
1638 if (auto *V = dyn_cast_or_null<Constant>(SimplifyAndOfICmps(Cmp1, Cmp0))) in SimplifyAndInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp815 Value *InstCombiner::simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1, in simplifyRangeCheck() argument
819 ConstantInt *RangeStart = dyn_cast<ConstantInt>(Cmp0->getOperand(1)); in simplifyRangeCheck()
823 ICmpInst::Predicate Pred0 = (Inverted ? Cmp0->getInversePredicate() : in simplifyRangeCheck()
824 Cmp0->getPredicate()); in simplifyRangeCheck()
834 Value *Input = Cmp0->getOperand(0); in simplifyRangeCheck()
DInstCombineInternal.h249 Value *simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1, bool Inverted);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp755 Value *InstCombiner::simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1, in simplifyRangeCheck() argument
759 ConstantInt *RangeStart = dyn_cast<ConstantInt>(Cmp0->getOperand(1)); in simplifyRangeCheck()
763 ICmpInst::Predicate Pred0 = (Inverted ? Cmp0->getInversePredicate() : in simplifyRangeCheck()
764 Cmp0->getPredicate()); in simplifyRangeCheck()
774 Value *Input = Cmp0->getOperand(0); in simplifyRangeCheck()
DInstCombineInternal.h359 Value *simplifyRangeCheck(ICmpInst *Cmp0, ICmpInst *Cmp1, bool Inverted);
DInstCombineCalls.cpp1480 APFloat::cmpResult Cmp0 = Max3.compare(Src0); in fmed3AMDGCN() local
1481 assert(Cmp0 != APFloat::cmpUnordered && "nans handled separately"); in fmed3AMDGCN()
1482 if (Cmp0 == APFloat::cmpEqual) in fmed3AMDGCN()
/external/clang/lib/CodeGen/
DMicrosoftCXXABI.cpp2750 llvm::Value *Cmp0 = Builder.CreateICmp(Eq, L0, R0, "memptr.cmp.first"); in EmitMemberPointerComparison() local
2775 return Builder.CreateBinOp(And, Res, Cmp0, "memptr.cmp"); in EmitMemberPointerComparison()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp7777 APFloat::cmpResult Cmp0 = F.compare(Zero); in performClampCombine() local
7778 if (Cmp0 == APFloat::cmpLessThan || in performClampCombine()
7779 (Cmp0 == APFloat::cmpUnordered && Subtarget->enableDX10Clamp())) { in performClampCombine()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp18417 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1, in LowerVSETCC() local
18421 Cmp = DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1); in LowerVSETCC()