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

/external/llvm/lib/IR/
H A DConstantFold.cpp1056 const APInt &C2V = CI2->getValue(); local
1061 return ConstantInt::get(CI1->getContext(), C1V + C2V);
1063 return ConstantInt::get(CI1->getContext(), C1V - C2V);
1065 return ConstantInt::get(CI1->getContext(), C1V * C2V);
1068 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1071 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1073 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1076 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1079 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1081 return ConstantInt::get(CI1->getContext(), C1V.srem(C2V));
1128 APFloat C2V = CFP2->getValueAPF(); local
1682 APFloat C2V = cast<ConstantFP>(C2)->getValueAPF(); local
[all...]

Completed in 71 milliseconds