Lines Matching refs:Arg0
585 auto *Arg0 = F->arg_begin(); in TEST() local
589 auto *I = cast<Instruction>(Builder.CreateFAdd(Arg0, Arg1)); in TEST()
596 Builder.CreateFPToSI(Arg0, Type::getInt32Ty(Context))); in TEST()
603 Intrinsic::ceil, {Type::getFloatTy(Context)}, {Arg0})); in TEST()
609 auto *I = cast<Instruction>(Builder.CreateFCmpOEQ(Arg0, Arg1)); in TEST()
622 Intrinsic::experimental_constrained_fadd, Arg0, Arg0)); in TEST()
803 auto *Arg0 = &*F->arg_begin(); in TEST_F() local
810 cast<Instruction>(B.CreateUDiv(Arg0, Arg0, "", /*isExact*/ true)); in TEST_F()
818 cast<Instruction>(B.CreateLShr(Arg0, Arg0, "", /*isExact*/ true)); in TEST_F()
826 B.CreateAdd(Arg0, Arg0, "", /*HasNUW*/ true, /*HasNSW*/ false)); in TEST_F()
835 B.CreateAdd(Arg0, Arg0, "", /*HasNUW*/ false, /*HasNSW*/ true)); in TEST_F()
844 B.CreateShl(Arg0, Arg0, "", /*HasNUW*/ true, /*HasNSW*/ true)); in TEST_F()
855 B.CreateInBoundsGEP(B.getInt8Ty(), GEPBase, Arg0)); in TEST_F()