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

/external/llvm/lib/VMCore/
H A DConstantFold.cpp1036 const APInt &C2V = CI2->getValue(); local
1041 return ConstantInt::get(CI1->getContext(), C1V + C2V);
1043 return ConstantInt::get(CI1->getContext(), C1V - C2V);
1045 return ConstantInt::get(CI1->getContext(), C1V * C2V);
1048 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1051 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1053 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1056 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1059 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1061 return ConstantInt::get(CI1->getContext(), C1V.srem(C2V));
1108 APFloat C2V = CFP2->getValueAPF(); local
1655 APFloat C2V = cast<ConstantFP>(C2)->getValueAPF(); local
[all...]

Completed in 84 milliseconds