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

/external/llvm/lib/VMCore/
H A DConstantFold.cpp1043 const APInt &C2V = CI2->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.srem(C2V));
1115 APFloat C2V = CFP2->getValueAPF(); local
1663 APFloat C2V = cast<ConstantFP>(C2)->getValueAPF(); local
[all...]

Completed in 107 milliseconds