Searched refs:CI1 (Results 1 – 7 of 7) sorted by relevance
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/ |
H A D | nested2.C | 2 class CI1 { 8 class CO<T>::CI1::CI2 {};
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 1128 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(C1)) { in ConstantFoldBinaryInstruction() local 1130 const APInt &C1V = CI1->getValue(); in ConstantFoldBinaryInstruction() 1136 return ConstantInt::get(CI1->getContext(), C1V + C2V); in ConstantFoldBinaryInstruction() 1138 return ConstantInt::get(CI1->getContext(), C1V - C2V); in ConstantFoldBinaryInstruction() 1140 return ConstantInt::get(CI1->getContext(), C1V * C2V); in ConstantFoldBinaryInstruction() 1143 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V)); in ConstantFoldBinaryInstruction() 1148 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V)); in ConstantFoldBinaryInstruction() 1158 return ConstantInt::get(CI1->getContext(), C1V & C2V); in ConstantFoldBinaryInstruction() 1160 return ConstantInt::get(CI1->getContext(), C1V | C2V); in ConstantFoldBinaryInstruction() 1162 return ConstantInt::get(CI1->getContext(), C1V ^ C2V); in ConstantFoldBinaryInstruction() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/ |
H A D | LowerSwitch.cpp | 89 const ConstantInt *CI1 = cast<const ConstantInt>(C1.Low); in operator ()() local 91 return CI1->getValue().slt(CI2->getValue()); in operator ()()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCasts.cpp | 265 InstCombinerImpl::isEliminableCastPair(const CastInst *CI1, in isEliminableCastPair() argument 267 Type *SrcTy = CI1->getSrcTy(); in isEliminableCastPair() 268 Type *MidTy = CI1->getDestTy(); in isEliminableCastPair() 271 Instruction::CastOps firstOp = CI1->getOpcode(); in isEliminableCastPair()
|
H A D | InstCombineInternal.h | 346 Instruction::CastOps isEliminableCastPair(const CastInst *CI1,
|
H A D | InstCombineCompares.cpp | 1130 ConstantInt *CI2, ConstantInt *CI1, in processUGT_ADDCST_ADD() argument 1154 if (CI1->getBitWidth() == NewWidth || in processUGT_ADDCST_ADD() 1155 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth)) in processUGT_ADDCST_ADD()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 13382 auto *CI1 = cast<CmpInst>(V); in compareCmp() local 13386 if (CI1->getOperand(0)->getType()->getTypeID() < in compareCmp() 13389 if (CI1->getOperand(0)->getType()->getTypeID() > in compareCmp() 13392 CmpInst::Predicate Pred1 = CI1->getPredicate(); in compareCmp() 13405 for (int I = 0, E = CI1->getNumOperands(); I < E; ++I) { in compareCmp() 13406 auto *Op1 = CI1->getOperand(LEPreds ? I : E - I - 1); in compareCmp()
|