HomeSort by: relevance | last modified time | path
    Searched refs:TrueOp (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiInstrInfo.h 115 // Result = SELECT Cond, TrueOp, FalseOp
120 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
130 // If both sides of the select can be optimized, the TrueOp is modifed.
LanaiInstrInfo.cpp 440 unsigned &TrueOp, unsigned &FalseOp,
448 TrueOp = 1;
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 1873 auto *TrueOp = dyn_cast<ConstantSDNode>(Node->getOperand(0));
1875 if (!TrueOp || !FalseOp)
1879 if (TrueOp->getSExtValue() != 1 && TrueOp->getSExtValue() != -1)
1904 unsigned ShiftOp = TrueOp->getSExtValue() == 1 ? ISD::SRL : ISD::SRA;
1911 if (TrueOp->getSExtValue() == 1) {
SystemZISelLowering.cpp 2994 SDValue TrueOp = Op.getOperand(2);
3009 if (isAbsolute(C.Op0, TrueOp, FalseOp))
3010 return getAbsolute(DAG, DL, TrueOp, C.CCMask & SystemZ::CCMASK_CMP_LT);
3011 if (isAbsolute(C.Op0, FalseOp, TrueOp))
3016 SDValue Ops[] = {TrueOp, FalseOp,
5871 auto *TrueOp = dyn_cast<ConstantSDNode>(N0.getOperand(0));
5873 if (TrueOp && FalseOp) {
5875 SDValue Ops[] = { DAG.getConstant(TrueOp->getZExtValue(), DL, VT),
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
PeepholeOptimizer.cpp 633 unsigned TrueOp = 0;
637 if (TII->analyzeSelect(MI, Cond, TrueOp, FalseOp, Optimizable))
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetInstrInfo.h 897 /// Result = SELECT Cond, TrueOp, FalseOp
905 /// @param TrueOp Operand number of the value selected when Cond is true.
911 unsigned &TrueOp, unsigned &FalseOp,
930 /// @param PreferFalse Try to optimize FalseOp instead of TrueOp.
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 304 SmallVectorImpl<MachineOperand> &Cond, unsigned &TrueOp,
ARMBaseInstrInfo.cpp 2309 unsigned &TrueOp, unsigned &FalseOp,
2319 TrueOp = 1;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 45 milliseconds