Searched defs:CI2 (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp84 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High); local
85 return CI1->getValue().slt(CI2->getValue());
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1934 ConstantInt *CI2; local
1935 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
1936 // 'urem x, CI2' produces [0, CI2).
1937 Upper = CI2->getValue();
1938 } else if (match(LHS, m_SRem(m_Value(), m_ConstantInt(CI2)))) {
1939 // 'srem x, CI2' produces (-|CI2|, |CI2|).
1940 Upper = CI2
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h192 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High); local
193 return CI1->getValue().slt(CI2->getValue());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1895 ConstantInt *CI2 = nullptr; local
1896 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2)))) return nullptr;
1898 APInt Xor = CI1->getValue() ^ CI2->getValue();
H A DInstCombineCompares.cpp1899 /// I = icmp ugt (add (add A, B), CI2), CI1
1906 ConstantInt *CI2, ConstantInt *CI1,
1918 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
1919 if (!CI2->getValue().isPowerOf2()) return nullptr;
1920 unsigned NewWidth = CI2->getValue().countTrailingZeros();
1932 // sign-extended; check for that condition. For example, if CI2 is 2^31 and
2434 ConstantInt *CI2; // I = icmp ugt (add (add A, B), CI2), CI local
2436 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2))))
2437 if (Instruction *Res = ProcessUGT_ADDCST_ADD(I, A, B, CI2, C
1905 ProcessUGT_ADDCST_ADD(ICmpInst &I, Value *A, Value *B, ConstantInt *CI2, ConstantInt *CI1, InstCombiner &IC) argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1080 CallInst *CI2 = dyn_cast<CallInst>(VL[i]); local
1081 if (!CI2 || CI2->getCalledFunction() != Int ||
1082 getIntrinsicIDForCall(CI2, TLI) != ID) {
1091 Value *A1J = CI2->getArgOperand(1);
1107 CallInst *CI2 = dyn_cast<CallInst>(VL[j]); local
1108 Operands.push_back(CI2->getArgOperand(i));

Completed in 824 milliseconds