| 1 | //===---- ELF_aarch32.h - JIT link functions for arm/thumb -----*- 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/aarch32. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #ifndef LLVM_EXECUTIONENGINE_JITLINK_ELF_AARCH32 |
| 14 | #define LLVM_EXECUTIONENGINE_JITLINK_ELF_AARCH32 |
| 15 | |
| 16 | #include "llvm/ExecutionEngine/JITLink/JITLink.h" |
| 17 | #include "llvm/ExecutionEngine/JITLink/aarch32.h" |
| 18 | |
| 19 | namespace llvm { |
| 20 | namespace jitlink { |
| 21 | |
| 22 | /// Create a LinkGraph from an ELF/arm relocatable object |
| 23 | /// |
| 24 | /// Note: The graph does not take ownership of the underlying buffer, nor copy |
| 25 | /// its contents. The caller is responsible for ensuring that the object buffer |
| 26 | /// outlives the graph. |
| 27 | Expected<std::unique_ptr<LinkGraph>> createLinkGraphFromELFObject_aarch32( |
| 28 | MemoryBufferRef ObjectBuffer, std::shared_ptr<orc::SymbolStringPool> SSP); |
| 29 | |
| 30 | /// jit-link the given object buffer, which must be an ELF arm/thumb object |
| 31 | /// file. |
| 32 | void link_ELF_aarch32(std::unique_ptr<LinkGraph> G, |
| 33 | std::unique_ptr<JITLinkContext> Ctx); |
| 34 | |
| 35 | } // end namespace jitlink |
| 36 | } // end namespace llvm |
| 37 | |
| 38 | #endif // LLVM_EXECUTIONENGINE_JITLINK_ELF_AARCH32 |
| 39 | |