Searched defs:MinVal (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp295 int64_t MinVal = -int64_t(1) << 31; local
297 if (ThisVal < MinVal)
298 ThisVal = MinVal;
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp398 OperandMatchResultTy parsePCRel(OperandVector &Operands, int64_t MinVal,
746 SystemZAsmParser::parsePCRel(OperandVector &Operands, int64_t MinVal, argument
759 if ((Value & 1) || Value < MinVal || Value > MaxVal) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1549 APInt MinVal, MaxVal; local
1552 MinVal = APInt::getSignedMinValue(OperandBitSize);
1555 MinVal = APInt::getMinValue(OperandBitSize);
1561 if (C1 == MinVal) return DAG.getConstant(1, VT); // X >= MIN --> true
1590 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal)
1592 if ((Cond == ISD::SETGE || Cond == ISD::SETUGE) && C1 == MinVal)
1600 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal)
1607 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1)
1609 DAG.getConstant(MinVal, N0.getValueType()),

Completed in 141 milliseconds