1 //===- bolt/RuntimeLibs/HugifyRuntimeLibrary.cpp - Hugify RT Library ------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the HugifyRuntimeLibrary class.
11 //===----------------------------------------------------------------------===//
13 #include "bolt/RuntimeLibs/HugifyRuntimeLibrary.h"
14 #include "bolt/Core/BinaryContext.h"
15 #include "bolt/Core/Linker.h"
16 #include "llvm/MC/MCStreamer.h"
17 #include "llvm/Support/CommandLine.h"
24 extern cl::OptionCategory BoltOptCategory
;
26 extern cl::opt
<bool> HotText
;
30 cl::desc("Automatically put hot code on 2MB page(s) (hugify) at "
31 "runtime. No manual call to hugify is needed in the binary "
32 "(which is what --hot-text relies on)."),
33 cl::cat(BoltOptCategory
));
35 static cl::opt
<std::string
>
36 RuntimeHugifyLib("runtime-hugify-lib",
37 cl::desc("specify path of the runtime hugify library"),
38 cl::init("libbolt_rt_hugify.a"), cl::cat(BoltOptCategory
));
42 void HugifyRuntimeLibrary::adjustCommandLineOptions(
43 const BinaryContext
&BC
) const {
46 << "BOLT-ERROR: -hot-text should be applied to binaries with "
47 "pre-compiled manual hugify support, while -hugify will add hugify "
48 "support automatically. These two options cannot both be present.\n";
51 // After the check, we set HotText to be true because automated hugify support
54 if (!BC
.StartFunctionAddress
) {
55 errs() << "BOLT-ERROR: hugify runtime libraries require a known entry "
62 void HugifyRuntimeLibrary::link(BinaryContext
&BC
, StringRef ToolPath
,
64 BOLTLinker::SectionsMapper MapSections
) {
66 std::string LibPath
= getLibPath(ToolPath
, opts::RuntimeHugifyLib
);
67 loadLibrary(LibPath
, Linker
, MapSections
);
69 assert(!RuntimeStartAddress
&&
70 "We don't currently support linking multiple runtime libraries");
71 RuntimeStartAddress
= Linker
.lookupSymbol("__bolt_hugify_self").value_or(0);
72 if (!RuntimeStartAddress
) {
73 errs() << "BOLT-ERROR: hugify library does not define __bolt_hugify_self: "