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

/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp100 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High); local
101 return CI1->getValue().slt(CI2->getValue());
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1495 ConstantInt *CI1, *CI2; local
1502 m_ConstantInt(CI2))))
1515 const APInt &CI2V = CI2->getValue();
1654 ConstantInt *CI1, *CI2; local
1661 m_ConstantInt(CI2))))
1674 const APInt &CI2V = CI2->getValue();
2249 ConstantInt *CI2; local
2250 if (match(LHS, m_URem(m_Value(), m_ConstantInt(CI2)))) {
2251 // 'urem x, CI2' produces [0, CI2)
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp2097 ConstantInt *CI2 = nullptr; local
2098 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2)))) return nullptr;
2100 APInt Xor = CI1->getValue() ^ CI2->getValue();
2127 ConstantInt *CI2 = nullptr; local
2128 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2))))
2131 APInt Xor = CI1->getValue() ^ CI2->getValue();
H A DInstCombineCompares.cpp1038 ConstantInt *CI2) {
1054 APInt AP2 = CI2->getValue();
1098 ConstantInt *CI2) {
1114 APInt AP2 = CI2->getValue();
2025 /// I = icmp ugt (add (add A, B), CI2), CI1
2032 ConstantInt *CI2, ConstantInt *CI1,
2044 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
2045 if (!CI2->getValue().isPowerOf2()) return nullptr;
2046 unsigned NewWidth = CI2->getValue().countTrailingZeros();
2058 // sign-extended; check for that condition. For example, if CI2 i
1036 FoldICmpCstShrCst(ICmpInst &I, Value *Op, Value *A, ConstantInt *CI1, ConstantInt *CI2) argument
1096 FoldICmpCstShlCst(ICmpInst &I, Value *Op, Value *A, ConstantInt *CI1, ConstantInt *CI2) argument
2031 ProcessUGT_ADDCST_ADD(ICmpInst &I, Value *A, Value *B, ConstantInt *CI2, ConstantInt *CI1, InstCombiner &IC) argument
2755 ConstantInt *CI2; // I = icmp ugt (add (add A, B), CI2), CI local
2816 ConstantInt *CI2; local
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp1340 CallInst *CI2 = dyn_cast<CallInst>(VL[i]); local
1341 if (!CI2 || CI2->getCalledFunction() != Int ||
1342 getIntrinsicIDForCall(CI2, TLI) != ID) {
1352 Value *A1J = CI2->getArgOperand(1);
1369 CallInst *CI2 = dyn_cast<CallInst>(VL[j]); local
1370 Operands.push_back(CI2->getArgOperand(i));

Completed in 226 milliseconds