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

  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 349 Value *CmpLHS = ICI->getOperand(0);
386 if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
387 (CmpLHS == FalseVal && AdjustedRHS == TrueVal))
401 if (match(TrueVal, m_SExt(m_Specific(CmpLHS))) &&
403 CmpLHS = TrueVal;
405 } else if (match(FalseVal, m_SExt(m_Specific(CmpLHS))) &&
407 CmpLHS = FalseVal;
415 if (match(TrueVal, m_ZExt(m_Specific(CmpLHS))) &&
417 CmpLHS = TrueVal;
419 } else if (match(FalseVal, m_ZExt(m_Specific(CmpLHS))) &
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 388 SDValue InFlag = Node->getOperand(2), CmpLHS;
396 CmpLHS = InFlag.getValue(0);
399 CmpLHS = InFlag.getOperand(0);
403 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
  /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 48 milliseconds