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

  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 258 SDValue InFlag = Node->getOperand(2), CmpLHS;
266 CmpLHS = InFlag.getValue(0);
269 CmpLHS = InFlag.getOperand(0);
273 SDValue Ops[] = { CmpLHS, InFlag.getOperand(1) };
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 35 Value *CmpLHS = ICI->getOperand(0);
40 LHS = CmpLHS;
44 if (TrueVal == CmpLHS && FalseVal == CmpRHS) {
59 if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
74 if ((CmpLHS == TrueVal && match(FalseVal, m_Neg(m_Specific(CmpLHS)))) ||
75 (CmpLHS == FalseVal && match(TrueVal, m_Neg(m_Specific(CmpLHS))))) {
80 return (CmpLHS == TrueVal) ? SPF_ABS : SPF_NABS;
86 return (CmpLHS == FalseVal) ? SPF_ABS : SPF_NABS
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 209 CaseBlock(ISD::CondCode cc, const Value *cmplhs, const Value *cmprhs,
214 : CC(cc), CmpLHS(cmplhs), CmpMHS(cmpmiddle), CmpRHS(cmprhs),
221 // CmpLHS/CmpRHS/CmpMHS - The LHS/MHS/RHS of the comparison to emit.
224 const Value *CmpLHS, *CmpMHS, *CmpRHS;
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]

Completed in 57 milliseconds