Lines Matching defs:nval
861 Constant *nval;
867 nval = ConstantDataVector::get(context, tmp);
870 nval = ConstantDataVector::get(context, tmp);
872 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> " << *nval << "\n");
873 replaceCall(CI, nval);
881 Value *nval = ConstantFP::get(CF->getType(), tr[i].result);
882 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> " << *nval << "\n");
883 replaceCall(CI, nval);
943 Value *nval = B.CreateFMul(opr0, opr0, "__pow2");
944 replaceCall(FPOp, nval);
954 Value *nval = B.CreateFDiv(cnval, opr0, "__powrecip");
955 replaceCall(FPOp, nval);
968 Value *nval = CreateCallEx(B,FPExpr, opr0, issqrt ? "__pow2sqrt"
970 replaceCall(FPOp, nval);
997 Value *nval;
1003 nval = cnval;
1006 nval = nullptr;
1010 nval = nval ? B.CreateFMul(nval, valx2, "__powprod") : valx2;
1021 nval = B.CreateFDiv(cnval, nval, "__1powprod");
1026 replaceCall(FPOp, nval);
1102 Value *nval;
1104 nval = B.CreateUnaryIntrinsic(Intrinsic::fabs, opr0, nullptr, "__fabs");
1106 nval = cnval ? cnval : opr0;
1119 nval = CreateCallEx(B,LogExpr, nval, "__log2");
1124 opr1 = B.CreateSIToFP(opr1, nval->getType(), "pownI2F");
1126 nval = B.CreateFMul(opr1, nval, "__ylogx");
1127 nval = CreateCallEx(B,ExpExpr, nval, "__exp2");
1141 nval = B.CreateOr(B.CreateBitCast(nval, nTy), sign);
1142 nval = B.CreateBitCast(nval, opr0->getType());
1147 replaceCall(FPOp, nval);
1201 Value *nval = CreateCallEx(B,FPExpr, opr0, "__rootn2cbrt");
1202 replaceCall(FPOp, nval);
1207 Value *nval = B.CreateFDiv(ConstantFP::get(opr0->getType(), 1.0),
1210 replaceCall(FPOp, nval);