Lines Matching refs:LinkSectionsFile
76 LinkSectionsFile("generate-link-sections", variable
397 std::unique_ptr<std::ofstream> LinkSectionsFile; in runOnFunctions() local
398 if (!opts::LinkSectionsFile.empty()) { in runOnFunctions()
399 LinkSectionsFile = in runOnFunctions()
400 std::make_unique<std::ofstream>(opts::LinkSectionsFile, std::ios::out); in runOnFunctions()
401 if (!LinkSectionsFile) { in runOnFunctions()
402 errs() << "BOLT-ERROR: link sections file " << opts::LinkSectionsFile in runOnFunctions()
408 if (FuncsFile || LinkSectionsFile) { in runOnFunctions()
436 if (LinkSectionsFile) { in runOnFunctions()
448 *LinkSectionsFile << Indent << ".text." << Name.str() << '\n'; in runOnFunctions()
460 if (LinkSectionsFile) { in runOnFunctions()
461 LinkSectionsFile->close(); in runOnFunctions()
463 << opts::LinkSectionsFile << '\n'; in runOnFunctions()