PageRenderTime 56ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/mono/metadata/icall-def.h

https://bitbucket.org/danipen/mono
C Header | 1014 lines | 856 code | 110 blank | 48 comment | 1 complexity | 46ec323aef9c7c619a0e323baafc5203 MD5 | raw file
Possible License(s): Unlicense, Apache-2.0, LGPL-2.0, MPL-2.0-no-copyleft-exception, CC-BY-SA-3.0, GPL-2.0

Large files files are truncated, but you can click here to view the full file

  1. /*
  2. * This file contains the default set of the mono internal calls.
  3. * Each type that has internal call methods must be declared here
  4. * with the ICALL_TYPE macro as follows:
  5. *
  6. * ICALL_TYPE(typeid, typename, first_icall_id)
  7. *
  8. * typeid must be a C symbol name unique to the type, don't worry about namespace
  9. * pollution, since it will be automatically prefixed to avoid it.
  10. * typename is a C string containing the full name of the type
  11. * first_icall_id s the symbol ID of the first internal call of the declared
  12. * type (see below)
  13. *
  14. * The list of internal calls of the methods of a type must follow the
  15. * type declaration. Each internal call is defined by the following macro:
  16. *
  17. * ICALL(icallid, methodname, cfuncptr)
  18. *
  19. * icallid must be a C symbol, unique for each icall defined in this file and
  20. * tipically equal to the typeid + '_' + a sequential number.
  21. * methodname is a C string defining the method name and the optional signature
  22. * (the signature is required only when several internal calls in the type
  23. * have the same name)
  24. * cfuncptr is the C function that implements the internal call. Note that this
  25. * file is included at the end of metadata/icall.c, so the C function must be
  26. * visible to the compiler there.
  27. *
  28. * *** Adding a new internal call ***
  29. * Remember that ICALL_TYPE declarations must be kept sorted wrt each other
  30. * ICALL_TYPE declaration. The same happens for ICALL declarations, but only
  31. * limited to the icall list of each type. The sorting is based on the type or
  32. * method name.
  33. * When adding a new icall, make sure it is inserted correctly in the list and
  34. * that it defines a unique ID. ID are currently numbered and ordered, but if
  35. * you need to insert a method in the middle, don't bother renaming all the symbols.
  36. * Remember to change also the first_icall_id argument in the ICALL_TYPE
  37. * declaration if you add a new icall at the beginning of a type's icall list.
  38. */
  39. ICALL_TYPE(UNORM, "Mono.Globalization.Unicode.Normalization", UNORM_1)
  40. ICALL(UNORM_1, "load_normalization_resource", load_normalization_resource)
  41. #ifndef DISABLE_COM
  42. ICALL_TYPE(COMPROX, "Mono.Interop.ComInteropProxy", COMPROX_1)
  43. ICALL(COMPROX_1, "AddProxy", ves_icall_Mono_Interop_ComInteropProxy_AddProxy)
  44. ICALL(COMPROX_2, "FindProxy", ves_icall_Mono_Interop_ComInteropProxy_FindProxy)
  45. #endif
  46. ICALL_TYPE(RUNTIME, "Mono.Runtime", RUNTIME_1)
  47. ICALL(RUNTIME_1, "GetDisplayName", ves_icall_Mono_Runtime_GetDisplayName)
  48. ICALL(RUNTIME_12, "GetNativeStackTrace", ves_icall_Mono_Runtime_GetNativeStackTrace)
  49. ICALL(RUNTIME_13, "SetGCAllowSynchronousMajor", ves_icall_Mono_Runtime_SetGCAllowSynchronousMajor)
  50. #ifndef PLATFORM_RO_FS
  51. ICALL_TYPE(KPAIR, "Mono.Security.Cryptography.KeyPairPersistence", KPAIR_1)
  52. ICALL(KPAIR_1, "_CanSecure", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_CanSecure)
  53. ICALL(KPAIR_2, "_IsMachineProtected", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_IsMachineProtected)
  54. ICALL(KPAIR_3, "_IsUserProtected", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_IsUserProtected)
  55. ICALL(KPAIR_4, "_ProtectMachine", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectMachine)
  56. ICALL(KPAIR_5, "_ProtectUser", ves_icall_Mono_Security_Cryptography_KeyPairPersistence_ProtectUser)
  57. #endif /* !PLATFORM_RO_FS */
  58. ICALL_TYPE(ACTIV, "System.Activator", ACTIV_1)
  59. ICALL(ACTIV_1, "CreateInstanceInternal", ves_icall_System_Activator_CreateInstanceInternal)
  60. ICALL_TYPE(APPDOM, "System.AppDomain", APPDOM_1)
  61. ICALL(APPDOM_1, "ExecuteAssembly", ves_icall_System_AppDomain_ExecuteAssembly)
  62. ICALL(APPDOM_2, "GetAssemblies", ves_icall_System_AppDomain_GetAssemblies)
  63. ICALL(APPDOM_3, "GetData", ves_icall_System_AppDomain_GetData)
  64. ICALL(APPDOM_4, "InternalGetContext", ves_icall_System_AppDomain_InternalGetContext)
  65. ICALL(APPDOM_5, "InternalGetDefaultContext", ves_icall_System_AppDomain_InternalGetDefaultContext)
  66. ICALL(APPDOM_6, "InternalGetProcessGuid", ves_icall_System_AppDomain_InternalGetProcessGuid)
  67. ICALL(APPDOM_7, "InternalIsFinalizingForUnload", ves_icall_System_AppDomain_InternalIsFinalizingForUnload)
  68. ICALL(APPDOM_8, "InternalPopDomainRef", ves_icall_System_AppDomain_InternalPopDomainRef)
  69. ICALL(APPDOM_9, "InternalPushDomainRef", ves_icall_System_AppDomain_InternalPushDomainRef)
  70. ICALL(APPDOM_10, "InternalPushDomainRefByID", ves_icall_System_AppDomain_InternalPushDomainRefByID)
  71. ICALL(APPDOM_11, "InternalSetContext", ves_icall_System_AppDomain_InternalSetContext)
  72. ICALL(APPDOM_12, "InternalSetDomain", ves_icall_System_AppDomain_InternalSetDomain)
  73. ICALL(APPDOM_13, "InternalSetDomainByID", ves_icall_System_AppDomain_InternalSetDomainByID)
  74. ICALL(APPDOM_14, "InternalUnload", ves_icall_System_AppDomain_InternalUnload)
  75. ICALL(APPDOM_15, "LoadAssembly", ves_icall_System_AppDomain_LoadAssembly)
  76. ICALL(APPDOM_16, "LoadAssemblyRaw", ves_icall_System_AppDomain_LoadAssemblyRaw)
  77. ICALL(APPDOM_17, "SetData", ves_icall_System_AppDomain_SetData)
  78. ICALL(APPDOM_18, "createDomain", ves_icall_System_AppDomain_createDomain)
  79. ICALL(APPDOM_19, "getCurDomain", ves_icall_System_AppDomain_getCurDomain)
  80. ICALL(APPDOM_20, "getFriendlyName", ves_icall_System_AppDomain_getFriendlyName)
  81. ICALL(APPDOM_21, "getRootDomain", ves_icall_System_AppDomain_getRootDomain)
  82. ICALL(APPDOM_22, "getSetup", ves_icall_System_AppDomain_getSetup)
  83. ICALL_TYPE(ARGI, "System.ArgIterator", ARGI_1)
  84. ICALL(ARGI_1, "IntGetNextArg()", mono_ArgIterator_IntGetNextArg)
  85. ICALL(ARGI_2, "IntGetNextArg(intptr)", mono_ArgIterator_IntGetNextArgT)
  86. ICALL(ARGI_3, "IntGetNextArgType", mono_ArgIterator_IntGetNextArgType)
  87. ICALL(ARGI_4, "Setup", mono_ArgIterator_Setup)
  88. ICALL_TYPE(ARRAY, "System.Array", ARRAY_1)
  89. ICALL(ARRAY_1, "ClearInternal", ves_icall_System_Array_ClearInternal)
  90. ICALL(ARRAY_2, "Clone", mono_array_clone)
  91. ICALL(ARRAY_3, "CreateInstanceImpl", ves_icall_System_Array_CreateInstanceImpl)
  92. ICALL(ARRAY_14, "CreateInstanceImpl64", ves_icall_System_Array_CreateInstanceImpl64)
  93. ICALL(ARRAY_4, "FastCopy", ves_icall_System_Array_FastCopy)
  94. ICALL(ARRAY_5, "GetGenericValueImpl", ves_icall_System_Array_GetGenericValueImpl)
  95. ICALL(ARRAY_6, "GetLength", ves_icall_System_Array_GetLength)
  96. ICALL(ARRAY_15, "GetLongLength", ves_icall_System_Array_GetLongLength)
  97. ICALL(ARRAY_7, "GetLowerBound", ves_icall_System_Array_GetLowerBound)
  98. ICALL(ARRAY_8, "GetRank", ves_icall_System_Array_GetRank)
  99. ICALL(ARRAY_9, "GetValue", ves_icall_System_Array_GetValue)
  100. ICALL(ARRAY_10, "GetValueImpl", ves_icall_System_Array_GetValueImpl)
  101. ICALL(ARRAY_11, "SetGenericValueImpl", ves_icall_System_Array_SetGenericValueImpl)
  102. ICALL(ARRAY_12, "SetValue", ves_icall_System_Array_SetValue)
  103. ICALL(ARRAY_13, "SetValueImpl", ves_icall_System_Array_SetValueImpl)
  104. ICALL_TYPE(BUFFER, "System.Buffer", BUFFER_1)
  105. ICALL(BUFFER_1, "BlockCopyInternal", ves_icall_System_Buffer_BlockCopyInternal)
  106. ICALL(BUFFER_2, "ByteLengthInternal", ves_icall_System_Buffer_ByteLengthInternal)
  107. ICALL(BUFFER_3, "GetByteInternal", ves_icall_System_Buffer_GetByteInternal)
  108. ICALL(BUFFER_4, "SetByteInternal", ves_icall_System_Buffer_SetByteInternal)
  109. ICALL_TYPE(CHAR, "System.Char", CHAR_1)
  110. ICALL(CHAR_1, "GetDataTablePointers", ves_icall_System_Char_GetDataTablePointers)
  111. ICALL_TYPE (COMPO_W, "System.ComponentModel.Win32Exception", COMPO_W_1)
  112. ICALL (COMPO_W_1, "W32ErrorMessage", ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage)
  113. ICALL_TYPE(DEFAULTC, "System.Configuration.DefaultConfig", DEFAULTC_1)
  114. ICALL(DEFAULTC_1, "get_bundled_machine_config", get_bundled_machine_config)
  115. ICALL(DEFAULTC_2, "get_machine_config_path", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path)
  116. /* Note that the below icall shares the same function as DefaultConfig uses */
  117. ICALL_TYPE(INTCFGHOST, "System.Configuration.InternalConfigurationHost", INTCFGHOST_1)
  118. ICALL(INTCFGHOST_1, "get_bundled_app_config", get_bundled_app_config)
  119. ICALL(INTCFGHOST_2, "get_bundled_machine_config", get_bundled_machine_config)
  120. ICALL_TYPE(CONSOLE, "System.ConsoleDriver", CONSOLE_1)
  121. ICALL(CONSOLE_1, "InternalKeyAvailable", ves_icall_System_ConsoleDriver_InternalKeyAvailable )
  122. ICALL(CONSOLE_2, "Isatty", ves_icall_System_ConsoleDriver_Isatty )
  123. ICALL(CONSOLE_3, "SetBreak", ves_icall_System_ConsoleDriver_SetBreak )
  124. ICALL(CONSOLE_4, "SetEcho", ves_icall_System_ConsoleDriver_SetEcho )
  125. ICALL(CONSOLE_5, "TtySetup", ves_icall_System_ConsoleDriver_TtySetup )
  126. ICALL_TYPE(CONVERT, "System.Convert", CONVERT_1)
  127. ICALL(CONVERT_1, "InternalFromBase64CharArray", InternalFromBase64CharArray )
  128. ICALL(CONVERT_2, "InternalFromBase64String", InternalFromBase64String )
  129. ICALL_TYPE(TZONE, "System.CurrentSystemTimeZone", TZONE_1)
  130. ICALL(TZONE_1, "GetTimeZoneData", ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData)
  131. ICALL_TYPE(DTIME, "System.DateTime", DTIME_1)
  132. ICALL(DTIME_1, "GetNow", mono_100ns_datetime)
  133. ICALL(DTIME_2, "GetTimeMonotonic", mono_100ns_ticks)
  134. #ifndef DISABLE_DECIMAL
  135. ICALL_TYPE(DECIMAL, "System.Decimal", DECIMAL_1)
  136. ICALL(DECIMAL_1, "decimal2Int64", mono_decimal2Int64)
  137. ICALL(DECIMAL_2, "decimal2UInt64", mono_decimal2UInt64)
  138. ICALL(DECIMAL_3, "decimal2double", mono_decimal2double)
  139. //ICALL(DECIMAL_4, "decimal2string", mono_decimal2string)
  140. ICALL(DECIMAL_5, "decimalCompare", mono_decimalCompare)
  141. ICALL(DECIMAL_6, "decimalDiv", mono_decimalDiv)
  142. ICALL(DECIMAL_7, "decimalFloorAndTrunc", mono_decimalFloorAndTrunc)
  143. ICALL(DECIMAL_8, "decimalIncr", mono_decimalIncr)
  144. ICALL(DECIMAL_9, "decimalIntDiv", mono_decimalIntDiv)
  145. ICALL(DECIMAL_10, "decimalMult", mono_decimalMult)
  146. ICALL(DECIMAL_11, "decimalRound", mono_decimalRound)
  147. ICALL(DECIMAL_12, "decimalSetExponent", mono_decimalSetExponent)
  148. ICALL(DECIMAL_13, "double2decimal", mono_double2decimal) /* FIXME: wrong signature. */
  149. ICALL(DECIMAL_14, "string2decimal", mono_string2decimal)
  150. #endif
  151. ICALL_TYPE(DELEGATE, "System.Delegate", DELEGATE_1)
  152. ICALL(DELEGATE_1, "CreateDelegate_internal", ves_icall_System_Delegate_CreateDelegate_internal)
  153. ICALL(DELEGATE_2, "SetMulticastInvoke", ves_icall_System_Delegate_SetMulticastInvoke)
  154. ICALL_TYPE(DEBUGR, "System.Diagnostics.Debugger", DEBUGR_1)
  155. ICALL(DEBUGR_1, "IsAttached_internal", ves_icall_System_Diagnostics_Debugger_IsAttached_internal)
  156. ICALL(DEBUGR_2, "IsLogging", ves_icall_System_Diagnostics_Debugger_IsLogging)
  157. ICALL(DEBUGR_3, "Log", ves_icall_System_Diagnostics_Debugger_Log)
  158. ICALL_TYPE(TRACEL, "System.Diagnostics.DefaultTraceListener", TRACEL_1)
  159. ICALL(TRACEL_1, "WriteWindowsDebugString", ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString)
  160. ICALL_TYPE(FILEV, "System.Diagnostics.FileVersionInfo", FILEV_1)
  161. ICALL(FILEV_1, "GetVersionInfo_internal(string)", ves_icall_System_Diagnostics_FileVersionInfo_GetVersionInfo_internal)
  162. #ifndef DISABLE_PROCESS_HANDLING
  163. ICALL_TYPE(PERFCTR, "System.Diagnostics.PerformanceCounter", PERFCTR_1)
  164. ICALL(PERFCTR_1, "FreeData", mono_perfcounter_free_data)
  165. ICALL(PERFCTR_2, "GetImpl", mono_perfcounter_get_impl)
  166. ICALL(PERFCTR_3, "GetSample", mono_perfcounter_get_sample)
  167. ICALL(PERFCTR_4, "UpdateValue", mono_perfcounter_update_value)
  168. ICALL_TYPE(PERFCTRCAT, "System.Diagnostics.PerformanceCounterCategory", PERFCTRCAT_1)
  169. ICALL(PERFCTRCAT_1, "CategoryDelete", mono_perfcounter_category_del)
  170. ICALL(PERFCTRCAT_2, "CategoryHelpInternal", mono_perfcounter_category_help)
  171. ICALL(PERFCTRCAT_3, "CounterCategoryExists", mono_perfcounter_category_exists)
  172. ICALL(PERFCTRCAT_4, "Create", mono_perfcounter_create)
  173. ICALL(PERFCTRCAT_5, "GetCategoryNames", mono_perfcounter_category_names)
  174. ICALL(PERFCTRCAT_6, "GetCounterNames", mono_perfcounter_counter_names)
  175. ICALL(PERFCTRCAT_7, "GetInstanceNames", mono_perfcounter_instance_names)
  176. ICALL(PERFCTRCAT_8, "InstanceExistsInternal", mono_perfcounter_instance_exists)
  177. ICALL_TYPE(PROCESS, "System.Diagnostics.Process", PROCESS_1)
  178. ICALL(PROCESS_1, "CreateProcess_internal(System.Diagnostics.ProcessStartInfo,intptr,intptr,intptr,System.Diagnostics.Process/ProcInfo&)", ves_icall_System_Diagnostics_Process_CreateProcess_internal)
  179. ICALL(PROCESS_2, "ExitCode_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitCode_internal)
  180. ICALL(PROCESS_3, "ExitTime_internal(intptr)", ves_icall_System_Diagnostics_Process_ExitTime_internal)
  181. ICALL(PROCESS_4, "GetModules_internal(intptr)", ves_icall_System_Diagnostics_Process_GetModules_internal)
  182. ICALL(PROCESS_5, "GetPid_internal()", ves_icall_System_Diagnostics_Process_GetPid_internal)
  183. ICALL(PROCESS_5B, "GetPriorityClass(intptr,int&)", ves_icall_System_Diagnostics_Process_GetPriorityClass)
  184. ICALL(PROCESS_5H, "GetProcessData", ves_icall_System_Diagnostics_Process_GetProcessData)
  185. ICALL(PROCESS_6, "GetProcess_internal(int)", ves_icall_System_Diagnostics_Process_GetProcess_internal)
  186. ICALL(PROCESS_7, "GetProcesses_internal()", ves_icall_System_Diagnostics_Process_GetProcesses_internal)
  187. ICALL(PROCESS_8, "GetWorkingSet_internal(intptr,int&,int&)", ves_icall_System_Diagnostics_Process_GetWorkingSet_internal)
  188. ICALL(PROCESS_9, "Kill_internal", ves_icall_System_Diagnostics_Process_Kill_internal)
  189. ICALL(PROCESS_10, "ProcessName_internal(intptr)", ves_icall_System_Diagnostics_Process_ProcessName_internal)
  190. ICALL(PROCESS_11, "Process_free_internal(intptr)", ves_icall_System_Diagnostics_Process_Process_free_internal)
  191. ICALL(PROCESS_11B, "SetPriorityClass(intptr,int,int&)", ves_icall_System_Diagnostics_Process_SetPriorityClass)
  192. ICALL(PROCESS_12, "SetWorkingSet_internal(intptr,int,int,bool)", ves_icall_System_Diagnostics_Process_SetWorkingSet_internal)
  193. ICALL(PROCESS_13, "ShellExecuteEx_internal(System.Diagnostics.ProcessStartInfo,System.Diagnostics.Process/ProcInfo&)", ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal)
  194. ICALL(PROCESS_14, "StartTime_internal(intptr)", ves_icall_System_Diagnostics_Process_StartTime_internal)
  195. ICALL(PROCESS_14M, "Times", ves_icall_System_Diagnostics_Process_Times)
  196. ICALL(PROCESS_15, "WaitForExit_internal(intptr,int)", ves_icall_System_Diagnostics_Process_WaitForExit_internal)
  197. ICALL(PROCESS_16, "WaitForInputIdle_internal(intptr,int)", ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal)
  198. ICALL_TYPE (PROCESSHANDLE, "System.Diagnostics.Process/ProcessWaitHandle", PROCESSHANDLE_1)
  199. ICALL (PROCESSHANDLE_1, "ProcessHandle_close(intptr)", ves_icall_System_Diagnostics_Process_ProcessHandle_close)
  200. ICALL (PROCESSHANDLE_2, "ProcessHandle_duplicate(intptr)", ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate)
  201. #endif /* !DISABLE_PROCESS_HANDLING */
  202. ICALL_TYPE(STOPWATCH, "System.Diagnostics.Stopwatch", STOPWATCH_1)
  203. ICALL(STOPWATCH_1, "GetTimestamp", mono_100ns_ticks)
  204. ICALL_TYPE(DOUBLE, "System.Double", DOUBLE_1)
  205. ICALL(DOUBLE_1, "ParseImpl", mono_double_ParseImpl)
  206. ICALL_TYPE(ENUM, "System.Enum", ENUM_1)
  207. ICALL(ENUM_1, "ToObject", ves_icall_System_Enum_ToObject)
  208. ICALL(ENUM_5, "compare_value_to", ves_icall_System_Enum_compare_value_to)
  209. ICALL(ENUM_4, "get_hashcode", ves_icall_System_Enum_get_hashcode)
  210. ICALL(ENUM_3, "get_underlying_type", ves_icall_System_Enum_get_underlying_type)
  211. ICALL(ENUM_2, "get_value", ves_icall_System_Enum_get_value)
  212. ICALL_TYPE(ENV, "System.Environment", ENV_1)
  213. ICALL(ENV_1, "Exit", ves_icall_System_Environment_Exit)
  214. ICALL(ENV_2, "GetCommandLineArgs", mono_runtime_get_main_args)
  215. ICALL(ENV_3, "GetEnvironmentVariableNames", ves_icall_System_Environment_GetEnvironmentVariableNames)
  216. ICALL(ENV_4, "GetLogicalDrivesInternal", ves_icall_System_Environment_GetLogicalDrives )
  217. ICALL(ENV_5, "GetMachineConfigPath", ves_icall_System_Configuration_DefaultConfig_get_machine_config_path)
  218. ICALL(ENV_51, "GetNewLine", ves_icall_System_Environment_get_NewLine)
  219. ICALL(ENV_6, "GetOSVersionString", ves_icall_System_Environment_GetOSVersionString)
  220. ICALL(ENV_6a, "GetPageSize", mono_pagesize)
  221. ICALL(ENV_7, "GetWindowsFolderPath", ves_icall_System_Environment_GetWindowsFolderPath)
  222. ICALL(ENV_8, "InternalSetEnvironmentVariable", ves_icall_System_Environment_InternalSetEnvironmentVariable)
  223. ICALL(ENV_9, "get_ExitCode", mono_environment_exitcode_get)
  224. ICALL(ENV_10, "get_HasShutdownStarted", ves_icall_System_Environment_get_HasShutdownStarted)
  225. ICALL(ENV_11, "get_MachineName", ves_icall_System_Environment_get_MachineName)
  226. ICALL(ENV_13, "get_Platform", ves_icall_System_Environment_get_Platform)
  227. ICALL(ENV_14, "get_ProcessorCount", mono_cpu_count)
  228. ICALL(ENV_15, "get_TickCount", mono_msec_ticks)
  229. ICALL(ENV_16, "get_UserName", ves_icall_System_Environment_get_UserName)
  230. ICALL(ENV_16m, "internalBroadcastSettingChange", ves_icall_System_Environment_BroadcastSettingChange)
  231. ICALL(ENV_17, "internalGetEnvironmentVariable", ves_icall_System_Environment_GetEnvironmentVariable)
  232. ICALL(ENV_18, "internalGetGacPath", ves_icall_System_Environment_GetGacPath)
  233. ICALL(ENV_19, "internalGetHome", ves_icall_System_Environment_InternalGetHome)
  234. ICALL(ENV_20, "set_ExitCode", mono_environment_exitcode_set)
  235. ICALL_TYPE(GC, "System.GC", GC_0)
  236. ICALL(GC_0, "CollectionCount", mono_gc_collection_count)
  237. ICALL(GC_0a, "GetGeneration", mono_gc_get_generation)
  238. ICALL(GC_1, "GetTotalMemory", ves_icall_System_GC_GetTotalMemory)
  239. ICALL(GC_2, "InternalCollect", ves_icall_System_GC_InternalCollect)
  240. ICALL(GC_3, "KeepAlive", ves_icall_System_GC_KeepAlive)
  241. ICALL(GC_4, "ReRegisterForFinalize", ves_icall_System_GC_ReRegisterForFinalize)
  242. ICALL(GC_4a, "RecordPressure", mono_gc_add_memory_pressure)
  243. ICALL(GC_5, "SuppressFinalize", ves_icall_System_GC_SuppressFinalize)
  244. ICALL(GC_6, "WaitForPendingFinalizers", ves_icall_System_GC_WaitForPendingFinalizers)
  245. ICALL(GC_7, "get_MaxGeneration", mono_gc_max_generation)
  246. ICALL(GC_9, "get_ephemeron_tombstone", ves_icall_System_GC_get_ephemeron_tombstone)
  247. ICALL(GC_8, "register_ephemeron_array", ves_icall_System_GC_register_ephemeron_array)
  248. ICALL_TYPE(COMPINF, "System.Globalization.CompareInfo", COMPINF_1)
  249. ICALL(COMPINF_1, "assign_sortkey(object,string,System.Globalization.CompareOptions)", ves_icall_System_Globalization_CompareInfo_assign_sortkey)
  250. ICALL(COMPINF_2, "construct_compareinfo(string)", ves_icall_System_Globalization_CompareInfo_construct_compareinfo)
  251. ICALL(COMPINF_3, "free_internal_collator()", ves_icall_System_Globalization_CompareInfo_free_internal_collator)
  252. ICALL(COMPINF_4, "internal_compare(string,int,int,string,int,int,System.Globalization.CompareOptions)", ves_icall_System_Globalization_CompareInfo_internal_compare)
  253. ICALL(COMPINF_5, "internal_index(string,int,int,char,System.Globalization.CompareOptions,bool)", ves_icall_System_Globalization_CompareInfo_internal_index_char)
  254. ICALL(COMPINF_6, "internal_index(string,int,int,string,System.Globalization.CompareOptions,bool)", ves_icall_System_Globalization_CompareInfo_internal_index)
  255. ICALL_TYPE(CULINF, "System.Globalization.CultureInfo", CULINF_2)
  256. ICALL(CULINF_2, "construct_datetime_format", ves_icall_System_Globalization_CultureInfo_construct_datetime_format)
  257. ICALL(CULINF_4, "construct_internal_locale_from_current_locale", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_current_locale)
  258. ICALL(CULINF_5, "construct_internal_locale_from_lcid", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_lcid)
  259. ICALL(CULINF_6, "construct_internal_locale_from_name", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_name)
  260. ICALL(CULINF_7, "construct_internal_locale_from_specific_name", ves_icall_System_Globalization_CultureInfo_construct_internal_locale_from_specific_name)
  261. ICALL(CULINF_8, "construct_number_format", ves_icall_System_Globalization_CultureInfo_construct_number_format)
  262. ICALL(CULINF_9, "internal_get_cultures", ves_icall_System_Globalization_CultureInfo_internal_get_cultures)
  263. //ICALL(CULINF_10, "internal_is_lcid_neutral", ves_icall_System_Globalization_CultureInfo_internal_is_lcid_neutral)
  264. ICALL_TYPE(REGINF, "System.Globalization.RegionInfo", REGINF_1)
  265. ICALL(REGINF_1, "construct_internal_region_from_lcid", ves_icall_System_Globalization_RegionInfo_construct_internal_region_from_lcid)
  266. ICALL(REGINF_2, "construct_internal_region_from_name", ves_icall_System_Globalization_RegionInfo_construct_internal_region_from_name)
  267. #ifndef PLATFORM_NO_DRIVEINFO
  268. ICALL_TYPE(IODRIVEINFO, "System.IO.DriveInfo", IODRIVEINFO_1)
  269. ICALL(IODRIVEINFO_1, "GetDiskFreeSpaceInternal", ves_icall_System_IO_DriveInfo_GetDiskFreeSpace)
  270. ICALL(IODRIVEINFO_2, "GetDriveFormat", ves_icall_System_IO_DriveInfo_GetDriveFormat)
  271. ICALL(IODRIVEINFO_3, "GetDriveTypeInternal", ves_icall_System_IO_DriveInfo_GetDriveType)
  272. #endif
  273. ICALL_TYPE(FAMW, "System.IO.FAMWatcher", FAMW_1)
  274. ICALL(FAMW_1, "InternalFAMNextEvent", ves_icall_System_IO_FAMW_InternalFAMNextEvent)
  275. ICALL_TYPE(FILEW, "System.IO.FileSystemWatcher", FILEW_4)
  276. ICALL(FILEW_4, "InternalSupportsFSW", ves_icall_System_IO_FSW_SupportsFSW)
  277. ICALL_TYPE(INOW, "System.IO.InotifyWatcher", INOW_1)
  278. ICALL(INOW_1, "AddWatch", ves_icall_System_IO_InotifyWatcher_AddWatch)
  279. ICALL(INOW_2, "GetInotifyInstance", ves_icall_System_IO_InotifyWatcher_GetInotifyInstance)
  280. ICALL(INOW_3, "RemoveWatch", ves_icall_System_IO_InotifyWatcher_RemoveWatch)
  281. #if defined (TARGET_IOS) || defined (TARGET_ANDROID)
  282. ICALL_TYPE(MMAPIMPL, "System.IO.MemoryMappedFiles.MemoryMapImpl", MMAPIMPL_1)
  283. ICALL(MMAPIMPL_1, "mono_filesize_from_fd", mono_filesize_from_fd)
  284. ICALL(MMAPIMPL_2, "mono_filesize_from_path", mono_filesize_from_path)
  285. #endif
  286. ICALL_TYPE(MONOIO, "System.IO.MonoIO", MONOIO_1)
  287. ICALL(MONOIO_1, "Close(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Close)
  288. #ifndef PLATFORM_RO_FS
  289. ICALL(MONOIO_2, "CopyFile(string,string,bool,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_CopyFile)
  290. ICALL(MONOIO_3, "CreateDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_CreateDirectory)
  291. ICALL(MONOIO_4, "CreatePipe(intptr&,intptr&)", ves_icall_System_IO_MonoIO_CreatePipe)
  292. ICALL(MONOIO_5, "DeleteFile(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_DeleteFile)
  293. #endif /* !PLATFORM_RO_FS */
  294. ICALL(MONOIO_34, "DuplicateHandle", ves_icall_System_IO_MonoIO_DuplicateHandle)
  295. ICALL(MONOIO_37, "FindClose", ves_icall_System_IO_MonoIO_FindClose)
  296. ICALL(MONOIO_35, "FindFirst", ves_icall_System_IO_MonoIO_FindFirst)
  297. ICALL(MONOIO_36, "FindNext", ves_icall_System_IO_MonoIO_FindNext)
  298. ICALL(MONOIO_6, "Flush(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Flush)
  299. ICALL(MONOIO_7, "GetCurrentDirectory(System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetCurrentDirectory)
  300. ICALL(MONOIO_8, "GetFileAttributes(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileAttributes)
  301. ICALL(MONOIO_9, "GetFileStat(string,System.IO.MonoIOStat&,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileStat)
  302. ICALL(MONOIO_10, "GetFileSystemEntries", ves_icall_System_IO_MonoIO_GetFileSystemEntries)
  303. ICALL(MONOIO_11, "GetFileType(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetFileType)
  304. ICALL(MONOIO_12, "GetLength(intptr,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_GetLength)
  305. #ifndef PLATFORM_RO_FS
  306. ICALL(MONOIO_13, "GetTempPath(string&)", ves_icall_System_IO_MonoIO_GetTempPath)
  307. ICALL(MONOIO_14, "Lock(intptr,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Lock)
  308. ICALL(MONOIO_15, "MoveFile(string,string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_MoveFile)
  309. #endif /* !PLATFORM_RO_FS */
  310. ICALL(MONOIO_16, "Open(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.IO.FileOptions,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Open)
  311. ICALL(MONOIO_17, "Read(intptr,byte[],int,int,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Read)
  312. #ifndef PLATFORM_RO_FS
  313. ICALL(MONOIO_18, "RemoveDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_RemoveDirectory)
  314. ICALL(MONOIO_18M, "ReplaceFile(string,string,string,bool,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_ReplaceFile)
  315. #endif /* !PLATFORM_RO_FS */
  316. ICALL(MONOIO_19, "Seek(intptr,long,System.IO.SeekOrigin,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Seek)
  317. ICALL(MONOIO_20, "SetCurrentDirectory(string,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetCurrentDirectory)
  318. ICALL(MONOIO_21, "SetFileAttributes(string,System.IO.FileAttributes,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetFileAttributes)
  319. ICALL(MONOIO_22, "SetFileTime(intptr,long,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetFileTime)
  320. ICALL(MONOIO_23, "SetLength(intptr,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_SetLength)
  321. #ifndef PLATFORM_RO_FS
  322. ICALL(MONOIO_24, "Unlock(intptr,long,long,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Unlock)
  323. #endif
  324. ICALL(MONOIO_25, "Write(intptr,byte[],int,int,System.IO.MonoIOError&)", ves_icall_System_IO_MonoIO_Write)
  325. ICALL(MONOIO_26, "get_AltDirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_AltDirectorySeparatorChar)
  326. ICALL(MONOIO_27, "get_ConsoleError", ves_icall_System_IO_MonoIO_get_ConsoleError)
  327. ICALL(MONOIO_28, "get_ConsoleInput", ves_icall_System_IO_MonoIO_get_ConsoleInput)
  328. ICALL(MONOIO_29, "get_ConsoleOutput", ves_icall_System_IO_MonoIO_get_ConsoleOutput)
  329. ICALL(MONOIO_30, "get_DirectorySeparatorChar", ves_icall_System_IO_MonoIO_get_DirectorySeparatorChar)
  330. ICALL(MONOIO_31, "get_InvalidPathChars", ves_icall_System_IO_MonoIO_get_InvalidPathChars)
  331. ICALL(MONOIO_32, "get_PathSeparator", ves_icall_System_IO_MonoIO_get_PathSeparator)
  332. ICALL(MONOIO_33, "get_VolumeSeparatorChar", ves_icall_System_IO_MonoIO_get_VolumeSeparatorChar)
  333. ICALL_TYPE(IOPATH, "System.IO.Path", IOPATH_1)
  334. ICALL(IOPATH_1, "get_temp_path", ves_icall_System_IO_get_temp_path)
  335. ICALL_TYPE(MATH, "System.Math", MATH_1)
  336. ICALL(MATH_1, "Acos", ves_icall_System_Math_Acos)
  337. ICALL(MATH_2, "Asin", ves_icall_System_Math_Asin)
  338. ICALL(MATH_3, "Atan", ves_icall_System_Math_Atan)
  339. ICALL(MATH_4, "Atan2", ves_icall_System_Math_Atan2)
  340. ICALL(MATH_5, "Cos", ves_icall_System_Math_Cos)
  341. ICALL(MATH_6, "Cosh", ves_icall_System_Math_Cosh)
  342. ICALL(MATH_7, "Exp", ves_icall_System_Math_Exp)
  343. ICALL(MATH_8, "Floor", ves_icall_System_Math_Floor)
  344. ICALL(MATH_9, "Log", ves_icall_System_Math_Log)
  345. ICALL(MATH_10, "Log10", ves_icall_System_Math_Log10)
  346. ICALL(MATH_11, "Pow", ves_icall_System_Math_Pow)
  347. ICALL(MATH_12, "Round", ves_icall_System_Math_Round)
  348. ICALL(MATH_13, "Round2", ves_icall_System_Math_Round2)
  349. ICALL(MATH_14, "Sin", ves_icall_System_Math_Sin)
  350. ICALL(MATH_15, "Sinh", ves_icall_System_Math_Sinh)
  351. ICALL(MATH_16, "Sqrt", ves_icall_System_Math_Sqrt)
  352. ICALL(MATH_17, "Tan", ves_icall_System_Math_Tan)
  353. ICALL(MATH_18, "Tanh", ves_icall_System_Math_Tanh)
  354. ICALL_TYPE(MCATTR, "System.MonoCustomAttrs", MCATTR_1)
  355. ICALL(MCATTR_1, "GetCustomAttributesDataInternal", mono_reflection_get_custom_attrs_data)
  356. ICALL(MCATTR_2, "GetCustomAttributesInternal", custom_attrs_get_by_type)
  357. ICALL(MCATTR_3, "IsDefinedInternal", custom_attrs_defined_internal)
  358. ICALL_TYPE(MENUM, "System.MonoEnumInfo", MENUM_1)
  359. ICALL(MENUM_1, "get_enum_info", ves_icall_get_enum_info)
  360. ICALL_TYPE(MTYPE, "System.MonoType", MTYPE_1)
  361. ICALL(MTYPE_1, "GetArrayRank", ves_icall_MonoType_GetArrayRank)
  362. ICALL(MTYPE_2, "GetConstructors", ves_icall_Type_GetConstructors_internal)
  363. ICALL(MTYPE_3, "GetConstructors_internal", ves_icall_Type_GetConstructors_internal)
  364. ICALL(MTYPE_4, "GetCorrespondingInflatedConstructor", ves_icall_MonoType_GetCorrespondingInflatedMethod)
  365. ICALL(MTYPE_5, "GetCorrespondingInflatedMethod", ves_icall_MonoType_GetCorrespondingInflatedMethod)
  366. ICALL(MTYPE_6, "GetElementType", ves_icall_MonoType_GetElementType)
  367. ICALL(MTYPE_7, "GetEvents_internal", ves_icall_Type_GetEvents_internal)
  368. ICALL(MTYPE_8, "GetField", ves_icall_Type_GetField)
  369. ICALL(MTYPE_9, "GetFields_internal", ves_icall_Type_GetFields_internal)
  370. ICALL(MTYPE_10, "GetGenericArguments", ves_icall_MonoType_GetGenericArguments)
  371. ICALL(MTYPE_11, "GetInterfaces", ves_icall_Type_GetInterfaces)
  372. ICALL(MTYPE_12, "GetMethodsByName", ves_icall_Type_GetMethodsByName)
  373. ICALL(MTYPE_13, "GetNestedType", ves_icall_Type_GetNestedType)
  374. ICALL(MTYPE_14, "GetNestedTypes", ves_icall_Type_GetNestedTypes)
  375. ICALL(MTYPE_15, "GetPropertiesByName", ves_icall_Type_GetPropertiesByName)
  376. ICALL(MTYPE_16, "InternalGetEvent", ves_icall_MonoType_GetEvent)
  377. ICALL(MTYPE_17, "IsByRefImpl", ves_icall_type_isbyref)
  378. ICALL(MTYPE_18, "IsCOMObjectImpl", ves_icall_type_iscomobject)
  379. ICALL(MTYPE_19, "IsPointerImpl", ves_icall_type_ispointer)
  380. ICALL(MTYPE_20, "IsPrimitiveImpl", ves_icall_type_isprimitive)
  381. ICALL(MTYPE_21, "getFullName", ves_icall_System_MonoType_getFullName)
  382. ICALL(MTYPE_22, "get_Assembly", ves_icall_MonoType_get_Assembly)
  383. ICALL(MTYPE_23, "get_BaseType", ves_icall_get_type_parent)
  384. ICALL(MTYPE_24, "get_DeclaringMethod", ves_icall_MonoType_get_DeclaringMethod)
  385. ICALL(MTYPE_25, "get_DeclaringType", ves_icall_MonoType_get_DeclaringType)
  386. ICALL(MTYPE_26, "get_IsGenericParameter", ves_icall_MonoType_get_IsGenericParameter)
  387. ICALL(MTYPE_27, "get_Module", ves_icall_MonoType_get_Module)
  388. ICALL(MTYPE_28, "get_Name", ves_icall_MonoType_get_Name)
  389. ICALL(MTYPE_29, "get_Namespace", ves_icall_MonoType_get_Namespace)
  390. ICALL(MTYPE_31, "get_attributes", ves_icall_get_attributes)
  391. ICALL(MTYPE_33, "get_core_clr_security_level", vell_icall_MonoType_get_core_clr_security_level)
  392. ICALL(MTYPE_32, "type_from_obj", mono_type_type_from_obj)
  393. #ifndef DISABLE_SOCKETS
  394. ICALL_TYPE(NDNS, "System.Net.Dns", NDNS_1)
  395. ICALL(NDNS_1, "GetHostByAddr_internal(string,string&,string[]&,string[]&)", ves_icall_System_Net_Dns_GetHostByAddr_internal)
  396. ICALL(NDNS_2, "GetHostByName_internal(string,string&,string[]&,string[]&)", ves_icall_System_Net_Dns_GetHostByName_internal)
  397. ICALL(NDNS_3, "GetHostName_internal(string&)", ves_icall_System_Net_Dns_GetHostName_internal)
  398. ICALL_TYPE(SOCK, "System.Net.Sockets.Socket", SOCK_1)
  399. ICALL(SOCK_1, "Accept_internal(intptr,int&,bool)", ves_icall_System_Net_Sockets_Socket_Accept_internal)
  400. ICALL(SOCK_2, "Available_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_Available_internal)
  401. ICALL(SOCK_3, "Bind_internal(intptr,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_Bind_internal)
  402. ICALL(SOCK_4, "Blocking_internal(intptr,bool,int&)", ves_icall_System_Net_Sockets_Socket_Blocking_internal)
  403. ICALL(SOCK_5, "Close_internal(intptr,int&)", ves_icall_System_Net_Sockets_Socket_Close_internal)
  404. ICALL(SOCK_6, "Connect_internal(intptr,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_Connect_internal)
  405. ICALL (SOCK_6a, "Disconnect_internal(intptr,bool,int&)", ves_icall_System_Net_Sockets_Socket_Disconnect_internal)
  406. ICALL(SOCK_7, "GetSocketOption_arr_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,byte[]&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_arr_internal)
  407. ICALL(SOCK_8, "GetSocketOption_obj_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object&,int&)", ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal)
  408. ICALL(SOCK_9, "Listen_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_Listen_internal)
  409. ICALL(SOCK_10, "LocalEndPoint_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_LocalEndPoint_internal)
  410. ICALL(SOCK_11, "Poll_internal", ves_icall_System_Net_Sockets_Socket_Poll_internal)
  411. ICALL(SOCK_11a, "Receive_internal(intptr,System.Net.Sockets.Socket/WSABUF[],System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Receive_array_internal)
  412. ICALL(SOCK_12, "Receive_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Receive_internal)
  413. ICALL(SOCK_13, "RecvFrom_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress&,int&)", ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
  414. ICALL(SOCK_14, "RemoteEndPoint_internal(intptr,int,int&)", ves_icall_System_Net_Sockets_Socket_RemoteEndPoint_internal)
  415. ICALL(SOCK_15, "Select_internal(System.Net.Sockets.Socket[]&,int,int&)", ves_icall_System_Net_Sockets_Socket_Select_internal)
  416. ICALL(SOCK_15a, "SendFile(intptr,string,byte[],byte[],System.Net.Sockets.TransmitFileOptions)", ves_icall_System_Net_Sockets_Socket_SendFile)
  417. ICALL(SOCK_16, "SendTo_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,System.Net.SocketAddress,int&)", ves_icall_System_Net_Sockets_Socket_SendTo_internal)
  418. ICALL(SOCK_16a, "Send_internal(intptr,System.Net.Sockets.Socket/WSABUF[],System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Send_array_internal)
  419. ICALL(SOCK_17, "Send_internal(intptr,byte[],int,int,System.Net.Sockets.SocketFlags,int&)", ves_icall_System_Net_Sockets_Socket_Send_internal)
  420. ICALL(SOCK_18, "SetSocketOption_internal(intptr,System.Net.Sockets.SocketOptionLevel,System.Net.Sockets.SocketOptionName,object,byte[],int,int&)", ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal)
  421. ICALL(SOCK_19, "Shutdown_internal(intptr,System.Net.Sockets.SocketShutdown,int&)", ves_icall_System_Net_Sockets_Socket_Shutdown_internal)
  422. ICALL(SOCK_20, "Socket_internal(System.Net.Sockets.AddressFamily,System.Net.Sockets.SocketType,System.Net.Sockets.ProtocolType,int&)", ves_icall_System_Net_Sockets_Socket_Socket_internal)
  423. ICALL(SOCK_21, "WSAIoctl(intptr,int,byte[],byte[],int&)", ves_icall_System_Net_Sockets_Socket_WSAIoctl)
  424. ICALL(SOCK_21a, "cancel_blocking_socket_operation", icall_cancel_blocking_socket_operation)
  425. ICALL(SOCK_22, "socket_pool_queue", icall_append_io_job)
  426. ICALL_TYPE(SOCKEX, "System.Net.Sockets.SocketException", SOCKEX_1)
  427. ICALL(SOCKEX_1, "WSAGetLastError_internal", ves_icall_System_Net_Sockets_SocketException_WSAGetLastError_internal)
  428. #endif /* !DISABLE_SOCKETS */
  429. ICALL_TYPE(NUMBER_FORMATTER, "System.NumberFormatter", NUMBER_FORMATTER_1)
  430. ICALL(NUMBER_FORMATTER_1, "GetFormatterTables", ves_icall_System_NumberFormatter_GetFormatterTables)
  431. ICALL_TYPE(OBJ, "System.Object", OBJ_1)
  432. ICALL(OBJ_1, "GetType", ves_icall_System_Object_GetType)
  433. ICALL(OBJ_2, "InternalGetHashCode", mono_object_hash)
  434. ICALL(OBJ_3, "MemberwiseClone", ves_icall_System_Object_MemberwiseClone)
  435. ICALL(OBJ_4, "obj_address", ves_icall_System_Object_obj_address)
  436. ICALL_TYPE(ASSEM, "System.Reflection.Assembly", ASSEM_1)
  437. ICALL(ASSEM_1, "FillName", ves_icall_System_Reflection_Assembly_FillName)
  438. ICALL(ASSEM_2, "GetCallingAssembly", ves_icall_System_Reflection_Assembly_GetCallingAssembly)
  439. ICALL(ASSEM_3, "GetEntryAssembly", ves_icall_System_Reflection_Assembly_GetEntryAssembly)
  440. ICALL(ASSEM_4, "GetExecutingAssembly", ves_icall_System_Reflection_Assembly_GetExecutingAssembly)
  441. ICALL(ASSEM_5, "GetFilesInternal", ves_icall_System_Reflection_Assembly_GetFilesInternal)
  442. ICALL(ASSEM_6, "GetManifestModuleInternal", ves_icall_System_Reflection_Assembly_GetManifestModuleInternal)
  443. ICALL(ASSEM_7, "GetManifestResourceInfoInternal", ves_icall_System_Reflection_Assembly_GetManifestResourceInfoInternal)
  444. ICALL(ASSEM_8, "GetManifestResourceInternal", ves_icall_System_Reflection_Assembly_GetManifestResourceInternal)
  445. ICALL(ASSEM_9, "GetManifestResourceNames", ves_icall_System_Reflection_Assembly_GetManifestResourceNames)
  446. ICALL(ASSEM_10, "GetModulesInternal", ves_icall_System_Reflection_Assembly_GetModulesInternal)
  447. //ICALL(ASSEM_11, "GetNamespaces", ves_icall_System_Reflection_Assembly_GetNamespaces)
  448. ICALL(ASSEM_12, "GetReferencedAssemblies", ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
  449. ICALL(ASSEM_13, "GetTypes", ves_icall_System_Reflection_Assembly_GetTypes)
  450. ICALL(ASSEM_14, "InternalGetAssemblyName", ves_icall_System_Reflection_Assembly_InternalGetAssemblyName)
  451. ICALL(ASSEM_15, "InternalGetType", ves_icall_System_Reflection_Assembly_InternalGetType)
  452. ICALL(ASSEM_16, "InternalImageRuntimeVersion", ves_icall_System_Reflection_Assembly_InternalImageRuntimeVersion)
  453. ICALL(ASSEM_17, "LoadFrom", ves_icall_System_Reflection_Assembly_LoadFrom)
  454. ICALL(ASSEM_18, "LoadPermissions", ves_icall_System_Reflection_Assembly_LoadPermissions)
  455. /*
  456. * Private icalls for the Mono Debugger
  457. */
  458. ICALL(ASSEM_19, "MonoDebugger_GetMethodToken", ves_icall_MonoDebugger_GetMethodToken)
  459. /* normal icalls again */
  460. ICALL(ASSEM_20, "get_EntryPoint", ves_icall_System_Reflection_Assembly_get_EntryPoint)
  461. ICALL(ASSEM_21, "get_ReflectionOnly", ves_icall_System_Reflection_Assembly_get_ReflectionOnly)
  462. ICALL(ASSEM_22, "get_code_base", ves_icall_System_Reflection_Assembly_get_code_base)
  463. ICALL(ASSEM_23, "get_fullname", ves_icall_System_Reflection_Assembly_get_fullName)
  464. ICALL(ASSEM_24, "get_global_assembly_cache", ves_icall_System_Reflection_Assembly_get_global_assembly_cache)
  465. ICALL(ASSEM_25, "get_location", ves_icall_System_Reflection_Assembly_get_location)
  466. ICALL(ASSEM_26, "load_with_partial_name", ves_icall_System_Reflection_Assembly_load_with_partial_name)
  467. ICALL_TYPE(ASSEMN, "System.Reflection.AssemblyName", ASSEMN_1)
  468. ICALL(ASSEMN_1, "ParseName", ves_icall_System_Reflection_AssemblyName_ParseName)
  469. ICALL(ASSEMN_2, "get_public_token", mono_digest_get_public_token)
  470. ICALL_TYPE(CATTR_DATA, "System.Reflection.CustomAttributeData", CATTR_DATA_1)
  471. ICALL(CATTR_DATA_1, "ResolveArgumentsInternal", mono_reflection_resolve_custom_attribute_data)
  472. ICALL_TYPE(ASSEMB, "System.Reflection.Emit.AssemblyBuilder", ASSEMB_1)
  473. ICALL(ASSEMB_1, "InternalAddModule", mono_image_load_module_dynamic)
  474. ICALL(ASSEMB_2, "basic_init", mono_image_basic_init)
  475. ICALL_TYPE(CATTRB, "System.Reflection.Emit.CustomAttributeBuilder", CATTRB_1)
  476. ICALL(CATTRB_1, "GetBlob", mono_reflection_get_custom_attrs_blob)
  477. #ifndef DISABLE_REFLECTION_EMIT
  478. ICALL_TYPE(DERIVEDTYPE, "System.Reflection.Emit.DerivedType", DERIVEDTYPE_1)
  479. ICALL(DERIVEDTYPE_1, "create_unmanaged_type", mono_reflection_create_unmanaged_type)
  480. #endif
  481. ICALL_TYPE(DYNM, "System.Reflection.Emit.DynamicMethod", DYNM_1)
  482. ICALL(DYNM_1, "create_dynamic_method", mono_reflection_create_dynamic_method)
  483. ICALL_TYPE(ENUMB, "System.Reflection.Emit.EnumBuilder", ENUMB_1)
  484. ICALL(ENUMB_1, "setup_enum_type", ves_icall_EnumBuilder_setup_enum_type)
  485. ICALL_TYPE(GPARB, "System.Reflection.Emit.GenericTypeParameterBuilder", GPARB_1)
  486. ICALL(GPARB_1, "initialize", mono_reflection_initialize_generic_parameter)
  487. ICALL_TYPE(METHODB, "System.Reflection.Emit.MethodBuilder", METHODB_1)
  488. ICALL(METHODB_1, "MakeGenericMethod", mono_reflection_bind_generic_method_parameters)
  489. ICALL_TYPE(MODULEB, "System.Reflection.Emit.ModuleBuilder", MODULEB_8)
  490. ICALL(MODULEB_8, "RegisterToken", ves_icall_ModuleBuilder_RegisterToken)
  491. ICALL(MODULEB_1, "WriteToFile", ves_icall_ModuleBuilder_WriteToFile)
  492. ICALL(MODULEB_2, "basic_init", mono_image_module_basic_init)
  493. ICALL(MODULEB_3, "build_metadata", ves_icall_ModuleBuilder_build_metadata)
  494. ICALL(MODULEB_4, "create_modified_type", ves_icall_ModuleBuilder_create_modified_type)
  495. ICALL(MODULEB_5, "getMethodToken", ves_icall_ModuleBuilder_getMethodToken)
  496. ICALL(MODULEB_6, "getToken", ves_icall_ModuleBuilder_getToken)
  497. ICALL(MODULEB_7, "getUSIndex", mono_image_insert_string)
  498. ICALL(MODULEB_9, "set_wrappers_type", mono_image_set_wrappers_type)
  499. ICALL_TYPE(SIGH, "System.Reflection.Emit.SignatureHelper", SIGH_1)
  500. ICALL(SIGH_1, "get_signature_field", mono_reflection_sighelper_get_signature_field)
  501. ICALL(SIGH_2, "get_signature_local", mono_reflection_sighelper_get_signature_local)
  502. ICALL_TYPE(TYPEB, "System.Reflection.Emit.TypeBuilder", TYPEB_1)
  503. ICALL(TYPEB_1, "create_generic_class", mono_reflection_create_generic_class)
  504. ICALL(TYPEB_2, "create_internal_class", mono_reflection_create_internal_class)
  505. ICALL(TYPEB_3, "create_runtime_class", mono_reflection_create_runtime_class)
  506. ICALL(TYPEB_4, "get_IsGenericParameter", ves_icall_TypeBuilder_get_IsGenericParameter)
  507. ICALL(TYPEB_5, "get_event_info", mono_reflection_event_builder_get_event_info)
  508. ICALL(TYPEB_6, "setup_generic_class", mono_reflection_setup_generic_class)
  509. ICALL(TYPEB_7, "setup_internal_class", mono_reflection_setup_internal_class)
  510. ICALL_TYPE(FIELDI, "System.Reflection.FieldInfo", FILEDI_1)
  511. ICALL(FILEDI_1, "GetTypeModifiers", ves_icall_System_Reflection_FieldInfo_GetTypeModifiers)
  512. ICALL(FILEDI_2, "get_marshal_info", ves_icall_System_Reflection_FieldInfo_get_marshal_info)
  513. ICALL(FILEDI_3, "internal_from_handle_type", ves_icall_System_Reflection_FieldInfo_internal_from_handle_type)
  514. ICALL_TYPE(MEMBERI, "System.Reflection.MemberInfo", MEMBERI_1)
  515. ICALL(MEMBERI_1, "get_MetadataToken", mono_reflection_get_token)
  516. ICALL_TYPE(MBASE, "System.Reflection.MethodBase", MBASE_1)
  517. ICALL(MBASE_1, "GetCurrentMethod", ves_icall_GetCurrentMethod)
  518. ICALL(MBASE_2, "GetMethodBodyInternal", ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal)
  519. ICALL(MBASE_3, "GetMethodFromHandleInternal", ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternal)
  520. ICALL(MBASE_4, "GetMethodFromHandleInternalType", ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType)
  521. ICALL_TYPE(MODULE, "System.Reflection.Module", MODULE_1)
  522. ICALL(MODULE_1, "Close", ves_icall_System_Reflection_Module_Close)
  523. ICALL(MODULE_2, "GetGlobalType", ves_icall_System_Reflection_Module_GetGlobalType)
  524. ICALL(MODULE_3, "GetGuidInternal", ves_icall_System_Reflection_Module_GetGuidInternal)
  525. ICALL(MODULE_14, "GetHINSTANCE", ves_icall_System_Reflection_Module_GetHINSTANCE)
  526. ICALL(MODULE_4, "GetMDStreamVersion", ves_icall_System_Reflection_Module_GetMDStreamVersion)
  527. ICALL(MODULE_5, "GetPEKind", ves_icall_System_Reflection_Module_GetPEKind)
  528. ICALL(MODULE_6, "InternalGetTypes", ves_icall_System_Reflection_Module_InternalGetTypes)
  529. ICALL(MODULE_7, "ResolveFieldToken", ves_icall_System_Reflection_Module_ResolveFieldToken)
  530. ICALL(MODULE_8, "ResolveMemberToken", ves_icall_System_Reflection_Module_ResolveMemberToken)
  531. ICALL(MODULE_9, "ResolveMethodToken", ves_icall_System_Reflection_Module_ResolveMethodToken)
  532. ICALL(MODULE_10, "ResolveSignature", ves_icall_System_Reflection_Module_ResolveSignature)
  533. ICALL(MODULE_11, "ResolveStringToken", ves_icall_System_Reflection_Module_ResolveStringToken)
  534. ICALL(MODULE_12, "ResolveTypeToken", ves_icall_System_Reflection_Module_ResolveTypeToken)
  535. ICALL(MODULE_13, "get_MetadataToken", mono_reflection_get_token)
  536. ICALL_TYPE(MCMETH, "System.Reflection.MonoCMethod", MCMETH_1)
  537. ICALL(MCMETH_1, "GetGenericMethodDefinition_impl", ves_icall_MonoMethod_GetGenericMethodDefinition)
  538. ICALL(MCMETH_2, "InternalInvoke", ves_icall_InternalInvoke)
  539. ICALL_TYPE(MEVIN, "System.Reflection.MonoEventInfo", MEVIN_1)
  540. ICALL(MEVIN_1, "get_event_info", ves_icall_get_event_info)
  541. ICALL_TYPE(MFIELD, "System.Reflection.MonoField", MFIELD_1)
  542. ICALL(MFIELD_1, "GetFieldOffset", ves_icall_MonoField_GetFieldOffset)
  543. ICALL(MFIELD_2, "GetParentType", ves_icall_MonoField_GetParentType)
  544. ICALL(MFIELD_5, "GetRawConstantValue", ves_icall_MonoField_GetRawConstantValue)
  545. ICALL(MFIELD_3, "GetValueInternal", ves_icall_MonoField_GetValueInternal)
  546. ICALL(MFIELD_6, "ResolveType", ves_icall_MonoField_ResolveType)
  547. ICALL(MFIELD_4, "SetValueInternal", ves_icall_MonoField_SetValueInternal)
  548. ICALL_TYPE(MGENCM, "System.Reflection.MonoGenericCMethod", MGENCM_1)
  549. ICALL(MGENCM_1, "get_ReflectedType", ves_icall_MonoGenericMethod_get_ReflectedType)
  550. ICALL_TYPE(MGENCL, "System.Reflection.MonoGenericClass", MGENCL_5)
  551. ICALL(MGENCL_5, "initialize", mono_reflection_generic_class_initialize)
  552. ICALL(MGENCL_6, "register_with_runtime", mono_reflection_register_with_runtime)
  553. /* note this is the same as above: unify */
  554. ICALL_TYPE(MGENM, "System.Reflection.MonoGenericMethod", MGENM_1)
  555. ICALL(MGENM_1, "get_ReflectedType", ves_icall_MonoGenericMethod_get_ReflectedType)
  556. ICALL_TYPE(MMETH, "System.Reflection.MonoMethod", MMETH_1)
  557. ICALL(MMETH_1, "GetDllImportAttribute", ves_icall_MonoMethod_GetDllImportAttribute)
  558. ICALL(MMETH_2, "GetGenericArguments", ves_icall_MonoMethod_GetGenericArguments)
  559. ICALL(MMETH_3, "GetGenericMethodDefinition_impl", ves_icall_MonoMethod_GetGenericMethodDefinition)
  560. ICALL(MMETH_4, "InternalInvoke", ves_icall_InternalInvoke)
  561. ICALL(MMETH_5, "MakeGenericMethod_impl", mono_reflection_bind_generic_method_parameters)
  562. ICALL(MMETH_6, "get_IsGenericMethod", ves_icall_MonoMethod_get_IsGenericMethod)
  563. ICALL(MMETH_7, "get_IsGenericMethodDefinition", ves_icall_MonoMethod_get_IsGenericMethodDefinition)
  564. ICALL(MMETH_8, "get_base_method", ves_icall_MonoMethod_get_base_method)
  565. ICALL(MMETH_9, "get_name", ves_icall_MonoMethod_get_name)
  566. ICALL_TYPE(MMETHI, "System.Reflection.MonoMethodInfo", MMETHI_4)
  567. ICALL(MMETHI_4, "get_method_attributes", vell_icall_get_method_attributes)
  568. ICALL(MMETHI_1, "get_method_info", ves_icall_get_method_info)
  569. ICALL(MMETHI_2, "get_parameter_info", ves_icall_get_parameter_info)
  570. ICALL(MMETHI_3, "get_retval_marshal", ves_icall_System_MonoMethodInfo_get_retval_marshal)
  571. ICALL_TYPE(MPROPI, "System.Reflection.MonoPropertyInfo", MPROPI_1)
  572. ICALL(MPROPI_1, "GetTypeModifiers", property_info_get_type_modifiers)
  573. ICALL(MPROPI_3, "get_default_value", property_info_get_default_value)
  574. ICALL(MPROPI_2, "get_property_info", ves_icall_get_property_info)
  575. ICALL_TYPE(PARAMI, "System.Reflection.ParameterInfo", PARAMI_1)
  576. ICALL(PARAMI_1, "GetMetadataToken", mono_reflection_get_token)
  577. ICALL(PARAMI_2, "GetTypeModifiers", param_info_get_type_modifiers)
  578. ICALL_TYPE(RUNH, "System.Runtime.CompilerServices.RuntimeHelpers", RUNH_1)
  579. ICALL(RUNH_1, "GetObjectValue", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetObjectValue)
  580. /* REMOVEME: no longer needed, just so we dont break things when not needed */
  581. ICALL(RUNH_2, "GetOffsetToStringData", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetOffsetToStringData)
  582. ICALL(RUNH_3, "InitializeArray", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray)
  583. ICALL(RUNH_4, "RunClassConstructor", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor)
  584. ICALL(RUNH_5, "RunModuleConstructor", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor)
  585. ICALL(RUNH_5h, "SufficientExecutionStack", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_SufficientExecutionStack)
  586. ICALL(RUNH_6, "get_OffsetToStringData", ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_GetOffsetToStringData)
  587. ICALL_TYPE(GCH, "System.Runtime.InteropServices.GCHandle", GCH_1)
  588. ICALL(GCH_1, "CheckCurrentDomain", GCHandle_CheckCurrentDomain)
  589. ICALL(GCH_2, "FreeHandle", ves_icall_System_GCHandle_FreeHandle)
  590. ICALL(GCH_3, "GetAddrOfPinnedObject", ves_icall_System_GCHandle_GetAddrOfPinnedObject)
  591. ICALL(GCH_4, "GetTarget", ves_icall_System_GCHandle_GetTarget)
  592. ICALL(GCH_5, "GetTargetHandle", ves_icall_System_GCHandle_GetTargetHandle)
  593. #ifndef DISABLE_COM
  594. ICALL_TYPE(MARSHAL, "System.Runtime.InteropServices.Marshal", MARSHAL_1)
  595. ICALL(MARSHAL_1, "AddRefInternal", ves_icall_System_Runtime_InteropServices_Marshal_AddRefInternal)
  596. #else
  597. ICALL_TYPE(MARSHAL, "System.Runtime.InteropServices.Marshal", MARSHAL_2)
  598. #endif
  599. ICALL(MARSHAL_2, "AllocCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem)
  600. ICALL(MARSHAL_3, "AllocHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal)
  601. ICALL(MARSHAL_4, "DestroyStructure", ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure)
  602. ICALL(MARSHAL_5, "FreeBSTR", ves_icall_System_Runtime_InteropServices_Marshal_FreeBSTR)
  603. ICALL(MARSHAL_6, "FreeCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem)
  604. ICALL(MARSHAL_7, "FreeHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal)
  605. #ifndef DISABLE_COM
  606. ICALL(MARSHAL_44, "GetCCW", ves_icall_System_Runtime_InteropServices_Marshal_GetCCW)
  607. ICALL(MARSHAL_8, "GetComSlotForMethodInfoInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetComSlotForMethodInfoInternal)
  608. #endif
  609. ICALL(MARSHAL_9, "GetDelegateForFunctionPointerInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetDelegateForFunctionPointerInternal)
  610. ICALL(MARSHAL_10, "GetFunctionPointerForDelegateInternal", mono_delegate_to_ftnptr)
  611. #ifndef DISABLE_COM
  612. ICALL(MARSHAL_45, "GetIDispatchForObjectInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetIDispatchForObjectInternal)
  613. ICALL(MARSHAL_46, "GetIUnknownForObjectInternal", ves_icall_System_Runtime_InteropServices_Marshal_GetIUnknownForObjectInternal)
  614. #endif
  615. ICALL(MARSHAL_11, "GetLastWin32Error", ves_icall_System_Runtime_InteropServices_Marshal_GetLastWin32Error)
  616. #ifndef DISABLE_COM
  617. ICALL(MARSHAL_47, "GetObjectForCCW", ves_icall_System_Runtime_InteropServices_Marshal_GetObjectForCCW)
  618. ICALL(MARSHAL_48, "IsComObject", ves_icall_System_Runtime_InteropServices_Marshal_IsComObject)
  619. #endif
  620. ICALL(MARSHAL_12, "OffsetOf", ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf)
  621. ICALL(MARSHAL_13, "Prelink", ves_icall_System_Runtime_InteropServices_Marshal_Prelink)
  622. ICALL(MARSHAL_14, "PrelinkAll", ves_icall_System_Runtime_InteropServices_Marshal_PrelinkAll)
  623. ICALL(MARSHAL_15, "PtrToStringAnsi(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi)
  624. ICALL(MARSHAL_16, "PtrToStringAnsi(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len)
  625. #ifndef DISABLE_COM
  626. ICALL(MARSHAL_17, "PtrToStringBSTR", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringBSTR)
  627. #endif
  628. ICALL(MARSHAL_18, "PtrToStringUni(intptr)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni)
  629. ICALL(MARSHAL_19, "PtrToStringUni(intptr,int)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni_len)
  630. ICALL(MARSHAL_20, "PtrToStructure(intptr,System.Type)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type)
  631. ICALL(MARSHAL_21, "PtrToStructure(intptr,object)", ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure)
  632. #ifndef DISABLE_COM
  633. ICALL(MARSHAL_22, "QueryInterfaceInternal", ves_icall_System_Runtime_InteropServices_Marshal_QueryInterfaceInternal)
  634. #endif
  635. ICALL(MARSHAL_43, "ReAllocCoTaskMem", ves_icall_System_Runtime_InteropServices_Marshal_ReAllocCoTaskMem)
  636. ICALL(MARSHAL_23, "ReAllocHGlobal", ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal)
  637. ICALL(MARSHAL_24, "ReadByte", ves_icall_System_Runtime_InteropServices_Marshal_ReadByte)
  638. ICALL(MARSHAL_25, "ReadInt16", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt16)
  639. ICALL(MARSHAL_26, "ReadInt32", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt32)
  640. ICALL(MARSHAL_27, "ReadInt64", ves_icall_System_Runtime_InteropServices_Marshal_ReadInt64)
  641. ICALL(MARSHAL_28, "ReadIntPtr", ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr)
  642. #ifndef DISABLE_COM
  643. I

Large files files are truncated, but you can click here to view the full file