Skip to content

Commit 99951a5

Browse files
committed
Revert "[ORC] Introduce EPCGenericRTDyldMemoryManager."
This reverts commit bef55a2 while I investigate failures on some bots. Also reverts "[lli] Add ChildTarget dependence on OrcTargetProcess library." (7a219d8) which was a fallow-up to bef55a2.
1 parent 7a219d8 commit 99951a5

13 files changed

+96
-617
lines changed

llvm/include/llvm/ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.h

-133
This file was deleted.

llvm/include/llvm/ExecutionEngine/Orc/Shared/OrcRTBridge.h

-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ extern const char *MemoryWriteUInt32sWrapperName;
3737
extern const char *MemoryWriteUInt64sWrapperName;
3838
extern const char *MemoryWriteBuffersWrapperName;
3939

40-
extern const char *RegisterEHFrameSectionCustomDirectWrapperName;
41-
extern const char *DeregisterEHFrameSectionCustomDirectWrapperName;
42-
4340
extern const char *RunAsMainWrapperName;
4441

4542
using SPSSimpleExecutorDylibManagerOpenSignature =

llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/RegisterEHFrames.h

-16
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,6 @@ Error deregisterEHFrameSection(const void *EHFrameSectionAddr,
3333
} // end namespace orc
3434
} // end namespace llvm
3535

36-
/// An eh-frame registration utility suitable for use as a support function
37-
/// call. This function expects the direct address and size of the eh-frame
38-
/// section to register as its arguments (it does not treat its arguments as
39-
/// pointers to an SPS-serialized arg buffer).
40-
extern "C" llvm::orc::shared::detail::CWrapperFunctionResult
41-
llvm_orc_registerEHFrameSectionCustomDirectWrapper(
42-
const char *EHFrameSectionAddr, uint64_t Size);
43-
44-
/// An eh-frame deregistration utility suitable for use as a support function
45-
/// call. This function expects the direct address and size of the eh-frame
46-
/// section to register as its arguments (it does not treat its arguments as
47-
/// pointers to an SPS-serialized arg buffer).
48-
extern "C" llvm::orc::shared::detail::CWrapperFunctionResult
49-
llvm_orc_deregisterEHFrameSectionCustomDirectWrapper(
50-
const char *EHFrameSectionAddr, uint64_t Size);
51-
5236
extern "C" llvm::orc::shared::detail::CWrapperFunctionResult
5337
llvm_orc_registerEHFrameSectionWrapper(const char *Data, uint64_t Size);
5438

llvm/lib/ExecutionEngine/Orc/CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ add_llvm_component_library(LLVMOrcJIT
99
EPCEHFrameRegistrar.cpp
1010
EPCGenericDylibManager.cpp
1111
EPCGenericJITLinkMemoryManager.cpp
12-
EPCGenericRTDyldMemoryManager.cpp
1312
EPCIndirectionUtils.cpp
1413
ExecutionUtils.cpp
1514
IndirectionUtils.cpp

0 commit comments

Comments
 (0)