Lines Matching defs:nval

859       Constant *nval;
865 nval = ConstantDataVector::get(context, tmp);
868 nval = ConstantDataVector::get(context, tmp);
870 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> " << *nval << "\n");
871 replaceCall(CI, nval);
879 Value *nval = ConstantFP::get(CF->getType(), tr[i].result);
880 LLVM_DEBUG(errs() << "AMDIC: " << *CI << " ---> " << *nval << "\n");
881 replaceCall(CI, nval);
941 Value *nval = B.CreateFMul(opr0, opr0, "__pow2");
942 replaceCall(FPOp, nval);
952 Value *nval = B.CreateFDiv(cnval, opr0, "__powrecip");
953 replaceCall(FPOp, nval);
966 Value *nval = CreateCallEx(B,FPExpr, opr0, issqrt ? "__pow2sqrt"
968 replaceCall(FPOp, nval);
995 Value *nval;
1001 nval = cnval;
1004 nval = nullptr;
1008 nval = nval ? B.CreateFMul(nval, valx2, "__powprod") : valx2;
1019 nval = B.CreateFDiv(cnval, nval, "__1powprod");
1024 replaceCall(FPOp, nval);
1101 Value *nval;
1103 nval = B.CreateUnaryIntrinsic(Intrinsic::fabs, opr0, nullptr, "__fabs");
1105 nval = cnval ? cnval : opr0;
1118 nval = CreateCallEx(B,LogExpr, nval, "__log2");
1123 opr1 = B.CreateSIToFP(opr1, nval->getType(), "pownI2F");
1125 nval = B.CreateFMul(opr1, nval, "__ylogx");
1126 nval = CreateCallEx(B,ExpExpr, nval, "__exp2");
1140 nval = B.CreateOr(B.CreateBitCast(nval, nTy), sign);
1141 nval = B.CreateBitCast(nval, opr0->getType());
1146 replaceCall(FPOp, nval);
1200 Value *nval = CreateCallEx(B,FPExpr, opr0, "__rootn2cbrt");
1201 replaceCall(FPOp, nval);
1206 Value *nval = B.CreateFDiv(ConstantFP::get(opr0->getType(), 1.0),
1209 replaceCall(FPOp, nval);