Home
last modified time | relevance | path

Searched refs:CI2 (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/
H A Dnested2.C3 class CI2; variable
8 class CO<T>::CI1::CI2 {};
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstantFold.cpp1008 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) { in ConstantFoldBinaryInstruction() local
1011 if (CI2->isZero()) return C1; // X + 0 == X in ConstantFoldBinaryInstruction()
1014 if (CI2->isZero()) return C1; // X - 0 == X in ConstantFoldBinaryInstruction()
1017 if (CI2->isZero()) return C2; // X * 0 == 0 in ConstantFoldBinaryInstruction()
1018 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1023 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1025 if (CI2->isZero()) in ConstantFoldBinaryInstruction()
1026 return PoisonValue::get(CI2->getType()); // X / 0 == poison in ConstantFoldBinaryInstruction()
1030 if (CI2->isOne()) in ConstantFoldBinaryInstruction()
1031 return Constant::getNullValue(CI2->getType()); // X % 1 == 0 in ConstantFoldBinaryInstruction()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp90 const ConstantInt *CI2 = cast<const ConstantInt>(C2.High); in operator ()() local
91 return CI1->getValue().slt(CI2->getValue()); in operator ()()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp5824 CallInst *CI2 = dyn_cast<CallInst>(V); in buildTree_rec() local
5825 if (!CI2 || CI2->getCalledFunction() != F || in buildTree_rec()
5826 getVectorIntrinsicIDForCall(CI2, TLI) != ID || in buildTree_rec()
5828 VecFunc != VFDatabase(*CI2).getVectorizedFunction(Shape)) || in buildTree_rec()
5829 !CI->hasIdenticalOperandBundleSchema(*CI2)) { in buildTree_rec()
5841 Value *A1J = CI2->getArgOperand(j); in buildTree_rec()
5857 CI2->op_begin() + CI2->getBundleOperandsStartIndex())) { in buildTree_rec()
5878 auto *CI2 = cast<CallInst>(V); in buildTree_rec() local
5879 Operands.push_back(CI2->getArgOperand(i)); in buildTree_rec()
13383 auto *CI2 = cast<CmpInst>(V2); in compareCmp() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h347 const CastInst *CI2);
H A DInstCombineCasts.cpp266 const CastInst *CI2) { in isEliminableCastPair() argument
269 Type *DstTy = CI2->getDestTy(); in isEliminableCastPair()
272 Instruction::CastOps secondOp = CI2->getOpcode(); in isEliminableCastPair()
H A DInstCombineCompares.cpp1130 ConstantInt *CI2, ConstantInt *CI1, in processUGT_ADDCST_ADD() argument
1144 if (!CI2->getValue().isPowerOf2()) in processUGT_ADDCST_ADD()
1146 unsigned NewWidth = CI2->getValue().countTrailingZeros(); in processUGT_ADDCST_ADD()
1321 ConstantInt *CI, *CI2; // I = icmp ugt (add (add A, B), CI2), CI in foldICmpWithConstant() local
1323 match(Op0, m_Add(m_Add(m_Value(A), m_Value(B)), m_ConstantInt(CI2)))) in foldICmpWithConstant()
1324 if (Instruction *Res = processUGT_ADDCST_ADD(Cmp, A, B, CI2, CI, *this)) in foldICmpWithConstant()