Searched refs:ProfileFile (Results 1 – 6 of 6) sorted by relevance
/openbsd/gnu/llvm/compiler-rt/lib/profile/ |
H A D | InstrProfilingFile.c | 239 static FILE *ProfileFile = NULL; variable 321 if (fseek(ProfileFile, 0L, SEEK_END) == -1) { in getProfileFileSizeForMerging() 326 *ProfileFileSize = ftell(ProfileFile); in getProfileFileSizeForMerging() 399 (void)COMPILER_RT_FTRUNCATE(ProfileFile, in doProfileMerging() 427 FILE *ProfileFile = NULL; in openFileForMerging() local 430 ProfileFile = getProfileFile(); in openFileForMerging() 431 if (ProfileFile) { in openFileForMerging() 432 lprofLockFileHandle(ProfileFile); in openFileForMerging() 437 if (!ProfileFile) in openFileForMerging() 445 fclose(ProfileFile); in openFileForMerging() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/Support/ |
H A D | PGOOptions.h | 25 PGOOptions(std::string ProfileFile = "", std::string CSProfileGenFile = "", 30 : ProfileFile(ProfileFile), CSProfileGenFile(CSProfileGenFile), in ProfileFile() function 55 std::string ProfileFile; member
|
/openbsd/gnu/llvm/llvm/lib/Passes/ |
H A D | PassBuilderPipelines.cpp | 693 bool IsCS, std::string ProfileFile, in addPGOInstrPasses() argument 755 if (!ProfileFile.empty()) in addPGOInstrPasses() 756 Options.InstrProfileOutput = ProfileFile; in addPGOInstrPasses() 765 std::string ProfileFile, in addPGOInstrPassesForO0() argument 780 if (!ProfileFile.empty()) in addPGOInstrPassesForO0() 781 Options.InstrProfileOutput = ProfileFile; in addPGOInstrPassesForO0() 981 MPM.addPass(SampleProfileLoaderPass(PGOOpt->ProfileFile, in buildModuleSimplificationPipeline() 1054 /* IsCS */ false, PGOOpt->ProfileFile, in buildModuleSimplificationPipeline() 1272 /* IsCS */ true, PGOOpt->ProfileFile, in buildModuleOptimizationPipeline() 1598 MPM.addPass(SampleProfileLoaderPass(PGOOpt->ProfileFile, in buildLTODefaultPipeline() [all …]
|
/openbsd/gnu/llvm/llvm/tools/opt/ |
H A D | NewPMDriver.cpp | 176 static cl::opt<std::string> ProfileFile("profile-file", variable 339 P = PGOOptions(ProfileFile, "", "", PGOOptions::IRInstr); in runPassPipeline() 342 P = PGOOptions(ProfileFile, "", ProfileRemappingFile, PGOOptions::IRUse); in runPassPipeline() 345 P = PGOOptions(ProfileFile, "", ProfileRemappingFile, in runPassPipeline()
|
/openbsd/gnu/llvm/llvm/lib/CodeGen/ |
H A D | TargetPassConfig.cpp | 332 return PGOOpt->ProfileFile; in getFSProfileFile() 1152 const std::string ProfileFile = getFSProfileFile(TM); in addMachinePasses() local 1153 if (!ProfileFile.empty() && !DisableRAFSProfileLoader) in addMachinePasses() 1155 createMIRProfileLoaderPass(ProfileFile, getFSRemappingFile(TM), in addMachinePasses() 1528 const std::string ProfileFile = getFSProfileFile(TM); in addBlockPlacement() local 1529 if (!ProfileFile.empty() && !DisableLayoutFSProfileLoader) in addBlockPlacement() 1531 createMIRProfileLoaderPass(ProfileFile, getFSRemappingFile(TM), in addBlockPlacement()
|
/openbsd/gnu/llvm/llvm/include/llvm/Passes/ |
H A D | PassBuilder.h | 569 bool IsCS, std::string ProfileFile, 608 bool RunProfileGen, bool IsCS, std::string ProfileFile,
|