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

/external/llvm/lib/IR/
H A DConstantFold.cpp1102 const APInt &C1V = CI1->getValue(); local
1108 return ConstantInt::get(CI1->getContext(), C1V + C2V);
1110 return ConstantInt::get(CI1->getContext(), C1V - C2V);
1112 return ConstantInt::get(CI1->getContext(), C1V * C2V);
1115 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1118 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1120 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1123 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1126 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1128 return ConstantInt::get(CI1->getContext(), C1V
1165 APFloat C1V = CFP1->getValueAPF(); local
1742 APFloat C1V = cast<ConstantFP>(C1)->getValueAPF(); local
[all...]

Completed in 62 milliseconds