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

/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp19385 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
19389 // so that TrueC (the true value) is larger than FalseC.
19392 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
19398 std::swap(TrueC, FalseC);
19402 if (FalseC->getAPIntValue() == 0 &&
19417 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
19424 FalseC->getValueType(0), Cond);
19426 SDValue(FalseC, 0));
19432 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
19452 APInt Diff = TrueC->getAPIntValue()-FalseC
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp556 ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(False);
565 if (!FalseC)
570 if (!FalseC->getZExtValue()) {
594 int64_t Diff = TrueC->getSExtValue() - FalseC->getSExtValue();
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1763 auto *FalseC = dyn_cast<ConstantSDNode>(FalseOp); local
1764 if (TrueC && FalseC) {
1766 int64_t FalseVal = FalseC->getSExtValue();

Completed in 570 milliseconds