LLVM 19.0.0git
COFF_x86_64.cpp
Go to the documentation of this file.
1//===----- COFF_x86_64.cpp - JIT linker implementation for COFF/x86_64 ----===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// COFF/x86_64 jit-link implementation.
10//
11//===----------------------------------------------------------------------===//
12
15#include "JITLinkGeneric.h"
16#include "SEHFrameSupport.h"
19#include "llvm/Object/COFF.h"
20#include "llvm/Support/Endian.h"
21
22#define DEBUG_TYPE "jitlink"
23
24using namespace llvm;
25using namespace llvm::jitlink;
26
27namespace {
28
29enum EdgeKind_coff_x86_64 : Edge::Kind {
31 Pointer32NB,
32 Pointer64,
33 SectionIdx16,
34 SecRel32,
35};
36
37class COFFJITLinker_x86_64 : public JITLinker<COFFJITLinker_x86_64> {
38 friend class JITLinker<COFFJITLinker_x86_64>;
39
40public:
41 COFFJITLinker_x86_64(std::unique_ptr<JITLinkContext> Ctx,
42 std::unique_ptr<LinkGraph> G,
43 PassConfiguration PassConfig)
44 : JITLinker(std::move(Ctx), std::move(G), std::move(PassConfig)) {}
45
46private:
47 Error applyFixup(LinkGraph &G, Block &B, const Edge &E) const {
48 return x86_64::applyFixup(G, B, E, nullptr);
49 }
50};
51
52class COFFLinkGraphBuilder_x86_64 : public COFFLinkGraphBuilder {
53private:
54 Error addRelocations() override {
55 LLVM_DEBUG(dbgs() << "Processing relocations:\n");
56
57 for (const auto &RelSect : sections())
59 RelSect, this, &COFFLinkGraphBuilder_x86_64::addSingleRelocation))
60 return Err;
61
62 return Error::success();
63 }
64
65 Error addSingleRelocation(const object::RelocationRef &Rel,
66 const object::SectionRef &FixupSect,
67 Block &BlockToFix) {
69 auto SymbolIt = Rel.getSymbol();
70 if (SymbolIt == getObject().symbol_end()) {
71 return make_error<StringError>(
72 formatv("Invalid symbol index in relocation entry. "
73 "index: {0}, section: {1}",
74 COFFRel->SymbolTableIndex, FixupSect.getIndex()),
76 }
77
78 object::COFFSymbolRef COFFSymbol = getObject().getCOFFSymbol(*SymbolIt);
79 COFFSymbolIndex SymIndex = getObject().getSymbolIndex(COFFSymbol);
80
81 Symbol *GraphSymbol = getGraphSymbol(SymIndex);
82 if (!GraphSymbol)
83 return make_error<StringError>(
84 formatv("Could not find symbol at given index, did you add it to "
85 "JITSymbolTable? index: {0}, section: {1}",
86 SymIndex, FixupSect.getIndex()),
88
89 int64_t Addend = 0;
90 orc::ExecutorAddr FixupAddress =
91 orc::ExecutorAddr(FixupSect.getAddress()) + Rel.getOffset();
92 Edge::OffsetT Offset = FixupAddress - BlockToFix.getAddress();
93
95 const char *FixupPtr = BlockToFix.getContent().data() + Offset;
96
97 switch (Rel.getType()) {
99 Kind = EdgeKind_coff_x86_64::Pointer32NB;
100 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
101 break;
102 }
104 Kind = EdgeKind_coff_x86_64::PCRel32;
105 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
106 break;
107 }
109 Kind = EdgeKind_coff_x86_64::PCRel32;
110 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
111 Addend -= 1;
112 break;
113 }
115 Kind = EdgeKind_coff_x86_64::PCRel32;
116 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
117 Addend -= 2;
118 break;
119 }
121 Kind = EdgeKind_coff_x86_64::PCRel32;
122 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
123 Addend -= 3;
124 break;
125 }
127 Kind = EdgeKind_coff_x86_64::PCRel32;
128 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
129 Addend -= 4;
130 break;
131 }
133 Kind = EdgeKind_coff_x86_64::PCRel32;
134 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
135 Addend -= 5;
136 break;
137 }
139 Kind = EdgeKind_coff_x86_64::Pointer64;
140 Addend = *reinterpret_cast<const support::little64_t *>(FixupPtr);
141 break;
142 }
144 Kind = EdgeKind_coff_x86_64::SectionIdx16;
145 Addend = *reinterpret_cast<const support::little16_t *>(FixupPtr);
146 uint64_t SectionIdx = 0;
147 if (COFFSymbol.isAbsolute())
148 SectionIdx = getObject().getNumberOfSections() + 1;
149 else
150 SectionIdx = COFFSymbol.getSectionNumber();
151 auto *AbsSym = &getGraph().addAbsoluteSymbol(
152 "secidx", orc::ExecutorAddr(SectionIdx), 2, Linkage::Strong,
153 Scope::Local, false);
154 GraphSymbol = AbsSym;
155 break;
156 }
158 // FIXME: SECREL to external symbol should be handled
159 if (!GraphSymbol->isDefined())
160 return Error::success();
161 Kind = EdgeKind_coff_x86_64::SecRel32;
162 Addend = *reinterpret_cast<const support::little32_t *>(FixupPtr);
163 break;
164 }
165 default: {
166 return make_error<JITLinkError>("Unsupported x86_64 relocation:" +
167 formatv("{0:d}", Rel.getType()));
168 }
169 };
170
171 Edge GE(Kind, Offset, *GraphSymbol, Addend);
172 LLVM_DEBUG({
173 dbgs() << " ";
174 printEdge(dbgs(), BlockToFix, GE, getCOFFX86RelocationKindName(Kind));
175 dbgs() << "\n";
176 });
177
178 BlockToFix.addEdge(std::move(GE));
179
180 return Error::success();
181 }
182
183public:
184 COFFLinkGraphBuilder_x86_64(const object::COFFObjectFile &Obj, const Triple T,
185 const SubtargetFeatures Features)
186 : COFFLinkGraphBuilder(Obj, std::move(T), std::move(Features),
188};
189
190class COFFLinkGraphLowering_x86_64 {
191public:
192 // Lowers COFF x86_64 specific edges to generic x86_64 edges.
193 Error lowerCOFFRelocationEdges(LinkGraph &G, JITLinkContext &Ctx) {
194 for (auto *B : G.blocks()) {
195 for (auto &E : B->edges()) {
196 switch (E.getKind()) {
197 case EdgeKind_coff_x86_64::Pointer32NB: {
198 auto ImageBase = getImageBaseAddress(G, Ctx);
199 if (!ImageBase)
200 return ImageBase.takeError();
201 E.setAddend(E.getAddend() - ImageBase->getValue());
202 E.setKind(x86_64::Pointer32);
203 break;
204 }
205 case EdgeKind_coff_x86_64::PCRel32: {
206 E.setKind(x86_64::PCRel32);
207 break;
208 }
209 case EdgeKind_coff_x86_64::Pointer64: {
210 E.setKind(x86_64::Pointer64);
211 break;
212 }
213 case EdgeKind_coff_x86_64::SectionIdx16: {
214 E.setKind(x86_64::Pointer16);
215 break;
216 }
217 case EdgeKind_coff_x86_64::SecRel32: {
218 E.setAddend(E.getAddend() -
219 getSectionStart(E.getTarget().getBlock().getSection())
220 .getValue());
221 E.setKind(x86_64::Pointer32);
222 break;
223 }
224 default:
225 break;
226 }
227 }
228 }
229 return Error::success();
230 }
231
232private:
233 static StringRef getImageBaseSymbolName() { return "__ImageBase"; }
234
235 orc::ExecutorAddr getSectionStart(Section &Sec) {
236 if (!SectionStartCache.count(&Sec)) {
237 SectionRange Range(Sec);
238 SectionStartCache[&Sec] = Range.getStart();
239 }
240 return SectionStartCache[&Sec];
241 }
242
243 Expected<orc::ExecutorAddr> getImageBaseAddress(LinkGraph &G,
244 JITLinkContext &Ctx) {
245 if (this->ImageBase)
246 return this->ImageBase;
247 for (auto *S : G.defined_symbols())
248 if (S->getName() == getImageBaseSymbolName()) {
249 this->ImageBase = S->getAddress();
250 return this->ImageBase;
251 }
252
254 Symbols[getImageBaseSymbolName()] = SymbolLookupFlags::RequiredSymbol;
255 orc::ExecutorAddr ImageBase;
256 Error Err = Error::success();
257 Ctx.lookup(Symbols,
259 ErrorAsOutParameter EAO(&Err);
260 if (!LR) {
261 Err = LR.takeError();
262 return;
263 }
264 ImageBase = LR->begin()->second.getAddress();
265 }));
266 if (Err)
267 return std::move(Err);
268 this->ImageBase = ImageBase;
269 return ImageBase;
270 }
271
273 orc::ExecutorAddr ImageBase;
274};
275
276Error lowerEdges_COFF_x86_64(LinkGraph &G, JITLinkContext *Ctx) {
277 LLVM_DEBUG(dbgs() << "Lowering COFF x86_64 edges:\n");
278 COFFLinkGraphLowering_x86_64 GraphLowering;
279
280 if (auto Err = GraphLowering.lowerCOFFRelocationEdges(G, *Ctx))
281 return Err;
282
283 return Error::success();
284}
285} // namespace
286
287namespace llvm {
288namespace jitlink {
289
290/// Return the string name of the given COFF x86_64 edge kind.
292 switch (R) {
293 case PCRel32:
294 return "PCRel32";
295 case Pointer32NB:
296 return "Pointer32NB";
297 case Pointer64:
298 return "Pointer64";
299 case SectionIdx16:
300 return "SectionIdx16";
301 case SecRel32:
302 return "SecRel32";
303 default:
304 return x86_64::getEdgeKindName(R);
305 }
306}
307
310 LLVM_DEBUG({
311 dbgs() << "Building jitlink graph for new input "
312 << ObjectBuffer.getBufferIdentifier() << "...\n";
313 });
314
315 auto COFFObj = object::ObjectFile::createCOFFObjectFile(ObjectBuffer);
316 if (!COFFObj)
317 return COFFObj.takeError();
318
319 auto Features = (*COFFObj)->getFeatures();
320 if (!Features)
321 return Features.takeError();
322
323 return COFFLinkGraphBuilder_x86_64(**COFFObj, (*COFFObj)->makeTriple(),
324 std::move(*Features))
325 .buildGraph();
326}
327
328void link_COFF_x86_64(std::unique_ptr<LinkGraph> G,
329 std::unique_ptr<JITLinkContext> Ctx) {
331 const Triple &TT = G->getTargetTriple();
332 if (Ctx->shouldAddDefaultTargetPasses(TT)) {
333 // Add a mark-live pass.
334 if (auto MarkLive = Ctx->getMarkLivePass(TT)) {
335 Config.PrePrunePasses.push_back(std::move(MarkLive));
336 Config.PrePrunePasses.push_back(SEHFrameKeepAlivePass(".pdata"));
337 } else
338 Config.PrePrunePasses.push_back(markAllSymbolsLive);
339
340 // Add COFF edge lowering passes.
341 JITLinkContext *CtxPtr = Ctx.get();
342 Config.PreFixupPasses.push_back(
343 [CtxPtr](LinkGraph &G) { return lowerEdges_COFF_x86_64(G, CtxPtr); });
344 }
345
346 if (auto Err = Ctx->modifyPassConfig(*G, Config))
347 return Ctx->notifyFailed(std::move(Err));
348
349 COFFJITLinker_x86_64::link(std::move(Ctx), std::move(G), std::move(Config));
350}
351
352} // namespace jitlink
353} // namespace llvm
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define LLVM_DEBUG(X)
Definition: Debug.h:101
RelaxConfig Config
Definition: ELF_riscv.cpp:506
#define G(x, y, z)
Definition: MD5.cpp:56
const T * data() const
Definition: ArrayRef.h:162
Helper for Errors used as out-parameters.
Definition: Error.h:1102
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
static ErrorSuccess success()
Create a success value.
Definition: Error.h:334
Tagged union holding either a T or a Error.
Definition: Error.h:474
Error takeError()
Take ownership of the stored error.
Definition: Error.h:601
StringRef getBufferIdentifier() const
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Manages the enabling and disabling of subtarget specific features.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
const coff_relocation * getCOFFRelocation(const RelocationRef &Reloc) const
uint32_t getNumberOfSections() const
Definition: COFF.h:941
uint32_t getSymbolIndex(COFFSymbolRef Symbol) const
COFFSymbolRef getCOFFSymbol(const DataRefImpl &Ref) const
bool isAbsolute() const
Definition: COFF.h:373
int32_t getSectionNumber() const
Definition: COFF.h:322
static Expected< std::unique_ptr< COFFObjectFile > > createCOFFObjectFile(MemoryBufferRef Object)
This is a value type class that represents a single relocation in the list of relocations in the obje...
Definition: ObjectFile.h:52
uint64_t getType() const
Definition: ObjectFile.h:627
uint64_t getOffset() const
Definition: ObjectFile.h:619
symbol_iterator getSymbol() const
Definition: ObjectFile.h:623
This is a value type class that represents a single section in the list of sections in the object fil...
Definition: ObjectFile.h:81
uint64_t getIndex() const
Definition: ObjectFile.h:524
uint64_t getAddress() const
Definition: ObjectFile.h:520
Represents an address in the executor process.
@ IMAGE_REL_AMD64_REL32
Definition: COFF.h:364
@ IMAGE_REL_AMD64_REL32_5
Definition: COFF.h:369
@ IMAGE_REL_AMD64_ADDR64
Definition: COFF.h:361
@ IMAGE_REL_AMD64_REL32_3
Definition: COFF.h:367
@ IMAGE_REL_AMD64_ADDR32NB
Definition: COFF.h:363
@ IMAGE_REL_AMD64_SECTION
Definition: COFF.h:370
@ IMAGE_REL_AMD64_REL32_2
Definition: COFF.h:366
@ IMAGE_REL_AMD64_REL32_1
Definition: COFF.h:365
@ IMAGE_REL_AMD64_SECREL
Definition: COFF.h:371
@ IMAGE_REL_AMD64_REL32_4
Definition: COFF.h:368
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Definition: Error.cpp:90
auto formatv(const char *Fmt, Ts &&...Vals) -> formatv_object< decltype(std::make_tuple(support::detail::build_format_adapter(std::forward< Ts >(Vals))...))>
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
support::ulittle32_t SymbolTableIndex
Definition: COFF.h:476