Searched refs:isMaxValue (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/IR/
H A DConstantRange.cpp50 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) &&
83 if (UMax.isMaxValue())
95 if (UMin.isMaxValue())
184 return Lower == Upper && Lower.isMaxValue();
/external/llvm/include/llvm/IR/
H A DConstants.h186 bool isMaxValue(bool isSigned) const { function in class:llvm::ConstantInt
190 return Val.isMaxValue();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp135 return RHS->isMaxValue(true);
1289 if (!ICI.isEquality() && XorCst->isMaxValue(true)) {
2892 assert(!CI->isMaxValue(false)); // A <=u MAX -> TRUE
2896 assert(!CI->isMaxValue(true)); // A <=s MAX -> TRUE
3096 if (CI->isMaxValue(true))
3563 if (CI->isMaxValue(true)) {
H A DInstCombineAndOrXor.cpp1529 match(Op1, m_ConstantInt(CI)) && CI->isMaxValue(true)) {
2045 if (RHSCst->isMaxValue(false))
2065 if (RHSCst->isMaxValue(true))
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp3027 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(true)) {
3130 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(false)) {
4345 bool IsFullRange = Min.isMinValue() && Max.isMaxValue();
6862 if (RA.isMaxValue()) {
6874 if ((RA + 1).isMaxValue()) {
6885 if (RA.isMaxValue()) goto trivially_true;
6933 if ((RA + 1).isMaxValue()) {
6939 if (RA.isMaxValue()) goto trivially_false;
6942 if (RA.isMaxValue()) {
7024 if (!getUnsignedRange(RHS).getUnsignedMax().isMaxValue()) {
[all...]
H A DInstructionSimplify.cpp3407 if (Pred == ICmpInst::ICMP_UGT && C->isMaxValue())
/external/llvm/include/llvm/ADT/
H A DAPInt.h348 bool isMaxValue() const { return isAllOnesValue(); } function in class:llvm::APInt

Completed in 159 milliseconds