Searched refs:MaxVal (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp298 int64_t MaxVal = (int64_t(1) << 31) - 8; local
301 else if (ThisVal > MaxVal)
302 ThisVal = MaxVal;
/external/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp409 int64_t MinVal, int64_t MaxVal);
762 int64_t MinVal, int64_t MaxVal) {
774 if ((Value & 1) || Value < MinVal || Value > MaxVal) {
761 parsePCRel(SmallVectorImpl<MCParsedAsmOperand*> &Operands, int64_t MinVal, int64_t MaxVal) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1396 APInt MinVal, MaxVal; local
1400 MaxVal = APInt::getSignedMaxValue(OperandBitSize);
1403 MaxVal = APInt::getMaxValue(OperandBitSize);
1416 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true
1427 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal)
1429 if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal)
1436 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
1445 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
1447 DAG.getConstant(MaxVal, N0.getValueType()),
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp173 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth) local
175 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);

Completed in 164 milliseconds