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

/external/llvm/lib/VMCore/
H A DConstantFold.cpp1042 const APInt &C1V = CI1->getValue(); local
1048 return ConstantInt::get(CI1->getContext(), C1V + C2V);
1050 return ConstantInt::get(CI1->getContext(), C1V - C2V);
1052 return ConstantInt::get(CI1->getContext(), C1V * C2V);
1055 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1058 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1060 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1063 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1066 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1068 return ConstantInt::get(CI1->getContext(), C1V
1114 APFloat C1V = CFP1->getValueAPF(); local
1662 APFloat C1V = cast<ConstantFP>(C1)->getValueAPF(); local
[all...]

Completed in 193 milliseconds