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

  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 247 SDValue InFlag = Node->getOperand(2), CmpLHS;
255 CmpLHS = InFlag.getValue(0);
258 CmpLHS = InFlag.getOperand(0);
262 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 359 Value *CmpLHS = ICI->getOperand(0);
396 if ((CmpLHS == TrueVal && AdjustedRHS == FalseVal) ||
397 (CmpLHS == FalseVal && AdjustedRHS == TrueVal))
411 if (match(TrueVal, m_SExt(m_Specific(CmpLHS))) &&
413 CmpLHS = TrueVal;
415 } else if (match(FalseVal, m_SExt(m_Specific(CmpLHS))) &&
417 CmpLHS = FalseVal;
425 if (match(TrueVal, m_ZExt(m_Specific(CmpLHS))) &&
427 CmpLHS = TrueVal;
429 } else if (match(FalseVal, m_ZExt(m_Specific(CmpLHS))) &
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 197 CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs,
202 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
209 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
212 const Value *CmpLHS, *CmpMHS, *CmpRHS;

Completed in 42 milliseconds