HomeSort by: relevance | last modified time | path
    Searched refs:CI2 (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 1254 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) {
1257 if (CI2->isZero()) return C1; // X + 0 == X
1260 if (CI2->isZero()) return C1; // X - 0 == X
1263 if (CI2->isZero()) return C2; // X * 0 == 0
1264 if (CI2->isOne())
1269 if (CI2->isOne())
1271 if (CI2->isZero())
1272 return PoisonValue::get(CI2->getType()); // X / 0 == poison
1276 if (CI2->isOne())
1277 return Constant::getNullValue(CI2->getType()); // X % 1 ==
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 90 const ConstantInt *CI2 = cast<const ConstantInt>(C2.High);
91 return CI1->getValue().slt(CI2->getValue());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 3301 CallInst *CI2 = dyn_cast<CallInst>(V);
3302 if (!CI2 || CI2->getCalledFunction() != F ||
3303 getVectorIntrinsicIDForCall(CI2, TLI) != ID ||
3305 VecFunc != VFDatabase(*CI2).getVectorizedFunction(Shape)) ||
3306 !CI->hasIdenticalOperandBundleSchema(*CI2)) {
3318 Value *A1J = CI2->getArgOperand(j);
3334 CI2->op_begin() + CI2->getBundleOperandsStartIndex())) {
3351 auto *CI2 = cast<CallInst>(V)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 333 /// \param CI2 The second of a pair of casts.
337 /// CI1->getSrcTy() to CI2->getDstTy().
341 const CastInst *CI2);
InstCombineCompares.cpp 1212 /// I = icmp ugt (add (add A, B), CI2), CI1
1219 ConstantInt *CI2, ConstantInt *CI1,
1232 // If CI2 is 2^7, 2^15, 2^31, then it might be an sadd.with.overflow.
1233 if (!CI2->getValue().isPowerOf2())
1235 unsigned NewWidth = CI2->getValue().countTrailingZeros();
1248 // sign-extended; check for that condition. For example, if CI2 is 2^31 and
1412 ConstantInt *CI, *CI2; // I = icmp ugt (add (add A, B), CI2), CI
1414 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2))))
1415 if (Instruction *Res = processUGT_ADDCST_ADD(Cmp, A, B, CI2, CI, *this)
    [all...]
InstCombineCasts.cpp 251 const CastInst *CI2) {
254 Type *DstTy = CI2->getDestTy();
257 Instruction::CastOps secondOp = CI2->getOpcode();

Completed in 28 milliseconds