HomeSort by relevance Sort by last modified time
    Searched defs:CmpLHS (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 211 SDValue InFlag = Node->getOperand(2), CmpLHS;
219 CmpLHS = InFlag.getValue(0);
222 CmpLHS = InFlag.getOperand(0);
226 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 347 Value *CmpLHS = ICI->getOperand(0);
384 if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
385 (CmpLHS == FalseVal && AdjustedRHS == TrueVal))
399 if (match(TrueVal, m_SExt(m_Specific(CmpLHS))) &&
401 CmpLHS = TrueVal;
403 } else if (match(FalseVal, m_SExt(m_Specific(CmpLHS))) &&
405 CmpLHS = FalseVal;
413 if (match(TrueVal, m_ZExt(m_Specific(CmpLHS))) &&
415 CmpLHS = TrueVal;
417 } else if (match(FalseVal, m_ZExt(m_Specific(CmpLHS))) &
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 206 CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs,
211 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
218 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
221 const Value *CmpLHS, *CmpMHS, *CmpRHS;

Completed in 1052 milliseconds