Lines Matching defs:LinkSectionsFile
81 static cl::opt<std::string> LinkSectionsFile(
462 std::unique_ptr<std::ofstream> LinkSectionsFile;
463 if (!opts::LinkSectionsFile.empty()) {
464 LinkSectionsFile =
465 std::make_unique<std::ofstream>(opts::LinkSectionsFile, std::ios::out);
466 if (!LinkSectionsFile) {
467 BC.errs() << "BOLT-ERROR: link sections file " << opts::LinkSectionsFile
473 if (FuncsFile || LinkSectionsFile) {
490 if (LinkSectionsFile) {
502 *LinkSectionsFile << Indent << ".text." << Name.str() << '\n';
514 if (LinkSectionsFile) {
515 LinkSectionsFile->close();
517 << opts::LinkSectionsFile << '\n';