@@ -537,17 +537,7 @@ struct CachedItem
537537 }
538538};
539539
540- // Also see namedintrinsiclist.h
541- enum InterpreterNamedIntrinsics : unsigned short
542- {
543- NI_Illegal = 0 ,
544- NI_System_StubHelpers_GetStubContext,
545- NI_System_Runtime_InteropService_MemoryMarshal_GetArrayDataReference,
546- };
547-
548- InterpreterNamedIntrinsics getNamedIntrinsicID (CEEInfo* info, CORINFO_METHOD_HANDLE methodHnd);
549540
550- const char * getMethodName (CEEInfo* info, CORINFO_METHOD_HANDLE hnd, const char ** className, const char ** namespaceName = NULL , const char **enclosingClassName = NULL );
551541const char * eeGetMethodFullName (CEEInfo* info, CORINFO_METHOD_HANDLE hnd, const char ** clsName = NULL );
552542
553543// The per-InterpMethodInfo cache may map generic instantiation information to the
@@ -924,6 +914,16 @@ class Interpreter
924914
925915 void * GetParamTypeArg () { return m_genericsCtxtArg; }
926916
917+ // Also see namedintrinsiclist.h
918+ enum InterpreterNamedIntrinsics : unsigned short
919+ {
920+ NI_Illegal = 0 ,
921+ NI_System_StubHelpers_GetStubContext,
922+ NI_System_Runtime_InteropService_MemoryMarshal_GetArrayDataReference,
923+ };
924+ static InterpreterNamedIntrinsics getNamedIntrinsicID (CEEInfo* info, CORINFO_METHOD_HANDLE methodHnd);
925+ static const char * getMethodName (CEEInfo* info, CORINFO_METHOD_HANDLE hnd, const char ** className, const char ** namespaceName = NULL , const char **enclosingClassName = NULL );
926+
927927private:
928928 // Architecture-dependent helpers.
929929 inline static unsigned short NumberOfIntegerRegArgs ();
0 commit comments