Searched refs:C1V (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp1295 const APInt &C1V = CI1->getValue(); local
1301 return ConstantInt::get(CI1->getContext(), C1V + C2V);
1303 return ConstantInt::get(CI1->getContext(), C1V - C2V);
1305 return ConstantInt::get(CI1->getContext(), C1V * C2V);
1308 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1311 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1313 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1316 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1319 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1321 return ConstantInt::get(CI1->getContext(), C1V
1358 const APFloat &C1V = CFP1->getValueAPF(); local
1968 const APFloat &C1V = cast<ConstantFP>(C1)->getValueAPF(); local
[all...]

Completed in 116 milliseconds