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

/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp1041 const APInt &C2V = CI2->getValue(); local
1046 return ConstantInt::get(CI1->getContext(), C1V + C2V);
1048 return ConstantInt::get(CI1->getContext(), C1V - C2V);
1050 return ConstantInt::get(CI1->getContext(), C1V * C2V);
1053 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1056 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1058 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1061 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1064 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1066 return ConstantInt::get(CI1->getContext(), C1V.srem(C2V));
1113 APFloat C2V = CFP2->getValueAPF(); local
1652 APFloat C2V = cast<ConstantFP>(C2)->getValueAPF(); local
[all...]

Completed in 129 milliseconds