Lines Matching defs:PrivAI

659   AllocaInst *PrivAI = nullptr;
669 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
670 Builder.CreateStore(F->arg_begin(), PrivAI);
674 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
727 Function *OutlinedFn = PrivAI->getFunction();
743 EXPECT_EQ(&OutlinedFn->getEntryBlock(), PrivAI->getParent());
772 AllocaInst *PrivAI = nullptr;
782 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
783 Builder.CreateStore(F->arg_begin(), PrivAI);
787 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
840 EXPECT_NE(PrivAI, nullptr);
841 Function *OutlinedFn = PrivAI->getFunction();
851 EXPECT_EQ(&OutlinedFn->getEntryBlock(), PrivAI->getParent());
1102 AllocaInst *PrivAI = nullptr;
1112 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
1113 Builder.CreateStore(F->arg_begin(), PrivAI);
1117 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
1172 EXPECT_NE(PrivAI, nullptr);
1173 Function *OutlinedFn = PrivAI->getFunction();
1180 EXPECT_EQ(&OutlinedFn->getEntryBlock(), PrivAI->getParent());
2869 AllocaInst *PrivAI = nullptr;
2879 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
2880 Builder.CreateStore(F->arg_begin(), PrivAI);
2894 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
2950 AllocaInst *PrivAI = nullptr;
2960 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
2961 Builder.CreateStore(F->arg_begin(), PrivAI);
2975 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
3032 AllocaInst *PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
3042 Builder.CreateStore(F->arg_begin(), PrivAI);
3044 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
3282 AllocaInst *PrivAI =
3291 Builder.CreateStore(F->arg_begin(), PrivAI);
3293 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
3356 AllocaInst *PrivAI =
3365 Builder.CreateStore(F->arg_begin(), PrivAI);
3367 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
3461 AllocaInst *PrivAI = nullptr;
3471 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
3472 Builder.CreateStore(F->arg_begin(), PrivAI);
3486 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
3554 AllocaInst *PrivAI = nullptr;
3564 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
3565 Builder.CreateStore(F->arg_begin(), PrivAI);
3579 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
3667 AllocaInst *PrivAI = nullptr;
3685 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
3686 Builder.CreateStore(F->arg_begin(), PrivAI);
3700 Builder.CreateLoad(PrivAI->getAllocatedType(), PrivAI, "local.use");
3735 // load PrivAI
3738 EXPECT_EQ(PrivLI->getPointerOperand(), PrivAI);
5589 AllocaInst *PrivAI = nullptr;
5594 PrivAI = Builder.CreateAlloca(F->arg_begin()->getType());
5607 Builder.CreateStore(F->arg_begin(), PrivAI);
5609 Builder.CreateLoad(F->arg_begin()->getType(), PrivAI, "local.alloca");
5637 EXPECT_NE(PrivAI, nullptr);
5638 Function *OutlinedFn = PrivAI->getFunction();