Lines Matching defs:NewF
1305 Function *NewF = Function::Create(NewFT, NewFLink, F->getAddressSpace(),
1307 NewF->copyAttributesFrom(F);
1308 NewF->removeRetAttrs(AttributeFuncs::typeIncompatible(
1309 NewFT->getReturnType(), NewF->getAttributes().getRetAttrs()));
1311 BasicBlock *BB = BasicBlock::Create(*Ctx, "entry", NewF);
1313 NewF->removeFnAttr("split-stack");
1318 auto ArgIt = pointer_iterator<Argument *>(NewF->arg_begin());
1328 return NewF;
1579 Function *NewF =
1581 GA.replaceAllUsesWith(NewF);
1582 NewF->takeName(&GA);
1584 FnsToInstrument.push_back(NewF);
1621 Function *NewF = buildWrapperFunction(
1626 NewF->removeFnAttrs(ReadOnlyNoneAttrs);
1660 F.replaceUsesWithIf(NewF, IsNotCmpUse);
1662 UnwrappedFnMap[NewF] = &F;
1663 *FI = NewF;