64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
| //===------- OrcRemoteTargetRPCAPI.cpp - ORC Remote API utilities ---------===//
 | |
| //
 | |
| //                     The LLVM Compiler Infrastructure
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h"
 | |
| 
 | |
| namespace llvm {
 | |
| namespace orc {
 | |
| namespace remote {
 | |
| 
 | |
| #define PROCNAME(X) \
 | |
|   case X ## Id: \
 | |
|   return #X
 | |
| 
 | |
| const char *OrcRemoteTargetRPCAPI::getJITProcIdName(JITProcId Id) {
 | |
|   switch (Id) {
 | |
|   case InvalidId:
 | |
|     return "*** Invalid JITProcId ***";
 | |
|   PROCNAME(CallIntVoid);
 | |
|   PROCNAME(CallIntVoidResponse);
 | |
|   PROCNAME(CallMain);
 | |
|   PROCNAME(CallMainResponse);
 | |
|   PROCNAME(CallVoidVoid);
 | |
|   PROCNAME(CallVoidVoidResponse);
 | |
|   PROCNAME(CreateRemoteAllocator);
 | |
|   PROCNAME(CreateIndirectStubsOwner);
 | |
|   PROCNAME(DeregisterEHFrames);
 | |
|   PROCNAME(DestroyRemoteAllocator);
 | |
|   PROCNAME(DestroyIndirectStubsOwner);
 | |
|   PROCNAME(EmitIndirectStubs);
 | |
|   PROCNAME(EmitIndirectStubsResponse);
 | |
|   PROCNAME(EmitResolverBlock);
 | |
|   PROCNAME(EmitTrampolineBlock);
 | |
|   PROCNAME(EmitTrampolineBlockResponse);
 | |
|   PROCNAME(GetSymbolAddress);
 | |
|   PROCNAME(GetSymbolAddressResponse);
 | |
|   PROCNAME(GetRemoteInfo);
 | |
|   PROCNAME(GetRemoteInfoResponse);
 | |
|   PROCNAME(ReadMem);
 | |
|   PROCNAME(ReadMemResponse);
 | |
|   PROCNAME(RegisterEHFrames);
 | |
|   PROCNAME(ReserveMem);
 | |
|   PROCNAME(ReserveMemResponse);
 | |
|   PROCNAME(RequestCompile);
 | |
|   PROCNAME(RequestCompileResponse);
 | |
|   PROCNAME(SetProtections);
 | |
|   PROCNAME(TerminateSession);
 | |
|   PROCNAME(WriteMem);
 | |
|   PROCNAME(WritePtr);
 | |
|   };
 | |
|   return nullptr;
 | |
| }
 | |
| 
 | |
| #undef PROCNAME
 | |
| 
 | |
| } // end namespace remote
 | |
| } // end namespace orc
 | |
| } // end namespace llvm
 |