Searched refs:FalseOp (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | PeepholeOptimizer.cpp | 489 unsigned FalseOp = 0; in optimizeSelect() local 492 if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable)) in optimizeSelect()
|
/external/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.h | 261 unsigned &TrueOp, unsigned &FalseOp,
|
D | ARMBaseInstrInfo.cpp | 1821 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument 1832 FalseOp = 2; in analyzeSelect()
|
/external/llvm/include/llvm/Target/ |
D | TargetInstrInfo.h | 589 unsigned &TrueOp, unsigned &FalseOp, in analyzeSelect() argument
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 1862 SDValue FalseOp = Op.getOperand(3); in lowerSELECT_CC() local 1876 if (isAbsolute(C.Op0, TrueOp, FalseOp)) in lowerSELECT_CC() 1878 if (isAbsolute(C.Op0, FalseOp, TrueOp)) in lowerSELECT_CC() 1879 return getAbsolute(DAG, DL, FalseOp, C.CCMask & SystemZ::CCMASK_CMP_GT); in lowerSELECT_CC() 1887 auto *FalseC = dyn_cast<ConstantSDNode>(FalseOp); in lowerSELECT_CC() 1907 SDValue Ops[] = {TrueOp, FalseOp, DAG.getConstant(C.CCValid, MVT::i32), in lowerSELECT_CC()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.cpp | 21493 SDValue FalseOp = N->getOperand(0); in PerformCMOVCombine() local 21505 return (CC == X86::COND_E) ? FalseOp : TrueOp; in PerformCMOVCombine() 21514 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) { in PerformCMOVCombine() 21515 SDValue Ops[] = { FalseOp, TrueOp, in PerformCMOVCombine() 21524 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) { in PerformCMOVCombine() 21530 std::swap(TrueOp, FalseOp); in PerformCMOVCombine() 21638 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) { in PerformCMOVCombine() 21640 std::swap(TrueOp, FalseOp); in PerformCMOVCombine() 21645 SDValue Ops[] = { FalseOp, Cond.getOperand(0), in PerformCMOVCombine() 21675 std::swap(FalseOp, TrueOp); in PerformCMOVCombine() [all …]
|