Home | History | Annotate | Download | only in Utils

Lines Matching refs:Cos

951   if (UnsafeFPShrink && Name == "cos" && hasFloatVersion(Name))
954 // cos(-x) -> cos(x)
958 return B.CreateCall(Callee, BinExpr->getOperand(1), "cos");
1355 bool UseFloat, Value *&Sin, Value *&Cos,
1395 Cos = B.CreateExtractValue(SinCos, 1, "cospi");
1399 Cos = B.CreateExtractElement(SinCos, ConstantInt::get(B.getInt32Ty(), 1),
1428 Value *Sin, *Cos, *SinCos;
1429 insertSinCosCall(B, CI->getCalledFunction(), Arg, IsFloat, Sin, Cos, SinCos);
1432 replaceTrigInsts(CosCalls, Cos);
2017 case LibFunc::cos: