LLVM 23.0.0git
COFF.h
Go to the documentation of this file.
1//===------- COFF.h - Generic JIT link function for COFF ------*- C++ -*-===//
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// Generic jit-link functions for COFF.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_EXECUTIONENGINE_JITLINK_COFF_H
14#define LLVM_EXECUTIONENGINE_JITLINK_COFF_H
15
17
18namespace llvm {
19namespace jitlink {
20
21/// Create a LinkGraph from an COFF relocatable object.
22///
23/// Note: The graph does not take ownership of the underlying buffer, nor copy
24/// its contents. The caller is responsible for ensuring that the object buffer
25/// outlives the graph.
26Expected<std::unique_ptr<LinkGraph>>
27createLinkGraphFromCOFFObject(MemoryBufferRef ObjectBuffer,
28 std::shared_ptr<orc::SymbolStringPool> SSP);
29
30/// Link the given graph.
31///
32/// Uses conservative defaults for GOT and stub handling based on the target
33/// platform.
34void link_COFF(std::unique_ptr<LinkGraph> G,
35 std::unique_ptr<JITLinkContext> Ctx);
36
37/// GetImageBaseSymbol is a function object that finds the __ImageBase symbol
38/// in the given graph if one is present.
39///
40/// The result is cached across calls, and can be reset by calling the reset
41/// method.
43public:
44 GetImageBaseSymbol(StringRef ImageBaseName = "__ImageBase")
45 : ImageBaseName(ImageBaseName) {}
47 void reset(std::optional<Symbol *> CacheValue = std::nullopt) {
48 ImageBase = CacheValue;
49 }
50
51private:
52 StringRef ImageBaseName;
53 std::optional<Symbol *> ImageBase;
54};
55
56} // end namespace jitlink
57} // end namespace llvm
58
59#endif // LLVM_EXECUTIONENGINE_JITLINK_COFF_H
#define G(x, y, z)
Definition MD5.cpp:55
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
This is an optimization pass for GlobalISel generic memory operations.