Home
last modified time | relevance | path

Searched refs:FalseC (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DInlineCost.cpp1579 Constant *FalseC = dyn_cast<Constant>(FalseVal); in visitSelectInst() local
1580 if (!FalseC) in visitSelectInst()
1581 FalseC = SimplifiedValues.lookup(FalseVal); in visitSelectInst()
1587 if (TrueC == FalseC && TrueC) { in visitSelectInst()
1618 if (TrueC && FalseC) { in visitSelectInst()
1619 if (auto *C = ConstantExpr::getSelect(CondC, TrueC, FalseC)) { in visitSelectInst()
DInstructionSimplify.cpp3982 if (auto *FalseC = dyn_cast<Constant>(FalseVal)) in SimplifySelectInst() local
3983 return ConstantFoldSelectInstruction(CondC, TrueC, FalseC); in SimplifySelectInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsISelLowering.cpp693 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(False); in performSELECTCombine() local
702 if (!FalseC) in performSELECTCombine()
707 if (!FalseC->getZExtValue()) { in performSELECTCombine()
732 int64_t Diff = TrueC->getSExtValue() - FalseC->getSExtValue(); in performSELECTCombine()
764 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(ValueIfFalse); in performCMovFPCombine() local
765 if (!FalseC || FalseC->getZExtValue()) in performCMovFPCombine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstants.cpp684 ConstantInt *FalseC = ConstantInt::getFalse(Ty->getContext()); in getFalse() local
686 return ConstantVector::getSplat(VTy->getNumElements(), FalseC); in getFalse()
687 return FalseC; in getFalse()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp37665 auto *FalseC = dyn_cast<ConstantSDNode>(RHS); in combineSelectOfTwoConstants() local
37666 if (!TrueC || !FalseC) in combineSelectOfTwoConstants()
37685 const APInt &FalseVal = FalseC->getAPIntValue(); in combineSelectOfTwoConstants()
37701 std::swap(TrueC, FalseC); in combineSelectOfTwoConstants()
37712 if (!FalseC->isNullValue()) in combineSelectOfTwoConstants()
37713 R = DAG.getNode(ISD::ADD, DL, VT, R, SDValue(FalseC, 0)); in combineSelectOfTwoConstants()
38694 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) { in combineCMov() local
38697 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) { in combineCMov()
38699 std::swap(TrueC, FalseC); in combineCMov()
38706 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) { in combineCMov()
[all …]