Home
last modified time | relevance | path

Searched refs:ProfileFile (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c281 static FILE *ProfileFile = NULL; variable
363 if (fseek(ProfileFile, 0L, SEEK_END) == -1) { in getProfileFileSizeForMerging()
368 *ProfileFileSize = ftell(ProfileFile); in getProfileFileSizeForMerging()
371 if (fseek(ProfileFile, 0L, SEEK_SET) == -1) { in getProfileFileSizeForMerging()
441 (void)COMPILER_RT_FTRUNCATE(ProfileFile, in doProfileMerging()
469 FILE *ProfileFile = getProfileFile(); in openFileForMerging() local
475 lprofLockFileHandle(ProfileFile); in openFileForMerging()
477 if (!ProfileFile) { in openFileForMerging()
481 if (!ProfileFile) in openFileForMerging()
489 fclose(ProfileFile); in openFileForMerging()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DPGOOptions.cpp14 PGOOptions::PGOOptions(std::string ProfileFile, std::string CSProfileGenFile, in PGOOptions() argument
20 : ProfileFile(ProfileFile), CSProfileGenFile(CSProfileGenFile), in PGOOptions()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DPGOOptions.h30 PGOOptions(std::string ProfileFile, std::string CSProfileGenFile,
41 std::string ProfileFile; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilderPipelines.cpp777 std::string ProfileFile, in addPGOInstrPasses() argument
807 if (!ProfileFile.empty()) in addPGOInstrPasses()
808 Options.InstrProfileOutput = ProfileFile; in addPGOInstrPasses()
818 bool AtomicCounterUpdate, std::string ProfileFile, in addPGOInstrPassesForO0() argument
834 if (!ProfileFile.empty()) in addPGOInstrPassesForO0()
835 Options.InstrProfileOutput = ProfileFile; in addPGOInstrPassesForO0()
1051 MPM.addPass(SampleProfileLoaderPass(PGOOpt->ProfileFile, in buildModuleSimplificationPipeline()
1124 PGOOpt->ProfileFile, PGOOpt->ProfileRemappingFile, in buildModuleSimplificationPipeline()
1349 PGOOpt->ProfileFile, PGOOpt->ProfileRemappingFile, in buildModuleOptimizationPipeline()
1701 MPM.addPass(SampleProfileLoaderPass(PGOOpt->ProfileFile, in buildLTODefaultPipeline()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetPassConfig.cpp335 return PGOOpt->ProfileFile; in getFSProfileFile()
1122 const std::string ProfileFile = getFSProfileFile(TM); in addMachinePasses() local
1123 if (!ProfileFile.empty() && !DisableRAFSProfileLoader) in addMachinePasses()
1124 addPass(createMIRProfileLoaderPass(ProfileFile, getFSRemappingFile(TM), in addMachinePasses()
1237 const std::string ProfileFile = getFSProfileFile(TM); in addMachinePasses() local
1238 if (!ProfileFile.empty()) { in addMachinePasses()
1241 ProfileFile, getFSRemappingFile(TM), in addMachinePasses()
1513 const std::string ProfileFile = getFSProfileFile(TM); in addBlockPlacement() local
1514 if (!ProfileFile.empty() && !DisableLayoutFSProfileLoader) in addBlockPlacement()
1515 addPass(createMIRProfileLoaderPass(ProfileFile, getFSRemappingFile(TM), in addBlockPlacement()
/freebsd-14.2/contrib/llvm-project/llvm/tools/opt/
H A DNewPMDriver.cpp177 static cl::opt<std::string> ProfileFile("profile-file", variable
342 P = PGOOptions(ProfileFile, "", "", MemoryProfileFile, FS, in runPassPipeline()
346 P = PGOOptions(ProfileFile, "", ProfileRemappingFile, MemoryProfileFile, FS, in runPassPipeline()
350 P = PGOOptions(ProfileFile, "", ProfileRemappingFile, MemoryProfileFile, FS, in runPassPipeline()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h590 std::string ProfileFile,
669 bool AtomicCounterUpdate, std::string ProfileFile,
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePassRegistry.def181 (File, ProfileFile, P, FS))