HomeSort by: relevance | last modified time | path
    Searched refs:Saturating (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 853 bool Saturating =
867 if (Saturating) {
920 bool Saturating = N->getOpcode() == ISD::SDIVFIXSAT ||
941 if (Saturating) {
958 bool Saturating = N->getOpcode() == ISD::SDIVFIXSAT ||
979 if (Saturating)
984 if (Saturating)
994 if (Saturating)
1000 // If we cannot, expand it to twice the type width. If we are saturating, give
1001 // it the original width as a saturating width so we don't need to emi
    [all...]
TargetLowering.cpp 8088 bool Saturating = (Node->getOpcode() == ISD::SMULFIXSAT ||
8097 if (!Saturating) {
8161 if (!Saturating)
8225 bool Saturating = Opcode == ISD::SDIVFIXSAT || Opcode == ISD::UDIVFIXSAT;
8237 // For signed saturating operations, we need to be able to detect true integer
8244 // signed saturating division, we need to emit a whopping 32-bit division.
8245 if (LHSLead + RHSTrail < Scale + (unsigned)(Saturating && Signed))
SelectionDAGBuilder.cpp 5404 bool Saturating = Opcode == ISD::SDIVFIXSAT || Opcode == ISD::UDIVFIXSAT;
5417 // it's a saturating signed operation. Those can experience true integer
5425 if ((ScaleInt > 0 || (Saturating && Signed)) &&
5448 // For saturating operations, we need to shift up the LHS to get the
5450 if (Saturating)
5454 if (Saturating)

Completed in 81 milliseconds