Lines Matching defs:VDouble
269 Value *VDouble;
277 VDouble = Builder.CreateLoad(GVDouble->getValueType(), GVDouble);
310 VInt = Builder.CreateFPToUI(VDouble, Builder.getInt32Ty());
315 VInt = Builder.CreateFPToSI(VDouble, Builder.getInt32Ty());
320 VDouble = Builder.CreateUIToFP(VInt, Builder.getDoubleTy());
321 ASSERT_TRUE(isa<IntrinsicInst>(VDouble));
322 II = cast<IntrinsicInst>(VDouble);
325 VDouble = Builder.CreateSIToFP(VInt, Builder.getDoubleTy());
326 ASSERT_TRUE(isa<IntrinsicInst>(VDouble));
327 II = cast<IntrinsicInst>(VDouble);
330 V = Builder.CreateFPTrunc(VDouble, Type::getFloatTy(Ctx));
335 VDouble = Builder.CreateFPExt(V, Type::getDoubleTy(Ctx));
336 ASSERT_TRUE(isa<IntrinsicInst>(VDouble));
337 II = cast<IntrinsicInst>(VDouble);
408 Value *VDouble;
412 VDouble = Builder.CreateLoad(GVDouble->getValueType(), GVDouble);
419 V = Builder.CreateConstrainedFPCall(Fn, { VDouble });