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

/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp1108 const APInt &C1V = CI1->getValue(); local
1114 return ConstantInt::get(CI1->getContext(), C1V + C2V);
1116 return ConstantInt::get(CI1->getContext(), C1V - C2V);
1118 return ConstantInt::get(CI1->getContext(), C1V * C2V);
1121 return ConstantInt::get(CI1->getContext(), C1V.udiv(C2V));
1124 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1126 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
1129 return ConstantInt::get(CI1->getContext(), C1V.urem(C2V));
1132 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
1134 return ConstantInt::get(CI1->getContext(), C1V
1171 APFloat C1V = CFP1->getValueAPF(); local
1748 APFloat C1V = cast<ConstantFP>(C1)->getValueAPF(); local
[all...]

Completed in 54 milliseconds