Searched refs:FalseC (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp579 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(False);
588 if (!FalseC)
593 if (!FalseC->getZExtValue()) {
617 int64_t Diff = TrueC->getSExtValue() - FalseC->getSExtValue();
648 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(ValueIfFalse); local
649 if (!FalseC || FalseC->getZExtValue())
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp20942 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
20946 // so that TrueC (the true value) is larger than FalseC.
20949 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
20955 std::swap(TrueC, FalseC);
20959 if (FalseC->getAPIntValue() == 0 &&
20974 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
20981 FalseC->getValueType(0), Cond);
20983 SDValue(FalseC, 0));
20989 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
21009 APInt Diff = TrueC->getAPIntValue()-FalseC
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1887 auto *FalseC = dyn_cast<ConstantSDNode>(FalseOp);
1888 if (TrueC && FalseC) {
1890 int64_t FalseVal = FalseC->getSExtValue();

Completed in 86 milliseconds