LLVM 23.0.0git
ELF_hexagon.h
Go to the documentation of this file.
1//===--- ELF_hexagon.h - JIT link functions for ELF/hexagon ---*- 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// jit-link functions for ELF/hexagon.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_EXECUTIONENGINE_JITLINK_ELF_HEXAGON_H
14#define LLVM_EXECUTIONENGINE_JITLINK_ELF_HEXAGON_H
15
17
18namespace llvm {
19namespace jitlink {
20
21/// Create a LinkGraph from an ELF/Hexagon 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>> createLinkGraphFromELFObject_hexagon(
27 MemoryBufferRef ObjectBuffer, std::shared_ptr<orc::SymbolStringPool> SSP);
28
29/// jit-link the given object buffer, which must be a ELF Hexagon relocatable
30/// object file.
31void link_ELF_hexagon(std::unique_ptr<LinkGraph> G,
32 std::unique_ptr<JITLinkContext> Ctx);
33
34} // end namespace jitlink
35} // end namespace llvm
36
37#endif // LLVM_EXECUTIONENGINE_JITLINK_ELF_HEXAGON_H
#define G(x, y, z)
Definition MD5.cpp:55
This is an optimization pass for GlobalISel generic memory operations.