Home
last modified time | relevance | path

Searched refs:RecipOp (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp9440 std::string RecipOp(Base); in getRecipOp() local
9442 RecipOp += "d"; in getRecipOp()
9444 RecipOp += "f"; in getRecipOp()
9447 RecipOp = "vec-" + RecipOp; in getRecipOp()
9449 return RecipOp; in getRecipOp()
9464 std::string RecipOp = getRecipOp("sqrt", VT); in getRsqrtEstimate() local
9465 if (!Recips.isEnabled(RecipOp)) in getRsqrtEstimate()
9468 RefinementSteps = Recips.getRefinementSteps(RecipOp); in getRsqrtEstimate()
9486 std::string RecipOp = getRecipOp("div", VT); in getRecipEstimate() local
9487 if (!Recips.isEnabled(RecipOp)) in getRecipEstimate()
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp4569 std::string RecipOp; in getEstimate() local
4570 RecipOp = Opcode == (AArch64ISD::FRECPE) ? "div": "sqrt"; in getEstimate()
4571 RecipOp = ((VT.isVector()) ? "vec-": "") + RecipOp; in getEstimate()
4572 RecipOp += (VT.getScalarType() == MVT::f64) ? "d": "f"; in getEstimate()
4575 if (!Recips.isEnabled(RecipOp)) in getEstimate()
4578 ExtraSteps = Recips.getRefinementSteps(RecipOp); in getEstimate()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp14923 const char *RecipOp; in getRsqrtEstimate() local
14933 RecipOp = "sqrtf"; in getRsqrtEstimate()
14936 RecipOp = "vec-sqrtf"; in getRsqrtEstimate()
14941 if (!Recips.isEnabled(RecipOp)) in getRsqrtEstimate()
14944 RefinementSteps = Recips.getRefinementSteps(RecipOp); in getRsqrtEstimate()
14955 const char *RecipOp; in getRecipEstimate() local
14965 RecipOp = "divf"; in getRecipEstimate()
14968 RecipOp = "vec-divf"; in getRecipEstimate()
14973 if (!Recips.isEnabled(RecipOp)) in getRecipEstimate()
14976 RefinementSteps = Recips.getRefinementSteps(RecipOp); in getRecipEstimate()