Lines Matching refs:FTy

122   Function *createInternalFunction(FunctionType *FTy, StringRef Name,
659 FunctionType *FTy = FunctionType::get(Builder.getInt32Ty(), {}, false);
661 "__gcov_fork", FTy,
687 FunctionType *FTy = FunctionType::get(Builder.getVoidTy(), {}, false);
689 M->getOrInsertFunction("llvm_writeout_files", FTy);
696 FunctionCallee ResetF = M->getOrInsertFunction("llvm_reset_counters", FTy);
990 Function *GCOVProfiler::createInternalFunction(FunctionType *FTy,
994 FTy, GlobalValue::InternalLinkage, 0, Name, M);
1012 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1013 Function *F = createInternalFunction(FTy, "__llvm_gcov_init", "_ZTSFvvE");
1019 FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1020 auto *PFTy = PointerType::get(FTy, 0);
1021 FTy = FunctionType::get(Builder.getVoidTy(), {PFTy, PFTy}, false);
1025 FunctionCallee GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
1038 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
1039 return M->getOrInsertFunction("llvm_gcda_start_file", FTy,
1049 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
1050 return M->getOrInsertFunction("llvm_gcda_emit_function", FTy,
1059 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false);
1060 return M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy,
1065 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1066 return M->getOrInsertFunction("llvm_gcda_summary_info", FTy);
1070 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1071 return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
1320 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), false);
1323 ResetF = createInternalFunction(FTy, "__llvm_gcov_reset", "_ZTSFvvE");