Searched defs:isNegatibleForFree (Results 1 - 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp361 /// isNegatibleForFree - Return 1 if we can compute the negated form of the
364 static char isNegatibleForFree(SDValue Op, bool LegalOperations, function
390 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1))
393 return isNegatibleForFree(Op.getOperand(1), LegalOperations, Depth+1);
406 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1))
409 return isNegatibleForFree(Op.getOperand(1), LegalOperations, Depth+1);
414 return isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1);
418 /// GetNegatedExpression - If isNegatibleForFree returns true, this function
428 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
441 if (isNegatibleForFree(O
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp586 static char isNegatibleForFree(SDValue Op, bool LegalOperations, function
615 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
619 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
633 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
637 return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
643 return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
648 /// If isNegatibleForFree returns true, return the newly negated expression.
658 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
674 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
703 if (isNegatibleForFree(O
[all...]

Completed in 60 milliseconds